/* Zengin Aklı - Landing Page Custom Styles */

#landing-screen .flex-1.overflow-y-auto {
    position: relative;
}

#landing-screen .flex-1.overflow-y-auto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    width: 384px;
    height: 384px;
    background: radial-gradient(circle, rgba(198, 166, 94, 0.05), transparent);
    border-radius: 9999px;
    filter: blur(64px);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

#landing-screen .flex-1.overflow-y-auto::after {
    content: '';
    position: absolute;
    bottom: 25%;
    right: 25%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(198, 166, 94, 0.03), transparent);
    border-radius: 9999px;
    filter: blur(64px);
    animation: pulse 4s ease-in-out infinite;
    animation-delay: 1s;
    pointer-events: none;
}

#landing-screen h1.text-5xl {
    font-weight: 700 !important;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

#landing-screen h1 span {
    background: linear-gradient(to right, #C6A75E, #D4B86A, #C6A75E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-pulse 3s ease-in-out infinite;
}

@keyframes gradient-pulse {
    0%,100% { opacity: 1; }
    50% { opacity: 0.8; }
}

#landing-screen .bg-brand-charcoal {
    transition: all 0.3s ease;
}

#landing-screen .bg-brand-charcoal:hover {
    border-color: rgba(198, 166, 94, 0.5) !important;
    box-shadow: 0 0 30px rgba(198, 166, 94, 0.15) !important;
    background: linear-gradient(135deg, #1C1F26 0%, #0B0E11 100%);
}

#landing-screen button.bg-brand-gold {
    box-shadow: 0 0 25px rgba(198, 166, 94, 0.3) !important;
    transition: all 0.3s ease !important;
}

#landing-screen button.bg-brand-gold:hover {
    box-shadow: 0 0 35px rgba(198, 166, 94, 0.5) !important;
    transform: scale(1.05) !important;
}

#landing-screen .fa-video,
#landing-screen .fa-users,
#landing-screen .fa-chart-line {
    color: #C6A75E;
    font-size: 1.125rem;
}

#landing-screen .max-w-6xl.mx-auto {
    padding-top: 3rem;
    padding-bottom: 4rem;
}

#landing-screen p.text-brand-grey {
    line-height: 1.625;
    font-weight: 400;
}

#landing-screen h3.text-brand-ivory {
    font-weight: 600;
    letter-spacing: -0.01em;
}

#landing-screen nav.border-b {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

#landing-screen .bg-brand-charcoal\/70 {
    background: linear-gradient(135deg, rgba(28, 31, 38, 0.8), rgba(11, 14, 17, 1)) !important;
    border-color: rgba(198, 166, 94, 0.2) !important;
}

#landing-screen .bg-brand-charcoal\/70:hover {
    border-color: rgba(198, 166, 94, 0.8) !important;
    box-shadow: 0 0 40px rgba(198, 166, 94, 0.2) !important;
}

@media (max-width: 768px) {
    #landing-screen h1.text-5xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    #landing-screen .max-w-6xl.mx-auto {
        padding-top: 2rem;
    }
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: #C6A75E;
    color: #0B0E11;
}

::-moz-selection {
    background: #C6A75E;
    color: #0B0E11;
}
