/* =========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================= */
:root {
    /* Colors */
    --color-bg-dark: #130a06;
    --color-bg-card: #1c110a;
    --color-text-primary: #ffffff;
    --color-text-muted: #dfcbb5;
    --color-text-dark: #22140a;
    --color-gold-light: #f2d09a;
    --color-gold-mid: #c59453;
    --color-gold-dark: #90632d;
    --color-cream: #ebdcc9;
    --color-border: rgba(197, 148, 83, 0.2);
    --color-border-hover: rgba(242, 208, 154, 0.6);
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold-mid) 50%, var(--color-gold-dark) 100%);
    --gradient-gold-hover: linear-gradient(135deg, #ffffff 0%, var(--color-gold-light) 50%, var(--color-gold-mid) 100%);
    --gradient-dark-glass: rgba(28, 17, 10, 0.75);
    
    /* Shadows */
    --shadow-glow: 0 0 20px rgba(197, 148, 83, 0.35);
    --shadow-glow-intense: 0 0 35px rgba(242, 208, 154, 0.6);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
    
    /* Layout & Fonts */
    --font-script: 'Allura', cursive;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    /* Spacing */
    --space-unit: 8px;
    --border-radius: 16px;
    --transition-speed: 0.3s;
}

/* =========================================================================
   BASE RESET & UTILITIES
   ========================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 50% 0%, #2a1910 0%, var(--color-bg-dark) 70%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
    -webkit-user-drag: none;
    user-drag: none;
}

.text-center { text-align: center; }
.hidden { display: none !important; }
.w-full { width: 100%; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 5px;
    border: 2px solid var(--color-bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-gold-hover);
}

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-speed) cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--color-text-dark);
    box-shadow: 0 4px 15px rgba(197, 148, 83, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-gold::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% { left: -60%; }
    30%, 100% { left: 140%; }
}

.btn-gold:hover {
    background: var(--gradient-gold-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-gold:active {
    transform: translateY(1px);
}

.btn-gold-outline {
    background: transparent;
    color: var(--color-gold-light);
    border: 1px solid var(--color-gold-mid);
    box-shadow: inset 0 0 0px rgba(197, 148, 83, 0);
}

.btn-gold-outline:hover {
    background: rgba(197, 148, 83, 0.1);
    border-color: var(--color-gold-light);
    box-shadow: var(--shadow-glow);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    background: rgba(0, 0, 0, 0.2);
    color: var(--color-text-muted);
    border: 1px solid rgba(223, 203, 181, 0.25);
}

.btn-outline:hover {
    background: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.45);
    color: #ff6b7d;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(220, 53, 69, 0.15);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.75rem;
}

.btn-large {
    padding: 16px 36px;
    font-size: 0.9rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Eye-Catching Conversion Style for Exclusive OnlyFans Buttons */
.dynamic-exclusive-link {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

/* Passive pulsing glow to draw visual attention to primary CTA */
.dynamic-exclusive-link.btn-gold {
    animation: ctaPulse 2s infinite ease-in-out;
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(197, 148, 83, 0.35);
    }
    50% {
        box-shadow: 0 4px 25px rgba(242, 208, 154, 0.65), 0 0 12px rgba(242, 208, 154, 0.25);
    }
}

/* Striking Hover State */
.dynamic-exclusive-link:hover {
    transform: scale(1.06) translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(242, 208, 154, 0.85), 0 0 18px rgba(242, 208, 154, 0.4) !important;
    filter: brightness(1.1);
}

.dynamic-exclusive-link:hover i.ph-crown,
.dynamic-exclusive-link:hover i.ph-lock-key {
    animation: crownWobble 0.6s ease infinite alternate;
}

@keyframes crownWobble {
    0% { transform: scale(1) rotate(-8deg); }
    100% { transform: scale(1.2) rotate(8deg); }
}

/* =========================================================================
   1. AGE VERIFICATION GATE
   ========================================================================= */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 5, 2, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.age-gate-card {
    background: linear-gradient(135deg, rgba(26, 15, 9, 0.93) 0%, rgba(12, 6, 3, 0.98) 100%);
    border: 1px solid rgba(197, 148, 83, 0.28);
    border-radius: 24px;
    padding: 60px 48px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(197, 148, 83, 0.12);
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.age-gate-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(242, 208, 154, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.age-gate-card > * {
    position: relative;
    z-index: 2;
}

.age-gate-logo-img {
    height: 48px;
    width: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto 20px auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.crown-icon {
    font-size: 2.2rem;
    color: var(--color-gold-light);
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(242, 208, 154, 0.4));
    animation: goldGlow 3s infinite ease-in-out;
}

.age-gate-title {
    font-family: var(--font-script);
    font-size: 2.4rem;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #fff5e6 0%, #f2d09a 50%, #c59453 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: normal;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.age-gate-text {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
}

.age-gate-text strong {
    color: var(--color-gold-light);
    font-weight: 600;
    text-shadow: 0 0 5px rgba(242, 208, 154, 0.2);
}

.age-gate-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.age-gate-footer {
    font-size: 0.72rem;
    color: rgba(223, 203, 181, 0.35);
    letter-spacing: 0.5px;
}

/* =========================================================================
   2. HEADER & NAVIGATION
   ========================================================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background-color: rgba(19, 10, 6, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 148, 83, 0.15);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 34px;
    width: auto;
    max-width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.site-logo {
    display: flex;
    justify-content: center;
    flex: 0 0 auto;
}

.site-logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-gold-light);
}

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

/* =========================================================================
   LIVE STREAM DROPDOWNS & STATUS INDICATORS
   ========================================================================= */

/* Pulsing Green Status Indicator */
.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #00ff66;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
    box-shadow: 0 0 8px #00ff66;
    animation: livePulse 1.8s infinite;
}

@keyframes livePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.7);
    }
    70% {
        transform: scale(1.25);
        box-shadow: 0 0 0 8px rgba(0, 255, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 255, 102, 0);
    }
}

/* Desktop Dropdown Styles */
.nav-dropdown-wrapper {
    position: relative;
}

.nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.nav-submenu-list {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: rgba(18, 9, 5, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 148, 83, 0.25);
    border-radius: 12px;
    padding: 10px 0;
    min-width: 190px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    display: flex !important;
    flex-direction: column;
}

.nav-dropdown-wrapper:hover .nav-submenu-list {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.nav-submenu-list li {
    display: block;
    margin: 0 !important;
}

.nav-submenu-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: none; /* keep lowercase logo names */
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    text-align: left;
}

.nav-submenu-list a:hover {
    background: rgba(197, 148, 83, 0.1);
    color: var(--color-gold-light);
}

.dropdown-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    transition: filter 0.25s ease;
}

.nav-submenu-list a:hover img.cb-orange {
    filter: drop-shadow(0 0 4px #ff8800);
}

.nav-submenu-list a:hover img.sc-pink {
    filter: drop-shadow(0 0 4px #ff3b30);
}

.nav-dropdown-wrapper .ph-caret-down {
    font-size: 0.72rem;
    transition: transform 0.3s ease;
}

.nav-dropdown-wrapper:hover .ph-caret-down {
    transform: rotate(180deg);
}

/* Mobile Drawer Dropdown Styles */
.drawer-dropdown-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.drawer-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    width: 100%;
}

.drawer-dropdown-wrapper .ph-caret-down {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.drawer-dropdown-wrapper.active .ph-caret-down {
    transform: rotate(180deg);
}

.drawer-submenu-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.drawer-dropdown-wrapper.active .drawer-submenu-list {
    max-height: 140px;
    margin-top: 15px;
    margin-bottom: 5px;
}

.drawer-sublink {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 0;
    color: rgba(223, 203, 181, 0.65);
    font-size: 1.25rem;
    text-decoration: none;
    transition: color 0.3s ease;
    width: 100%;
    max-width: 200px;
}

.drawer-sublink:hover {
    color: var(--color-gold-light);
}

.drawer-sublink .dropdown-icon {
    width: 22px;
    height: 22px;
}

.header-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 148, 83, 0.25);
    color: var(--color-gold-light);
    font-size: 1.25rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.header-icon-btn:hover {
    background: var(--gradient-gold);
    color: var(--color-text-dark);
    border-color: var(--color-gold-light);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px) scale(1.08);
}

/* Language Selector Dropdowns (Banderas) */
.active-flag-img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-sizing: border-box;
}

.flag-img {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-sizing: border-box;
    margin-right: 8px;
    vertical-align: middle;
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 38px;
    padding: 0 14px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 148, 83, 0.25);
    color: var(--color-gold-light);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: uppercase;
}

.lang-toggle:hover {
    background: var(--gradient-gold);
    color: var(--color-text-dark);
    border-color: var(--color-gold-light);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px) scale(1.05);
}

.lang-toggle:hover .active-flag-img {
    border-color: rgba(0, 0, 0, 0.2);
}

.lang-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.lang-dropdown-wrapper.active .nav-submenu-list {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

/* Custom Spacing and Underline Fixes for Language Dropdown */
.lang-toggle::after {
    display: none !important;
}

.lang-submenu-list {
    padding: 6px 0 !important;
    min-width: 140px !important;
}

.lang-submenu-list a {
    padding: 6px 14px !important;
    font-size: 0.78rem !important;
    gap: 8px !important;
}

.mobile-lang-dropdown {
    display: none !important;
}


.header-actions {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.8rem;
    cursor: pointer;
}

/* =========================================================================
   MOBILE DRAWER
   ========================================================================= */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 5, 2, 0.80);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer-content {
    position: relative;
    width: 90%;
    max-width: 400px;
    height: auto;
    background: transparent;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-drawer-overlay.active .drawer-content {
    transform: scale(1);
}

.drawer-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
}

.drawer-logo-img {
    height: 38px;
    width: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.drawer-close {
    position: absolute;
    top: -20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.5rem;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.drawer-close:hover {
    background: rgba(220, 53, 69, 0.15);
    border-color: rgba(220, 53, 69, 0.4);
    color: #ff6b7d;
}

.drawer-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.drawer-link {
    font-size: 1.25rem;
    font-family: var(--font-serif);
    text-transform: uppercase;
    color: var(--color-text-muted);
    letter-spacing: 2px;
    display: block;
    padding: 2px 0;
    transition: all 0.3s ease;
}

.drawer-link:hover {
    color: var(--color-gold-light);
    transform: scale(1.08);
}

.drawer-footer {
    margin-top: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.drawer-footer .btn {
    width: auto;
    min-width: 260px;
    background: rgba(197, 148, 83, 0.05);
    border: 1px solid var(--color-gold-light);
    color: var(--color-gold-light) !important;
    text-shadow: 0 0 5px rgba(242, 208, 154, 0.3);
    box-shadow: 0 4px 15px rgba(197, 148, 83, 0.1), inset 0 0 10px rgba(197, 148, 83, 0.05);
    padding: 16px 28px;
    font-size: 0.82rem;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.drawer-footer .btn:hover {
    background: var(--gradient-gold);
    color: var(--color-text-dark) !important;
    box-shadow: var(--shadow-glow);
    transform: scale(1.03);
}

.drawer-footer .btn::after {
    display: none;
}

/* =========================================================================
   3.5 MOBILE HERO SECTION (LINKTREE STYLE)
   ========================================================================= */
.mobile-hero-container {
    display: none;
}

/* =========================================================================
   3. HERO SECTION
   ========================================================================= */
.hero-section {
    position: relative;
    padding: 160px 0 100px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
}

.orb-1 {
    top: 10%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: var(--color-gold-light);
}

.orb-2 {
    bottom: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: var(--color-gold-dark);
}

.hero-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 580px;
}

.creator-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(28, 17, 10, 0.65);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(197, 148, 83, 0.35);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--color-gold-light);
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 0 10px rgba(197, 148, 83, 0.1);
    animation: goldPulse 4s infinite ease-in-out;
}

@keyframes goldPulse {
    0%, 100% {
        border-color: rgba(197, 148, 83, 0.35);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 5px rgba(197, 148, 83, 0.1);
    }
    50% {
        border-color: rgba(242, 208, 154, 0.7);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(242, 208, 154, 0.3);
    }
}

.hero-title {
    font-family: var(--font-script);
    font-size: 6.5rem;
    line-height: 0.9;
    background: linear-gradient(to right, #ffffff, var(--color-gold-light), var(--color-gold-mid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    font-weight: normal;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.8s ease;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 35px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-actions {
    margin-bottom: 20px;
}

.hero-subtext {
    font-size: 0.8rem;
    color: rgba(223, 203, 181, 0.5);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-subtext span {
    color: var(--color-gold-light);
    font-size: 1rem;
    display: inline-block;
    animation: smoothPulse 3s infinite ease-in-out;
}

/* =========================================================================
   4. GALLERY SECTION
   ========================================================================= */
.gallery-section {
    padding: 100px 0;
    width: calc(100% - 40px);
    margin: 0 auto;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--color-text-primary);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

#galeria .section-title {
    font-family: var(--font-script);
    font-size: 3.5rem;
    font-weight: normal;
    text-transform: none;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #fff5e6 0%, #f2d09a 50%, #c59453 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    display: inline-block;
}

@media (max-width: 768px) {
    #galeria .section-title {
        font-size: 2.8rem;
    }
}

.section-subtitle {
    color: var(--color-gold-light);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.gallery-carousel-container {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.gallery-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    cursor: pointer;
    background: var(--color-bg-card);
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    flex: 0 0 calc(33.333% - 16px);
    margin: 0 8px;
}

.carousel-control {
    background: rgba(28, 17, 10, 0.85);
    border: 1px solid var(--color-border);
    color: var(--color-gold-light);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control:hover {
    background: var(--gradient-gold);
    color: var(--color-text-dark);
    border-color: var(--color-gold-light);
    box-shadow: var(--shadow-glow);
}

.btn-carousel-prev {
    left: -25px;
}

.btn-carousel-next {
    right: -25px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.indicator {
    background: rgba(223, 203, 181, 0.2);
    border: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(242, 208, 154, 0.5);
}

.indicator.active {
    background: var(--gradient-gold);
    width: 24px;
    border-radius: 5px;
}

/* Responsive Gallery Carousel overrides */
@media (max-width: 992px) {
    .gallery-item {
        flex: 0 0 calc(50% - 16px);
    }
    .btn-carousel-prev {
        left: -12px;
    }
    .btn-carousel-next {
        right: -12px;
    }
}

@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 calc(50% - 12px);
        margin: 0 6px;
    }
    .carousel-control {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
    .btn-carousel-prev {
        left: 5px;
    }
    .btn-carousel-next {
        right: 5px;
    }
    .gallery-carousel-wrapper {
        padding: 0 5px;
    }
}

.gallery-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    display: none;
}

.gallery-item:hover .gallery-thumb {
    transform: scale(1.08);
}

/* =========================================================================
   5. PLATFORMS LINKS SECTION
   ========================================================================= */
.platforms-section {
    padding: 80px 0;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Platforms container layout */
.platforms-container {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 60px;
    align-items: center;
}

.platforms-left {
    display: flex;
    flex-direction: column;
}

.platforms-left .section-header {
    margin-bottom: 35px;
    text-align: left;
}

.platforms-left .section-title {
    margin-left: 0;
}

/* Desktop Links Stack (Linktree style on Desktop) */
.desktop-links-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 580px;
}

.desktop-link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(28, 17, 10, 0.45) 0%, rgba(15, 8, 4, 0.75) 100%);
    border: 1px solid rgba(197, 148, 83, 0.15);
    border-radius: 50px;
    padding: 14px 28px;
    color: #dfcbb5;
    text-decoration: none;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.desktop-link-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.desktop-link-tagline,
.mobile-link-tagline {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(223, 203, 181, 0.45);
    letter-spacing: 0.5px;
    margin: 0 25px;
    text-align: right;
    flex-grow: 1;
    transition: color var(--transition-speed) ease;
}

.desktop-link-item:hover .desktop-link-tagline,
.mobile-link-item:hover .mobile-link-tagline {
    color: var(--color-gold-light);
}

@media (max-width: 576px) {
    .desktop-link-tagline,
    .mobile-link-tagline {
        font-size: 0.72rem;
        margin: 0 10px;
        margin-right: 15px;
        font-weight: 300;
    }
}

.desktop-link-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.desktop-link-name {
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.desktop-link-item i.ph-dots-three-vertical {
    color: rgba(223, 203, 181, 0.3);
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.platform-logo-svg {
    width: 22px;
    height: 22px;
    object-fit: contain;
    transition: filter 0.4s ease;
}

/* Dynamic Hovers for Desktop Links Stack */
.desktop-link-item:hover {
    transform: translateX(12px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, rgba(28, 17, 10, 0.6) 0%, rgba(15, 8, 4, 0.9) 100%);
}

.desktop-link-item:hover i.ph-dots-three-vertical {
    color: rgba(223, 203, 181, 0.7);
}

/* OnlyFans Link Hover */
#desktop-link-onlyfans:hover {
    border-color: rgba(0, 136, 204, 0.5);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.15), 0 0 15px rgba(0, 136, 204, 0.05);
}
#desktop-link-onlyfans:hover .desktop-link-icon {
    background: #0088cc;
}
#desktop-link-onlyfans:hover .desktop-link-name {
    color: #0088cc;
}
#desktop-link-onlyfans:hover .platform-logo-svg {
    filter: brightness(0) invert(1);
}

/* Instagram Link Hover */
#desktop-link-instagram:hover {
    border-color: rgba(224, 43, 108, 0.5);
    box-shadow: 0 8px 25px rgba(224, 43, 108, 0.15), 0 0 15px rgba(224, 43, 108, 0.05);
}
#desktop-link-instagram:hover .desktop-link-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
#desktop-link-instagram:hover .desktop-link-name {
    color: #e12b6c;
}

/* TikTok Link Hover */
#desktop-link-tiktok:hover {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1), 0 0 15px rgba(255, 255, 255, 0.03);
}
#desktop-link-tiktok:hover .desktop-link-icon {
    background: #fff;
    color: #000;
}
#desktop-link-tiktok:hover .desktop-link-name {
    color: #fff;
}

/* Stripchat Link Hover */
#desktop-link-stripchat:hover {
    border-color: rgba(233, 30, 99, 0.5);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.15), 0 0 15px rgba(233, 30, 99, 0.05);
}
#desktop-link-stripchat:hover .desktop-link-icon {
    background: #e91e63;
}
#desktop-link-stripchat:hover .desktop-link-name {
    color: #e91e63;
}
#desktop-link-stripchat:hover .platform-logo-svg {
    filter: brightness(0) invert(1);
}

/* Chaturbate Link Hover */
#desktop-link-chaturbate:hover {
    border-color: rgba(255, 136, 0, 0.5);
    box-shadow: 0 8px 25px rgba(255, 136, 0, 0.15), 0 0 15px rgba(255, 136, 0, 0.05);
}
#desktop-link-chaturbate:hover .desktop-link-icon {
    background: #ff8800;
}
#desktop-link-chaturbate:hover .desktop-link-name {
    color: #ff8800;
}
#desktop-link-chaturbate:hover .platform-logo-svg {
    filter: brightness(0) invert(1);
}

/* Amazon Wishlist Link Hover & Icons */
.wl-icon-bg {
    background: linear-gradient(135deg, #ff9900 0%, #333333 100%) !important;
}

#desktop-link-wishlist:hover {
    border-color: rgba(255, 153, 0, 0.5);
    box-shadow: 0 8px 25px rgba(255, 153, 0, 0.15), 0 0 15px rgba(255, 153, 0, 0.05);
}
#desktop-link-wishlist:hover .desktop-link-icon {
    background: #ff9900;
    color: #111;
}
#desktop-link-wishlist:hover .desktop-link-name {
    color: #ff9900;
}

/* Right Side: Photo Card */
.platforms-right {
    display: flex;
    justify-content: center;
    width: 100%;
}

.platforms-photo-card {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(197, 148, 83, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(197, 148, 83, 0.05);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.platforms-photo-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold-light);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(197, 148, 83, 0.15);
}

/* Likes Badge Styles (White pill with purple accents) */
.card-like-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 12;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f5427e;
    border: 1px solid rgba(142, 36, 170, 0.25);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-like-badge:hover {
    transform: scale(1.05) translateY(-2px);
    border-color: #f5427e;
    box-shadow: 0 6px 20px rgba(142, 36, 170, 0.2);
}

.card-like-badge.liked {
    background: #f5427e;
    border-color: #f5427e;
    color: #fff;
    box-shadow: 0 4px 15px rgba(142, 36, 170, 0.15);
}

.card-like-badge i {
    font-size: 1rem;
    transition: transform 0.3s ease;
    color: #FFF;
}

.card-like-badge.liked i {
    color: #FFF;
}

.card-like-badge.wobble, .mobile-like-btn.wobble {
    animation: likeWobble 0.5s ease;
}

@keyframes likeWobble {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1) rotate(-8deg); }
    75% { transform: scale(1.1) rotate(8deg); }
}

/* Mobile Like Button in Header actions */
.mobile-like-btn {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #f5427e;
    border: 1px solid rgba(142, 36, 170, 0.25);
    color: #FFF;
    padding: 6px 12px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 38px;
    box-sizing: border-box;
    margin-right: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-like-btn:hover {
    background: #fdfafd;
    border-color: #fdfafd;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(142, 36, 170, 0.15);
}

.mobile-like-btn.liked {
    background: #f5427e;
    border-color: #f5427e;
    color: #fff;
    box-shadow: 0 2px 10px rgba(142, 36, 170, 0.15);
}

.mobile-like-btn.liked i {
    color: #fff;
}

.platforms-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.platforms-photo-card:hover .platforms-photo {
    transform: scale(1.05);
}

.platforms-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(12, 6, 4, 0.1) 0%, rgba(12, 6, 4, 0.45) 55%, rgba(12, 6, 4, 0.9) 100%);
    pointer-events: none;
}

.platforms-photo-info {
    position: absolute;
    bottom: 110px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 0 35px;
    z-index: 10;
    pointer-events: none;
}

.platforms-photo-title {
    font-family: var(--font-script);
    font-size: 3.2rem;
    font-weight: normal;
    line-height: 1.1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff5e6 0%, #f2d09a 50%, #c59453 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    text-transform: none;
}

.platforms-photo-desc {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.45;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

@media (max-width: 480px) {
    .platforms-photo-title {
        font-size: 2.6rem;
    }
    .platforms-photo-desc {
        font-size: 0.8rem;
    }
}

.platforms-photo-cta-wrapper {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    z-index: 10;
}

.platforms-photo-cta-wrapper .btn {
    width: 100%;
    max-width: 320px;
    white-space: nowrap;
}

/* =========================================================================
   6. VALUE PROPOSITION SECTION (DARK CARD TILES)
   ========================================================================= */
.values-section {
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    padding: 110px 24px 80px 24px;
    position: relative;
}

.values-container {
    width: 90%;
    max-width: 1000px; /* narrowed to align 2 columns elegantly */
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.value-card {
    background: radial-gradient(circle at 50% 0%, rgba(197, 148, 83, 0.12) 0%, transparent 60%),
                linear-gradient(135deg, rgba(28, 17, 10, 0.45) 0%, rgba(15, 8, 4, 0.75) 100%);
    border: 1px solid rgba(197, 148, 83, 0.18);
    border-radius: 24px;
    padding: 60px 40px 45px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(197, 148, 83, 0.02);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Edge light (luminous thread at the top) */
.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 208, 154, 0.8) 30%, rgba(242, 208, 154, 0.8) 70%, transparent);
    box-shadow: 0 0 12px rgba(242, 208, 154, 0.6), 0 0 20px rgba(242, 208, 154, 0.3);
    transition: all 0.5s ease;
    opacity: 0.7;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(242, 208, 154, 0.35);
    background: radial-gradient(circle at 50% 0%, rgba(242, 208, 154, 0.22) 0%, transparent 70%),
                linear-gradient(135deg, rgba(28, 17, 10, 0.55) 0%, rgba(15, 8, 4, 0.85) 100%);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.65), var(--shadow-glow);
}

.value-card:hover::before {
    opacity: 1;
    width: 90%;
    left: 5%;
    box-shadow: 0 0 18px rgba(242, 208, 154, 0.95), 0 0 28px rgba(242, 208, 154, 0.5);
}

.value-card-icon-wrapper {
    width: 72px;
    height: 72px;
    background: #0f0805;
    border: 2px solid var(--color-gold-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    color: var(--color-gold-light);
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(197, 148, 83, 0.45), 0 0 10px rgba(197, 148, 83, 0.2);
    transition: all 0.4s ease;
}

.value-card:hover .value-card-icon-wrapper {
    transform: translateX(-50%) scale(1.08) rotate(15deg);
    border-color: var(--color-gold-light);
    box-shadow: 0 0 30px rgba(242, 208, 154, 0.85), 0 0 15px rgba(242, 208, 154, 0.45);
}

.value-card-svg-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.value-card-title {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-top: 10px;
    color: var(--color-text-primary);
}

.value-card-divider {
    width: 65%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(197, 148, 83, 0.35) 20%, rgba(197, 148, 83, 0.35) 80%, transparent);
    position: relative;
    margin: 18px 0 22px 0;
}

.divider-diamond {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #180e09; /* covers line in middle */
    padding: 0 8px;
    color: var(--color-gold-light);
    font-size: 0.7rem;
    pointer-events: none;
}

.value-card-text {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 32px;
    flex-grow: 1; /* Pushes the button to the bottom */
}

/* Outline Gold Button Style */
.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--color-gold-mid);
    color: var(--color-gold-light);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: auto;
}

.btn-outline-gold:hover {
    background: var(--gradient-gold);
    color: var(--color-text-dark);
    border-color: var(--color-gold-light);
    box-shadow: var(--shadow-glow);
}

.btn-outline-gold i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.btn-outline-gold:hover i {
    transform: translateX(3px);
}

/* Card Dropdown Menu Styles */
.card-dropdown-wrapper {
    position: relative;
    display: inline-block;
    width: auto;
}

.card-dropdown-menu {
    position: absolute;
    bottom: 110%; /* Opens upwards */
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(18, 9, 5, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 148, 83, 0.35);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 200px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
    display: flex !important;
    flex-direction: column;
    list-style: none;
    margin: 0;
}

.card-dropdown-wrapper.active .card-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.card-dropdown-wrapper .ph-caret-down {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.card-dropdown-wrapper.active .ph-caret-down {
    transform: rotate(180deg);
}

.card-dropdown-menu li {
    display: block;
    margin: 0 !important;
    width: 100%;
}

.card-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--color-text-muted);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.card-dropdown-menu a:hover {
    background: rgba(197, 148, 83, 0.1);
    color: var(--color-gold-light);
}

.card-dropdown-menu .dropdown-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: filter 0.25s ease;
}

.card-dropdown-menu a:hover img.cb-orange {
    filter: drop-shadow(0 0 4px #ff8800);
}

.card-dropdown-menu a:hover img.sc-pink {
    filter: drop-shadow(0 0 4px #ff3b30);
}

/* =========================================================================
   7. FOOTER & CTA BANNER
   ========================================================================= */
.site-footer {
    background-color: #0c0604;
    position: relative;
    border-top: 1px solid rgba(197, 148, 83, 0.1);
}

.footer-cta-banner {
    position: relative;
    padding: 100px 24px;
    text-align: center;
    overflow: hidden;
    background-image: radial-gradient(circle at 50% 100%, #20130c 0%, #0c0604 80%);
}

.footer-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-gold);
    opacity: 0.3;
}

.sparkles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    color: var(--color-gold-light);
    font-size: 1.2rem;
    opacity: 0.3;
    animation: blink 2.5s infinite alternate;
}

.sparkle-1 { top: 20%; left: 15%; animation-delay: 0s; }
.sparkle-2 { top: 70%; left: 25%; animation-delay: 0.5s; }
.sparkle-3 { top: 30%; right: 20%; animation-delay: 1s; }
.sparkle-4 { top: 80%; right: 15%; animation-delay: 1.5s; }

.footer-crown {
    margin-bottom: 15px;
}

.footer-crown-svg,
.age-gate-crown-svg {
    height: 48px;
    width: auto;
    display: block;
}

.footer-cta-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
    background: linear-gradient(to right, #fff, var(--color-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-cta-subtitle {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 24px;
}

.footer-bottom-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-logo-img {
    height: 42px;
    width: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto 5px auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-gold-light);
}

.footer-links .divider {
    color: rgba(223, 203, 181, 0.2);
}

.copyright {
    font-size: 0.75rem;
    color: rgba(223, 203, 181, 0.4);
}

/* =========================================================================
   8. LIGHTBOX MODAL
   ========================================================================= */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 5, 2, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 90%;
    max-width: 1400px;
    height: 80vh;
    animation: scaleIn 0.35s ease-out;
}

.lightbox-content {
    flex: 1;
    max-height: 100%;
    position: relative;
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-glow-intense);
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 75%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.lightbox-previews-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100px;
    flex-shrink: 0;
    text-align: center;
}

.sidebar-title {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold-light);
    margin-bottom: 5px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.preview-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.preview-item {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(197, 148, 83, 0.2);
    aspect-ratio: 4/5;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: var(--color-bg-card);
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.preview-item:hover {
    transform: scale(1.08) translateX(6px);
    border-color: var(--color-gold-light);
    box-shadow: 0 6px 18px rgba(242, 208, 154, 0.35);
}

@media (max-width: 992px) {
    .lightbox-previews-sidebar {
        display: none;
    }
    .lightbox-content {
        max-width: 100%;
    }
}

.lightbox-btn {
    position: absolute;
    background: rgba(28, 17, 10, 0.6);
    border: 1px solid var(--color-border);
    color: #fff;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10005;
}

.lightbox-btn:hover {
    background: var(--gradient-gold);
    color: var(--color-text-dark);
    border-color: var(--color-gold-light);
    box-shadow: var(--shadow-glow);
}

.lightbox-btn-close {
    top: 30px;
    right: 30px;
}

.lightbox-btn-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-btn-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}



/* =========================================================================
   ANIMATIONS
   ========================================================================= */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulseGlow {
    0%, 100% { border-color: var(--color-border); box-shadow: 0 0 0 rgba(0,0,0,0); }
    50% { border-color: var(--color-gold-light); box-shadow: 0 0 15px rgba(242, 208, 154, 0.2); }
}

@keyframes goldGlow {
    0%, 100% { filter: drop-shadow(0 0 2px rgba(242, 208, 154, 0.3)); }
    50% { filter: drop-shadow(0 0 8px rgba(242, 208, 154, 0.8)); }
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    14% { transform: scale(1.12); }
    28% { transform: scale(1); }
    42% { transform: scale(1.12); }
    70% { transform: scale(1); }
}

@keyframes smoothPulse {
    0%, 100% {
        opacity: 0.45;
        transform: scale(0.92);
    }
    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

@keyframes blink {
    from { opacity: 0.2; transform: scale(0.8); }
    to { opacity: 0.8; transform: scale(1.2); }
}

/* =========================================================================
   RESPONSIVE DESIGN
   ========================================================================= */

/* Desktop Extra/Medium */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 5.5rem;
    }
    .platforms-container {
        gap: 30px;
    }
}

/* Tablet Layout */
@media (max-width: 992px) {
    .hero-section {
        background-image: linear-gradient(to bottom, rgba(19, 10, 6, 0.95) 0%, rgba(19, 10, 6, 0.75) 60%, rgba(19, 10, 6, 0.98) 100%), url('assets/hero-bg.jpg');
        background-position: 70% center;
        text-align: center;
        min-height: 80vh;
    }
    .hero-container {
        justify-content: center;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-subtext {
        justify-content: center;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .platforms-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .platforms-right {
        order: -1;
    }
    .values-container {
        grid-template-columns: 1fr;
        gap: 65px;
        max-width: 500px;
        margin-top: 30px;
    }
}

/* Mobile Layout */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
    }
    .logo-img {
        height: 29px;
    }
    .header-actions .btn,
    .header-actions .nav-dropdown-wrapper:not(.lang-dropdown-wrapper),
    .header-actions .header-icon-btn {
        display: none !important;
    }
    .header-actions .lang-dropdown-wrapper {
        display: inline-block !important;
        margin-right: 5px;
    }
    .header-actions .mobile-lang-dropdown {
        display: inline-block !important;
    }
    .mobile-lang-toggle {
        padding: 0 10px;
    }
    .mobile-lang-dropdown .nav-submenu-list {
        left: auto;
        right: 0;
        top: 45px;
        min-width: 130px;
    }
    .mobile-lang-dropdown.active .nav-submenu-list {
        transform: translateY(5px) !important;
    }
    .mobile-like-btn {
        display: inline-flex !important;
    }
    .hero-title {
        font-size: 5rem;
    }
    .hero-section {
        padding-top: 140px;
    }

    .footer-cta-title {
        font-size: 1.7rem;
        line-height: 1.35;
        letter-spacing: 0.5px;
    }
    .lightbox-btn {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    .lightbox-btn-prev { left: 10px; }
    .lightbox-btn-next { right: 10px; }
    .lightbox-btn-close { top: 15px; right: 15px; }

    /* Mobile Linktree Hero Styles */
    .mobile-hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        position: relative;
    }
    
    .hero-container {
        display: none !important;
    }
    
    .hero-section {
        background-image: none !important;
        padding: 0 0 50px 0 !important;
        background-color: #0c0604 !important;
        min-height: auto !important;
    }
    
    .mobile-hero-photo-wrapper {
        width: 100%;
        height: 52vh;
        position: relative;
        overflow: hidden;
    }
    
    .mobile-hero-photo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 20%;
    }
    
    .mobile-hero-fade {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 55%;
        background: linear-gradient(to bottom, rgba(12, 6, 4, 0) 0%, rgba(12, 6, 4, 0.4) 30%, rgba(12, 6, 4, 0.85) 75%, #0c0604 100%);
    }
    
    .mobile-hero-content {
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: -35px;
        position: relative;
        z-index: 3;
    }
    
    .mobile-hero-brand {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .mobile-hero-brand .emoji {
        font-size: 1.4rem;
        color: #9c27b0;
        animation: heartBeat 2s infinite ease-in-out;
    }
    
    .mobile-hero-logo {
        height: 68px;
        width: auto;
    }
    
    .mobile-hero-content .creator-badge {
        margin-bottom: 20px;
        padding: 6px 16px;
        font-size: 0.65rem;
        letter-spacing: 2px;
    }
    
    .mobile-hero-tagline {
        font-size: 0.85rem;
        color: rgba(223, 203, 181, 0.8);
        margin-bottom: 25px;
        font-weight: 300;
        font-style: normal;
        line-height: 1.5;
        text-align: center;
        max-width: 320px;
    }
    
    .mobile-links-stack {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
        max-width: 480px;
    }
    
    .mobile-link-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 50px;
        padding: 10px 18px;
        color: #dfcbb5;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    
    .mobile-link-item:hover,
    .mobile-link-item:active {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(197, 148, 83, 0.3);
        transform: scale(1.02);
        box-shadow: 0 4px 15px rgba(197, 148, 83, 0.1);
    }
    
    .mobile-link-left {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    
    .mobile-link-icon {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.15rem;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    }
    
    .ig-icon-bg { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
    .tt-icon-bg { background-color: #000000; border: 1px solid rgba(255,255,255,0.2); }
    .of-icon-bg { background-color: #0088cc; }
    .sc-icon-bg { background-color: #e91e63; }
    .cb-icon-bg { background-color: #ff8800; }

    .mobile-logo-svg {
        width: 18px;
        height: 18px;
        object-fit: contain;
        display: block;
        filter: brightness(0) invert(1);
    }
    
    .mobile-link-name {
        font-size: 0.95rem;
        font-weight: 500;
        letter-spacing: 0.5px;
        color: #dfcbb5;
        white-space: nowrap;
    }
    
    .mobile-link-item i.ph-arrow-up-right {
        color: rgba(223, 203, 181, 0.45);
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }
    
    .mobile-link-item:hover i.ph-arrow-up-right {
        color: var(--color-gold-light);
        transform: translate(2px, -2px);
    }
    
    .platforms-section {
        display: block !important;
        padding: 50px 0;
    }
    
    .platforms-left {
        display: none !important;
    }
    
    .platforms-right {
        display: flex !important;
        width: 100%;
    }
    
    .platforms-photo-card {
        margin: 0 auto;
        width: 100%;
        max-width: 420px;
    }
    
    .card-like-badge {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }
    .age-gate-card {
        padding: 30px 20px;
    }
    .age-gate-logo {
        font-size: 2.8rem;
    }
}
