body, html {
    height: 100%;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #0a0a2a 0%, #1a1a4a 100%);
    color: white;
    overflow: hidden;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40px 70px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 50px 160px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 90px 40px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 130px 80px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 160px 120px, #ffffff, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: twinkle 5s infinite;
}

.planets {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.planet {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.planet-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 30% 30%, #4a90e2, #1a1a4a);
    top: -100px;
    right: -100px;
    animation: float 15s ease-in-out infinite;
}

.planet-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 30% 30%, #e24a4a, #4a1a1a);
    bottom: -50px;
    left: -50px;
    animation: float 20s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

@keyframes twinkle {
    0% { opacity: 0.7; }
    50% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.meteor {
    position: absolute;
    width: 300px;
    height: 2px;
    transform: rotate(45deg);
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
    animation: meteor 5s linear infinite;
}

.meteor-1 {
    top: 10%;
    left: 80%;
}

.meteor-2 {
    top: 40%;
    left: 60%;
    animation-delay: 2s;
}

.meteor-3 {
    top: 70%;
    left: 90%;
    animation-delay: 4s;
}

@keyframes meteor {
    0% {
        opacity: 1;
        transform: rotate(45deg) translateX(0);
    }
    70% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translateX(-1000px);
    }
}

.container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
    gap: 4rem;
}

.main-content {
    margin-bottom: 2rem;
}

h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #ffffff, #4a90e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.5rem;
    margin-top: 0;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.recent-project {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.project-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    margin: 0;
}

.project-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.project-logo {
    height: 30px;
    width: auto;
}

.project-name {
    font-size: 1.1rem;
}

.arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.project-link:hover .arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    p {
        font-size: 1.2rem;
    }
    
    .project-link {
        color: white;
        padding: 0.8rem 1.5rem;
        flex-direction: column;
        gap: 0.8rem;
    }

    .project-name {
        font-size: 1rem;
    }
}
