body {
    background-color: #292929;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    padding: 0 1rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    position: relative;
    z-index: 1;
}

.tagline {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: 0.1s;
}

h1 {
    font-size: clamp(1.75rem, 8vw, 4rem);
    margin: 0.5rem 0;
    text-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}



p {
    max-width: 600px;
    font-size: 1.25rem;
    line-height: 1.6;
    margin: 0 2rem;
    color: #ddd;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: 0.3s;
}

.features {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: 0.4s;
}

.feature {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: 0.5s;
    margin-block: 1.75rem;
}

.btn-large {
    padding: 0.75rem 2rem;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.btn-large span {
    vertical-align: middle;
}

.github-link {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: 0.6s;
}



@media (max-width: 768px) {
    p {
        font-size: 1.1rem;
    }

    .btn-large {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
    }

    .features {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    p {
        font-size: 1rem;
        max-width: 90%;
    }

    .btn-large {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .btns {
        flex-direction: column;
        gap: 0.75rem;
    }

    .features {
        flex-direction: column;
        gap: 0.75rem;
    }

    .github-link {
        top: 10px;
        right: 10px;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}