* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #fff;
    overflow-x: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.not-selectable {
    user-select: none;
}

/* Hero Section */
.hero-section {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #000 0%, #1a0f00 50%, #2a1a00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

.hero-content {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.hero-text {
    margin-bottom: 4rem;
}

.hero-title {
    font-size: clamp(4rem, 12vw, 8rem);
    color: #FEB52B;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    text-shadow: 3px 3px rgba(254, 181, 43, 0.3);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #FEB52B;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-description {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(254, 181, 43, 0.1);
    border: 2px solid #FEB52B;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link img {
    width: 30px;
    height: 30px;
    filter: brightness(0) saturate(100%) invert(73%) sepia(76%) saturate(491%) hue-rotate(356deg) brightness(102%) contrast(97%);
}

.social-link:hover {
    background: #FEB52B;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(254, 181, 43, 0.4);
}

.social-link:hover img {
    filter: brightness(0) saturate(100%);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #FEB52B;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.7;
}

.scroll-arrow {
    font-size: 1.75rem;
    margin-top: 0.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1a0f00 0%, #000 100%);
    padding: 3rem 2rem 1.5rem;
    border-top: 1px solid rgba(254, 181, 43, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    text-align: left;
}

.footer-brand {
    font-size: 2rem;
    color: #FEB52B;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-email {
    margin-top: 0.75rem;
}

.footer-email a {
    color: #FEB52B;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    opacity: 0.9;
}

.footer-email a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-heading {
    font-size: 1.25rem;
    color: #FEB52B;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.2s ease;
    opacity: 0.8;
}

.footer-link:hover {
    color: #FEB52B;
    opacity: 1;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(254, 181, 43, 0.1);
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-section {
        padding: 1.5rem;
        min-height: 90vh;
    }

    .social-links {
        gap: 1.5rem;
    }

    .social-link {
        width: 50px;
        height: 50px;
    }

    .social-link img {
        width: 25px;
        height: 25px;
    }

    .scroll-indicator {
        bottom: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-link:hover {
        transform: translateX(0);
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 1rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }

    .social-link img {
        width: 22px;
        height: 22px;
    }

    .site-footer {
        padding: 2rem 1rem 1rem;
    }
}