:root {
    --primary-color: #ffffff;
    --secondary-color: #c0c0c0;
    --primary-glow: rgba(255, 255, 255, 0.4);
    --bg-dark: #0a0a0a;
    --text-main: #fcfcfc;
    --text-dim: #b0b0b0;
    --glass-bg: rgba(10, 10, 10, 0.4);
    --glass-border: rgba(255, 255, 255, 0.15);
}

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

.profile-header {
    position: fixed;
    top: 50px;
    left: 0;
    width: 50%;
    display: flex;
    justify-content: center;
    z-index: 100;
}

.profile-pic-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    padding: 2px;
    border-radius: 50%;
    background: transparent;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

/* Rotating Silver Border for DP */
.profile-pic-wrapper::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: conic-gradient(transparent 0deg,
            transparent 280deg,
            #ffffff 320deg,
            #c0c0c0 340deg,
            transparent 360deg);
    animation: rotateBorder 4s linear infinite;
    z-index: -2;
}

.profile-pic-wrapper::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: #0a0a0a;
    border-radius: 50%;
    z-index: -1;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    z-index: 1;
}

.home-body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #000;
}

.home-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.coming-soon-box {
    position: relative;
    padding: 3rem;
    background: transparent;
    border: none;
    text-align: center;
    overflow: visible;
    /* To allow shimmers to breathe */
}

.gangster-title {
    font-family: 'Cinzel', serif;
    font-size: 6rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 20px;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
}

.coming-soon-text {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 12px;
    margin-bottom: 4rem;
    opacity: 0.7;
}

.home-body {
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
    display: block;
    background: linear-gradient(135deg, #000000 0%, #051a0d 40%, #050d1a 70%, #000000 100%);
    background-attachment: fixed;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background: linear-gradient(135deg, #000000 0%, #051a0d 40%, #050d1a 70%, #000000 100%);
    background-attachment: fixed;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
}

@keyframes drift {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 100px 100px;
    }
}

/* Silver Rotating Divider */
.silver-divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent,
            rgba(192, 192, 192, 0) 0%,
            rgba(192, 192, 192, 0.8) 50%,
            transparent 100%);
    z-index: 20;
    /* Above both video and login container */
    overflow: hidden;
}

.silver-divider::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent,
            #ffffff,
            #c0c0c0,
            transparent);
    animation: silverSinging 3s infinite linear;
    filter: blur(0.5px);
}

@keyframes silverSinging {
    0% {
        top: -100%;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Login Container - Covering the Right Half */
.login-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    padding: 4rem;
    background: #000;
    /* Solid black background for the right side */
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
}

/* Content Wrapper - Now borderless and integrated into the full right side */
.content-wrapper {
    width: 100%;
    max-width: 450px;
    /* Center the form within the right half */
    animation: slideInRight 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    position: relative;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

/* No longer need the animated border glow */
.content-wrapper::before {
    display: none;
}

@keyframes borderFlow {
    to {
        left: 100%;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Legendary Header Styles Removed */

/* VIP Form Container Styles */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    padding: 1rem;
}

/* Input labels removed for minimalist style */

.input-wrapper {
    position: relative;
    border-radius: 12px;
    background: transparent;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
    overflow: hidden;
    padding: 1px;
    border: 1px solid rgba(255, 254, 254, 0.712);
}

/* Cleanup old rotate border logic */
.input-wrapper::before,
.input-wrapper::after {
    display: none;
}

.input-shimmer-top,
.input-shimmer-bottom,
.input-shimmer-right {
    display: none;
}

.input-wrapper i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: #f6fcffd3;
    font-size: 1.1rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.input-wrapper input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem 1rem 3.8rem;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    outline: none;
    opacity: 0.1;
    transition: all 0.4s ease;
    z-index: 2;
}

.input-wrapper:focus-within {
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 20px rgba(218, 0, 0, 0.13);
}

.input-wrapper:focus-within input {
    opacity: 1;
}

.input-wrapper:focus-within i {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

/* Form Options VIP */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    margin-top: -0.5rem;
}

.remember-me {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--text-dim);
    user-select: none;
}

.remember-me input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    margin-right: 12px;
    display: inline-block;
    position: relative;
    transition: all 0.3s;
}

.remember-me input:checked+.checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.remember-me input:checked+.checkmark::after {
    content: '✓';
    position: absolute;
    color: #000;
    font-weight: 900;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.forgot-link {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.forgot-link:hover {
    text-shadow: 0 0 10px var(--primary-glow);
    filter: brightness(1.3);
}

/* Divider VIP */
.divider {
    display: flex;
    align-items: center;
    margin: 3rem 0;
    color: var(--text-dim);
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.6;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.divider span {
    padding: 0 2rem;
}

/* VIP Primary Button - Internal Shimmer only */
.btn-primary {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 100%);
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 0.8rem;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Internal Left-to-Right Shimmer */
.btn-primary-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.8),
            transparent);
    transform: skewX(-25deg);
    animation: btnShineFlow 3s infinite ease-in-out;
    z-index: 0;
}

@keyframes btnShineFlow {
    0% {
        left: -100%;
    }

    50% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

/* Update text color to be readable against white background */
.btn-primary {
    color: #000;
}

.btn-primary:hover::after {
    background: #ffffff;
    filter: brightness(1.1);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
    letter-spacing: 5px;
}

/* Social Buttons VIP */
.social-login {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    margin-top: 1rem;
}

.social-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
    padding: 1px;
}

/* 1px Rotating Border for Social Buttons */
.social-btn::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent 0deg,
            transparent 260deg,
            #ffffff 300deg,
            #c0c0c0 330deg,
            transparent 360deg);
    animation: rotateBorder 3s linear infinite;
    top: -50%;
    left: -50%;
    z-index: -2;
}

/* Circular Inner Layer */
.social-btn::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: #0a0a0a;
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s ease;
}

.social-btn:hover::after {
    background: var(--primary-color);
}

.social-btn:hover {
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--primary-glow);
}

.card-footer {
    margin-top: 3.5rem;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--text-dim);
}

.card-footer a {
    color: var(--primary-color);
    font-weight: 700;
    font-style: italic;
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* Mobile Responsiveness for all iPhones (SE to Pro Max) */
@media (max-width: 1024px) {
    .background-wrapper {
        width: 100%;
        height: 100%;
    }

    .silver-divider {
        display: none;
    }

    .bg-video {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    .gradient-overlay {
        background: rgba(0, 0, 0, 0.6);
    }

    .profile-header {
        width: 100%;
        top: 20px;
        justify-content: center;
    }

    .login-container {
        width: 100%;
        right: 0;
        padding: 2rem;
        background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    }

    .content-wrapper {
        max-width: 100%;
        animation: slideInUp 1s ease-out forwards;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .gangster-title {
        font-size: 2.5rem;
        letter-spacing: 5px;
        margin-top: 1rem;
    }

    .coming-soon-text {
        font-size: 1rem;
        letter-spacing: 6px;
        margin-bottom: 2rem;
    }

    .coming-soon-box {
        padding: 1.5rem;
    }

    .profile-pic-wrapper {
        width: 120px;
        height: 120px;
        margin-bottom: 1.5rem !important;
    }

    .login-form {
        gap: 1.5rem;
    }

    .input-wrapper input {
        padding: 0.9rem 1.2rem 0.9rem 3.5rem;
        font-size: 0.95rem;
    }

    .btn-primary {
        padding: 1rem;
        font-size: 1rem;
    }

    .social-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .loader-ring-wrapper {
        width: 180px;
        height: 180px;
    }

    .loader-dp-container {
        width: 140px;
        height: 140px;
    }

    .loader-percentage {
        font-size: 2.2rem;
        letter-spacing: 5px;
    }

    .loader-text {
        font-size: 0.7rem;
        letter-spacing: 6px;
    }
}

/* Extra small iPhone SE fix */
@media (max-width: 340px) {
    .gangster-title {
        font-size: 1.8rem;
    }

    .login-container {
        padding: 1rem;
    }
}

/* --- PREMIUM PRELOADER --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
    overflow: hidden;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.loader-ring-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Base ring (faint) */
.loader-ring-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(#ffffff var(--progress, 0%),
            rgba(255, 255, 255, 0.1) var(--progress, 0%),
            transparent 100%);
    mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #fff 0);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #fff 0);
    transition: --progress 0.4s ease;
    z-index: 2;
}

/* Glow Effect */
.loader-ring::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    opacity: 0.5;
}

.loader-dp-container {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.loader-dp {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: transform 10s linear;
}

.preloader-content:hover .loader-dp {
    transform: scale(1.1);
}

.loader-info {
    text-align: center;
}

.loader-percentage {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 10px;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.loader-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 12px;
    opacity: 0.7;
    animation: loaderPulse 2s infinite;
}

@keyframes loaderPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }
}

@property --progress {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 0%;
}

/* --- PREMIUM NAVBAR --- */
.premium-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 5000;
    display: flex;
    align-items: center;
    padding: 0 5%;
    background: linear-gradient(90deg,
            rgba(0, 40, 15, 0.7),
            rgba(0, 255, 106, 0.4),
            rgba(0, 40, 15, 0.7));
    background-size: 200% 100%;
    animation: backgroundPulse 5s infinite ease-in-out;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border-bottom: 2px solid rgba(0, 255, 106, 0.6);
    /* Legendary Green Border */
}

@keyframes backgroundPulse {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.premium-navbar.scrolled {
    height: 70px;
    background: rgba(5, 60, 25, 0.85);
    /* Solid GTA V Green on scroll */
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    border-bottom: 2px solid rgba(0, 255, 106, 0.5);
    /* Stronger Green Glow */
}

.premium-navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(0, 255, 106, 0.1) 50%,
            transparent);
    transition: none;
    animation: luxuryShimmer 8s infinite linear;
    pointer-events: none;
}

@keyframes luxuryShimmer {
    0% {
        left: -100%;
    }

    20%,
    100% {
        left: 100%;
    }
}

.premium-navbar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg,
            transparent,
            rgba(0, 255, 106, 0.03) 1px,
            transparent 2px);
    background-size: 100% 4px;
    animation: scanlineScroll 10s infinite linear;
    pointer-events: none;
    z-index: -1;
}

@keyframes scanlineScroll {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 100%;
    }
}

.nav-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.74);
    /* GTA V Green Blur Base */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 106, 0.1);
    z-index: -1;
}

.nav-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
    line-height: 1;
    transition: 0.5s;
    justify-content: center;
}

.slider-images .slider-img:nth-child(3),
.slider-images .slider-img:nth-child(4),
.slider-images .slider-img:nth-child(5) {
    height: 665px;
}

.slider-img h1 {
    font-family: "Cinzel", serif;
    font-size: 30px;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    color: #fff;
    position: absolute;
    top: 50%;
    left: -10%;
    transform: rotate(270deg) translateY(-50%);
    transition: 0.7s ease;
    white-space: nowrap;
}

.logo-main {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 4px;
    text-shadow: 0 0 15px rgba(0, 255, 106, 0.4);
    transition: 0.5s;
    white-space: nowrap;
}

.logo-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 0.55rem;
    font-weight: 600;
    color: #00ff6a;
    /* GTA Green */
    letter-spacing: 8px;
    margin-top: 2px;
    opacity: 0.8;
}






.logo-g {
    display: none;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: #999;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.4s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff6a, transparent);
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 120%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    justify-content: flex-end;
}

.nav-search i {
    color: #999;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.nav-search i:hover {
    color: #fff;
}

.nav-user {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
}

.nav-user img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-user:hover {
    border-color: #fff;
    transform: scale(1.05);
}

/* Mobile Nav Styles */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .nav-actions {
        gap: 1.5rem;
    }

    .mobile-toggle {
        display: flex;
    }

    .premium-navbar {
        height: 70px;
    }
}

/* --- DROPDOWN SYSTEM --- */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link i {
    font-size: 0.7rem;
    margin-left: 8px;
    transition: 0.4s;
    opacity: 0.6;
}

.dropdown-content {
    position: fixed;
    top: 60px;
    /* Start higher inside/behind the nav */
    left: 0;
    width: 100%;
    background: rgba(5, 20, 10, 0.85);
    /* Deep GTA Green */
    backdrop-filter: blur(45px);
    -webkit-backdrop-filter: blur(45px);
    border-bottom: 2px solid rgba(0, 255, 106, 0.4);
    border-top: 1px solid rgba(0, 255, 106, 0.1);
    border-radius: 0;
    padding: 2.5rem 5%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    justify-content: center;
    gap: 4rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    z-index: 4000;
    /* Behind main nav content but above video */
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    top: 80px;
    /* Slide DOWN to the bottom of the nav */
}

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-content a {
    text-decoration: none !important;
    color: #999;
    padding: 1.5rem 2rem;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border-radius: 12px;
    transition: 0.4s;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.dropdown-content a i {
    font-size: 1.8rem;
    color: #fff;
    opacity: 0.6;
    margin-left: 0;
    transition: 0.4s;
}

.dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    transform: translateY(-10px);
}

.dropdown-content a:hover i {
    opacity: 1;
    transform: scale(1.2);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

@media (max-width: 1024px) {
    .nav-dropdown i {
        display: none;
    }

    .dropdown-content {
        display: none;
    }
}

/* Video Mute Toggle Styling */
.mute-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(192, 192, 192, 0.3);
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1000;
}

.mute-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.mute-btn.unmuted {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    border-color: #fff;
}

@media (max-width: 1024px) {
    .mute-btn {
        bottom: 20px;
        left: auto;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

.mute-btn:not(.unmuted) i {
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* --- HOME HERO SPLIT SYSTEM --- */
.home-hero-split {
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background: #000;
}

.hero-left {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-left .background-wrapper {
    width: 100%;
}

.hero-right {
    flex: 1;
    background: #000;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    z-index: 10;
}

.hero-content {
    animation: slideInRight 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero-label {
    font-family: 'Outfit', sans-serif;
    color: #00ff6a;
    letter-spacing: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    line-height: 0.9;
    margin-bottom: 2rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-family: 'Outfit', sans-serif;
    color: #999;
    font-size: 1.1rem;
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.stat-num {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Mobile Fix for Hero */
@media (max-width: 1024px) {
    .home-hero-split {
        flex-direction: column;
    }

    .hero-left {
        height: 40vh;
        width: 100%;
        flex: none;
    }

    .hero-right {
        width: 100%;
        flex: 1;
        padding: 3rem 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }
}

/* --- TRENDING ARTISTS SECTION --- */
.trending-section {
    padding: 8rem 0;
    width: 100%;
    background: #000;
    overflow: hidden;
    position: relative;
}

.section-header {
    padding: 0 5%;
    margin-bottom: 4rem;
    text-align: left;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 5px;
}

.section-subtitle {
    font-family: 'Outfit', sans-serif;
    color: #00ff6a;
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-top: 10px;
    opacity: 0.8;
}

.artist-slider {
    width: 100%;
    padding: 20px 0;
}

.artist-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: artistSlide 40s linear infinite;
}

.artist-track:hover {
    animation-play-state: paused;
}

@keyframes artistSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-1 * (300px + 30px) * 10));
    }

    /* Width + Gap * Count */
}

.artist-card {
    position: relative;
    width: 300px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    cursor: pointer;
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.artist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
    filter: brightness(0.8) grayscale(0.2);
}

.card-glass {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 2.5rem 2rem;
    transition: 0.5s;
}

.card-info {
    transform: translateY(20px);
    transition: 0.5s;
}

.card-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.card-info p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    color: #999;
    letter-spacing: 2px;
}

.artist-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #00ff6a;
    box-shadow: 0 30px 60px rgba(0, 255, 106, 0.15);
}

.artist-card:hover img {
    transform: scale(1.1);
    filter: brightness(1) grayscale(0);
}

.artist-card:hover .card-glass {
    background: linear-gradient(to top, rgba(0, 255, 106, 0.2), transparent 80%);
}

.artist-card:hover .card-info {
     transform: translateY(0);
 }

.new-releases-title {
     font-family: 'Cinzel', serif;
     font-size: 2.5rem;
     font-weight: 900;
     color: #fff;
     letter-spacing: 3px;
     margin: 3rem 0 1rem 0;
     text-align: center;
     text-transform: uppercase;
 }

 @media (max-width: 768px) {
     .new-releases-title {
         font-size: 1.8rem;
         margin: 2rem 0 0.5rem 0;
     }
 }


/* --- FEATURED ARTICLE SECTION --- */
.featured-article {
     width: 100%;
     padding: 5rem 5%;
     background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
}

.article-container {
     display: flex;
     max-width: 1200px;
     margin: 0 auto;
     background: rgba(255, 255, 255, 0.02);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 20px;
     overflow: hidden;
     transition: all 0.5s ease;
}

.article-container:hover {
     border-color: rgba(0, 255, 106, 0.3);
     box-shadow: 0 20px 60px rgba(0, 255, 106, 0.1);
}

.article-image {
     flex: 1;
     position: relative;
     min-height: 400px;
     overflow: hidden;
}

.article-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.8s ease;
}

.article-container:hover .article-image img {
     transform: scale(1.05);
}

.article-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

.article-content {
     flex: 1;
     padding: 3rem;
     display: flex;
     flex-direction: column;
     justify-content: center;
}

.article-tag {
     font-family: 'Outfit', sans-serif;
     font-size: 0.75rem;
     font-weight: 600;
     color: #00ff6a;
     letter-spacing: 4px;
     text-transform: uppercase;
     margin-bottom: 1rem;
}

.article-title {
     font-family: 'Cinzel', serif;
     font-size: 2rem;
     font-weight: 900;
     color: #fff;
     line-height: 1.2;
     margin-bottom: 1.5rem;
}

.article-excerpt {
     font-family: 'Outfit', sans-serif;
     font-size: 1rem;
     color: #888;
     line-height: 1.7;
     margin-bottom: 2rem;
}

.article-meta {
     display: flex;
     gap: 2rem;
     margin-bottom: 2rem;
}

.article-date,
.article-read {
     font-family: 'Outfit', sans-serif;
     font-size: 0.85rem;
     color: #666;
     letter-spacing: 1px;
}

.article-btn {
     display: inline-flex;
     align-self: flex-start;
     padding: 1rem 2.5rem;
     background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 100%);
     color: #000;
     font-family: 'Cinzel', serif;
     font-size: 0.85rem;
     font-weight: 700;
     letter-spacing: 3px;
     text-transform: uppercase;
     text-decoration: none;
     border-radius: 8px;
     transition: all 0.4s ease;
}

.article-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
     letter-spacing: 5px;
}

@media (max-width: 768px) {
     .article-container {
          flex-direction: column;
     }

     .article-image {
          min-height: 250px;
     }

     .article-content {
          padding: 2rem;
     }

     .article-title {
          font-size: 1.5rem;
     }
}

/* --- SESSION BOOKING SECTION --- */
.session-booking {
     width: 100%;
     padding: 6rem 5%;
     background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
     position: relative;
}

.booking-container {
     max-width: 1200px;
     margin: 0 auto;
}

.booking-header {
     text-align: center;
     margin-bottom: 4rem;
}

.booking-tag {
     font-family: 'Outfit', sans-serif;
     font-size: 0.75rem;
     font-weight: 600;
     color: #00ff6a;
     letter-spacing: 4px;
     text-transform: uppercase;
}

.booking-title {
     font-family: 'Cinzel', serif;
     font-size: 2.5rem;
     font-weight: 900;
     color: #fff;
     letter-spacing: 3px;
     margin: 1rem 0;
}

.booking-subtitle {
     font-family: 'Outfit', sans-serif;
     font-size: 1rem;
     color: #666;
     letter-spacing: 1px;
}

.booking-options {
     display: flex;
     gap: 2rem;
     justify-content: center;
     flex-wrap: wrap;
}

.booking-card {
     position: relative;
     flex: 1;
     min-width: 280px;
     max-width: 350px;
     background: rgba(255, 255, 255, 0.02);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 20px;
     padding: 2.5rem 2rem;
     text-align: center;
     transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.booking-card:hover {
     transform: translateY(-10px);
     border-color: rgba(0, 255, 106, 0.3);
     box-shadow: 0 30px 60px rgba(0, 255, 106, 0.1);
     background: rgba(0, 255, 106, 0.02);
}

.featured-card {
     border-color: rgba(0, 255, 106, 0.4);
     background: rgba(0, 255, 106, 0.03);
}

.popular-badge {
     position: absolute;
     top: -12px;
     left: 50%;
     transform: translateX(-50%);
     background: linear-gradient(135deg, #00ff6a 0%, #00cc55 100%);
     color: #000;
     font-family: 'Outfit', sans-serif;
     font-size: 0.65rem;
     font-weight: 700;
     letter-spacing: 2px;
     padding: 0.4rem 1.2rem;
     border-radius: 20px;
     white-space: nowrap;
}

.booking-icon {
     width: 70px;
     height: 70px;
     margin: 0 auto 1.5rem;
     background: rgba(0, 255, 106, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.4s ease;
}

.booking-icon i {
     font-size: 1.5rem;
     color: #00ff6a;
}

.booking-card:hover .booking-icon {
     background: rgba(0, 255, 106, 0.2);
     transform: scale(1.1);
}

.card-title {
     font-family: 'Cinzel', serif;
     font-size: 1.3rem;
     font-weight: 700;
     color: #fff;
     letter-spacing: 2px;
     margin-bottom: 0.8rem;
}

.card-desc {
     font-family: 'Outfit', sans-serif;
     font-size: 0.9rem;
     color: #777;
     line-height: 1.5;
     margin-bottom: 1.5rem;
}

.card-price {
     font-family: 'Cinzel', serif;
     font-size: 2rem;
     font-weight: 900;
     color: #fff;
     margin-bottom: 1.5rem;
}

.card-price span {
     font-size: 0.85rem;
     color: #666;
     font-weight: 400;
}

.card-features {
     list-style: none;
     padding: 0;
     margin: 0 0 2rem 0;
     text-align: left;
}

.card-features li {
     font-family: 'Outfit', sans-serif;
     font-size: 0.85rem;
     color: #888;
     padding: 0.5rem 0;
     display: flex;
     align-items: center;
     gap: 10px;
}

.card-features li i {
     color: #00ff6a;
     font-size: 0.75rem;
}

.card-btn {
     width: 100%;
     padding: 1rem;
     background: transparent;
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 10px;
     color: #fff;
     font-family: 'Cinzel', serif;
     font-size: 0.8rem;
     font-weight: 700;
     letter-spacing: 3px;
     text-transform: uppercase;
     cursor: pointer;
     transition: all 0.4s ease;
}

.card-btn:hover {
     background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 100%);
     color: #000;
     border-color: #fff;
     letter-spacing: 5px;
}

.featured-card .card-btn {
     background: linear-gradient(135deg, #00ff6a 0%, #00cc55 100%);
     color: #000;
     border-color: #00ff6a;
}

.featured-card .card-btn:hover {
     background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 100%);
     border-color: #fff;
}

@media (max-width: 768px) {
     .session-booking {
          padding: 4rem 5%;
     }

     .booking-title {
          font-size: 1.8rem;
     }

     .booking-options {
          flex-direction: column;
          align-items: center;
     }

     .booking-card {
          width: 100%;
          max-width: 400px;
     }
}

/* --- EVENTS SECTION --- */
.events-section {
     width: 100%;
     padding: 6rem 5%;
     background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
     position: relative;
}

.events-container {
     max-width: 1200px;
     margin: 0 auto;
}

.events-header {
     text-align: center;
     margin-bottom: 4rem;
}

.events-tag {
     font-family: 'Outfit', sans-serif;
     font-size: 0.75rem;
     font-weight: 600;
     color: #00ff6a;
     letter-spacing: 4px;
     text-transform: uppercase;
}

.events-title {
     font-family: 'Cinzel', serif;
     font-size: 2.5rem;
     font-weight: 900;
     color: #fff;
     letter-spacing: 3px;
     margin: 1rem 0;
}

.events-subtitle {
     font-family: 'Outfit', sans-serif;
     font-size: 1rem;
     color: #666;
     letter-spacing: 1px;
}

.events-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2rem;
}

.event-card {
     position: relative;
     background: rgba(255, 255, 255, 0.02);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 20px;
     overflow: hidden;
     transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.event-card:hover {
     transform: translateY(-10px);
     border-color: rgba(0, 255, 106, 0.3);
     box-shadow: 0 30px 60px rgba(0, 255, 106, 0.1);
}

.event-date-badge {
     position: absolute;
     top: 15px;
     left: 15px;
     z-index: 10;
     background: linear-gradient(135deg, #00ff6a 0%, #00cc55 100%);
     border-radius: 12px;
     padding: 0.6rem 1rem;
     text-align: center;
     min-width: 60px;
}

.event-day {
     display: block;
     font-family: 'Cinzel', serif;
     font-size: 1.4rem;
     font-weight: 900;
     color: #000;
     line-height: 1;
}

.event-month {
     display: block;
     font-family: 'Outfit', sans-serif;
     font-size: 0.65rem;
     font-weight: 700;
     color: #000;
     letter-spacing: 2px;
     margin-top: 2px;
}

.event-image {
     position: relative;
     height: 200px;
     overflow: hidden;
}

.event-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.8s ease;
}

.event-card:hover .event-image img {
     transform: scale(1.1);
}

.event-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.event-info {
     padding: 1.5rem;
}

.event-name {
     font-family: 'Cinzel', serif;
     font-size: 1.2rem;
     font-weight: 700;
     color: #fff;
     letter-spacing: 1px;
     margin-bottom: 0.8rem;
}

.event-details {
     display: flex;
     flex-direction: column;
     gap: 0.4rem;
     margin-bottom: 1rem;
}

.event-details span {
     font-family: 'Outfit', sans-serif;
     font-size: 0.8rem;
     color: #888;
     display: flex;
     align-items: center;
     gap: 8px;
}

.event-details span i {
     color: #00ff6a;
     font-size: 0.75rem;
     width: 14px;
}

.event-desc {
     font-family: 'Outfit', sans-serif;
     font-size: 0.85rem;
     color: #666;
     line-height: 1.5;
     margin-bottom: 1.5rem;
}

.event-btn {
     width: 100%;
     padding: 0.9rem;
     background: transparent;
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 10px;
     color: #fff;
     font-family: 'Cinzel', serif;
     font-size: 0.75rem;
     font-weight: 700;
     letter-spacing: 3px;
     text-transform: uppercase;
     cursor: pointer;
     transition: all 0.4s ease;
}

.event-btn:hover {
     background: linear-gradient(135deg, #00ff6a 0%, #00cc55 100%);
     color: #000;
     border-color: #00ff6a;
     letter-spacing: 5px;
}

@media (max-width: 1024px) {
     .events-grid {
          grid-template-columns: repeat(2, 1fr);
     }
}

@media (max-width: 768px) {
     .events-section {
          padding: 4rem 5%;
     }

     .events-title {
          font-size: 1.8rem;
     }

     .events-grid {
          grid-template-columns: 1fr;
     }
}

/* --- FAQ SECTION --- */
.faq-section {
     width: 100%;
     padding: 6rem 5%;
     background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
     position: relative;
}

.faq-container {
     max-width: 900px;
     margin: 0 auto;
}

.faq-header {
     text-align: center;
     margin-bottom: 4rem;
}

.faq-tag {
     font-family: 'Outfit', sans-serif;
     font-size: 0.75rem;
     font-weight: 600;
     color: #00ff6a;
     letter-spacing: 4px;
     text-transform: uppercase;
}

.faq-title {
     font-family: 'Cinzel', serif;
     font-size: 2.5rem;
     font-weight: 900;
     color: #fff;
     letter-spacing: 3px;
     margin: 1rem 0;
}

.faq-subtitle {
     font-family: 'Outfit', sans-serif;
     font-size: 1rem;
     color: #666;
     letter-spacing: 1px;
}

.faq-grid {
     display: flex;
     flex-direction: column;
     gap: 1rem;
}

.faq-item {
     background: rgba(255, 255, 255, 0.02);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 15px;
     overflow: hidden;
     transition: all 0.4s ease;
}

.faq-item:hover {
     border-color: rgba(0, 255, 106, 0.2);
}

.faq-item.active {
     border-color: rgba(0, 255, 106, 0.3);
     background: rgba(0, 255, 106, 0.02);
}

.faq-question {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 1.5rem 2rem;
     cursor: pointer;
     user-select: none;
}

.faq-question h3 {
     font-family: 'Outfit', sans-serif;
     font-size: 1rem;
     font-weight: 600;
     color: #fff;
     letter-spacing: 0.5px;
     padding-right: 1rem;
}

.faq-icon {
     width: 35px;
     height: 35px;
     min-width: 35px;
     background: rgba(0, 255, 106, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.4s ease;
}

.faq-icon i {
     font-size: 0.8rem;
     color: #00ff6a;
     transition: transform 0.4s ease;
}

.faq-item.active .faq-icon {
     background: rgba(0, 255, 106, 0.2);
}

.faq-item.active .faq-icon i {
     transform: rotate(45deg);
}

.faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.5s cubic-bezier(0.19, 1, 0.22, 1), padding 0.4s ease;
}

.faq-item.active .faq-answer {
     max-height: 300px;
     padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
     font-family: 'Outfit', sans-serif;
     font-size: 0.9rem;
     color: #888;
     line-height: 1.7;
     margin: 0;
}

@media (max-width: 768px) {
     .faq-section {
          padding: 4rem 5%;
     }

     .faq-title {
          font-size: 1.8rem;
     }

     .faq-question {
          padding: 1.2rem 1.5rem;
     }

     .faq-question h3 {
          font-size: 0.9rem;
     }

     .faq-item.active .faq-answer {
          padding: 0 1.5rem 1.2rem 1.5rem;
     }
}

/* --- FOOTER --- */
.site-footer {
     width: 100%;
     background: linear-gradient(180deg, #000 0%, #051a0d 100%);
     border-top: 2px solid rgba(0, 255, 106, 0.3);
     position: relative;
     overflow: hidden;
}

.site-footer::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 1px;
     background: linear-gradient(90deg, transparent, #00ff6a, transparent);
}

.footer-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 4rem 5% 2rem;
}

.footer-top {
     display: flex;
     gap: 4rem;
     padding-bottom: 3rem;
     border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
     flex: 1;
     max-width: 300px;
}

.footer-logo {
     margin-bottom: 1.5rem;
}

.footer-logo .logo-main {
     font-family: 'Cinzel', serif;
     font-size: 1.3rem;
     font-weight: 900;
     color: #fff;
     letter-spacing: 4px;
     display: block;
}

.footer-logo .logo-sub {
     font-family: 'Outfit', sans-serif;
     font-size: 0.55rem;
     font-weight: 600;
     color: #00ff6a;
     letter-spacing: 8px;
     display: block;
}

.footer-desc {
     font-family: 'Outfit', sans-serif;
     font-size: 0.9rem;
     color: #666;
     line-height: 1.7;
}

.footer-links-wrap {
     flex: 2;
     display: flex;
     gap: 4rem;
     justify-content: flex-end;
}

.footer-col {
     min-width: 150px;
}

.footer-heading {
     font-family: 'Cinzel', serif;
     font-size: 0.85rem;
     font-weight: 700;
     color: #00ff6a;
     letter-spacing: 3px;
     margin-bottom: 1.5rem;
}

.footer-links {
     list-style: none;
     padding: 0;
     margin: 0;
}

.footer-links li {
     margin-bottom: 0.8rem;
}

.footer-links li a {
     font-family: 'Outfit', sans-serif;
     font-size: 0.9rem;
     color: #888;
     text-decoration: none;
     transition: all 0.3s ease;
     position: relative;
}

.footer-links li a:hover {
     color: #00ff6a;
     padding-left: 8px;
}

.footer-social {
     display: flex;
     gap: 0.8rem;
     margin-bottom: 2rem;
}

.social-link {
     width: 42px;
     height: 42px;
     border-radius: 50%;
     background: rgba(0, 255, 106, 0.08);
     border: 1px solid rgba(0, 255, 106, 0.2);
     display: flex;
     align-items: center;
     justify-content: center;
     color: #00ff6a;
     font-size: 1rem;
     transition: all 0.4s ease;
     text-decoration: none;
}

.social-link:hover {
     background: #00ff6a;
     color: #000;
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(0, 255, 106, 0.3);
}

.footer-newsletter p {
     font-family: 'Outfit', sans-serif;
     font-size: 0.85rem;
     color: #888;
     margin-bottom: 0.8rem;
}

.newsletter-form {
     display: flex;
     border: 1px solid rgba(0, 255, 106, 0.2);
     border-radius: 8px;
     overflow: hidden;
     transition: border-color 0.3s ease;
}

.newsletter-form:focus-within {
     border-color: #00ff6a;
}

.newsletter-form input {
     flex: 1;
     padding: 0.7rem 1rem;
     background: rgba(255, 255, 255, 0.03);
     border: none;
     outline: none;
     color: #fff;
     font-family: 'Outfit', sans-serif;
     font-size: 0.85rem;
}

.newsletter-form input::placeholder {
     color: #555;
}

.newsletter-form button {
     padding: 0.7rem 1rem;
     background: rgba(0, 255, 106, 0.15);
     border: none;
     color: #00ff6a;
     cursor: pointer;
     transition: all 0.3s ease;
}

.newsletter-form button:hover {
     background: #00ff6a;
     color: #000;
}

.footer-bottom {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding-top: 2rem;
}

.copyright {
     font-family: 'Outfit', sans-serif;
     font-size: 0.8rem;
     color: #555;
}

.footer-bottom-links {
     display: flex;
     gap: 1rem;
     align-items: center;
}

.footer-bottom-links a {
     font-family: 'Outfit', sans-serif;
     font-size: 0.8rem;
     color: #555;
     text-decoration: none;
     transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
     color: #00ff6a;
}

.footer-bottom-links span {
     color: #333;
}

@media (max-width: 1024px) {
     .footer-top {
          flex-direction: column;
          gap: 3rem;
     }

     .footer-brand {
          max-width: 100%;
     }

     .footer-links-wrap {
          justify-content: flex-start;
          flex-wrap: wrap;
     }
}

@media (max-width: 768px) {
     .footer-container {
          padding: 3rem 5% 1.5rem;
     }

     .footer-links-wrap {
          flex-direction: column;
          gap: 2rem;
     }

     .footer-bottom {
          flex-direction: column;
          gap: 1rem;
          text-align: center;
     }

     .footer-social {
          flex-wrap: wrap;
     }
}