/* ============================================
   CSS VARIABLES & ROOT
   ============================================ */
:root {
    --primary: #0a0a0a;
    --primary-light: #141414;
    --primary-medium: #1a1a1a;
    --secondary: #f5f0e0;
    --secondary-dark: #e8e0c8;
    --accent: #d4af37;
    --accent-light: #e6c84d;
    --accent-dark: #b8941f;
    --accent-glow: rgba(212, 175, 55, 0.3);
    --cream: #faf6eb;
    --cream-dark: #f0ead4;
    --text-dark: #1a1a1a;
    --text-light: #f5f0e0;
    --text-muted: #999;
    --text-muted-light: #bbb;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f5d76e 50%, #d4af37 100%);
    --dark-gradient: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    --cream-gradient: linear-gradient(180deg, #faf6eb 0%, #f5f0e0 100%);

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Cormorant Garamond', Georgia, serif;
    --font-accent: 'Josefin Sans', 'Trebuchet MS', sans-serif;

    --header-height: 80px;
    --container-max: 1200px;
    --container-padding: 24px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.25);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.35);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.2);

    --transition-fast: 0.2s ease;
    --transition-med: 0.4s ease;
    --transition-slow: 0.6s ease;

    --border-radius-sm: 2px;
    --border-radius-md: 4px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    background-color: var(--primary);
    overflow-x: hidden;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-light);
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

::selection {
    background: var(--accent);
    color: var(--primary);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* ============================================
   GOLD DIVIDERS
   ============================================ */
.gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
}

.gold-divider .divider-wing {
    display: block;
    width: 80px;
    height: 1px;
    background: var(--gold-gradient);
}

.gold-divider .divider-wing.left {
    background: linear-gradient(90deg, transparent, var(--accent));
}

.gold-divider .divider-wing.right {
    background: linear-gradient(90deg, var(--accent), transparent);
}

.gold-divider .divider-center {
    color: var(--accent);
    font-size: 0.5rem;
}

.gold-divider-small {
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 16px auto;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light .section-tag,
.section-header.light .section-title {
    color: var(--secondary);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--text-muted-light);
    max-width: 600px;
    margin: 16px auto 0;
    line-height: 1.7;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid transparent;
    transition: all var(--transition-med);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--primary);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-light);
    color: var(--primary);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--primary);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 0.95rem;
}

.btn-block {
    width: 100%;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--primary-light);
    border-top: 2px solid var(--accent);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.5);
}

.cookie-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 20px var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
    min-width: 280px;
}

.cookie-icon {
    color: var(--accent);
    font-size: 1.5rem;
    margin-top: 2px;
}

.cookie-text p {
    font-size: 0.95rem;
    color: var(--text-muted-light);
    margin-bottom: 4px;
    line-height: 1.5;
}

.cookie-text strong {
    color: var(--secondary);
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-cookie-accept {
    padding: 10px 24px;
    background: var(--gold-gradient);
    color: var(--primary);
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--accent);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-cookie-accept:hover {
    background: var(--accent-light);
    box-shadow: var(--shadow-gold);
}

.btn-cookie-necessary {
    padding: 10px 24px;
    background: transparent;
    color: var(--accent);
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--accent);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-cookie-necessary:hover {
    background: rgba(212, 175, 55, 0.1);
}

.btn-cookie-settings {
    padding: 10px 24px;
    background: transparent;
    color: var(--text-muted-light);
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-cookie-settings:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.cookie-settings-panel {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding) 20px;
}

.cookie-setting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cookie-setting-row div:first-child {
    flex: 1;
}

.cookie-setting-row strong {
    color: var(--secondary);
    font-size: 0.95rem;
}

.cookie-setting-row p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 2px;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: var(--transition-fast);
    border-radius: 26px;
}

.toggle-slider::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: #fff;
    transition: var(--transition-fast);
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--accent);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(24px);
}

.toggle-switch.disabled {
    opacity: 0.6;
}

.toggle-switch.disabled .toggle-slider {
    cursor: not-allowed;
}

/* ============================================
   AGE VERIFICATION MODAL
   ============================================ */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(8px);
}

.age-modal-content {
    background: var(--primary-light);
    border: 2px solid var(--accent);
    max-width: 480px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.age-modal-deco-top,
.age-modal-deco-bottom {
    height: 8px;
    background: var(--gold-gradient);
}

.age-modal-inner {
    padding: 48px 40px;
    text-align: center;
}

.age-icon-container {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent);
    transform: rotate(45deg);
}

.age-icon-container i {
    font-size: 1.8rem;
    color: var(--accent);
    transform: rotate(-45deg);
}

.age-modal-inner h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.age-modal-inner p {
    color: var(--text-muted-light);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.age-subtext {
    font-size: 0.9rem !important;
    color: var(--text-muted) !important;
    margin-bottom: 32px !important;
}

.age-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-age-yes {
    padding: 14px 36px;
    background: var(--gold-gradient);
    color: var(--primary);
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--accent);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-age-yes:hover {
    background: var(--accent-light);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-age-no {
    padding: 14px 36px;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-age-no:hover {
    border-color: #ff4444;
    color: #ff4444;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    transition: all var(--transition-med);
}

.main-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header-deco-line {
    height: 2px;
    background: var(--gold-gradient);
    opacity: 0.6;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon svg {
    display: block;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted-light);
    padding: 8px 16px;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-med);
}

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

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

.nav-cta {
    background: var(--gold-gradient);
    color: var(--primary) !important;
    padding: 10px 24px;
    font-weight: 700;
    margin-left: 8px;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--accent);
    transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + 40px) 0 80px;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 60px,
            rgba(212, 175, 55, 0.03) 60px,
            rgba(212, 175, 55, 0.03) 61px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 60px,
            rgba(212, 175, 55, 0.03) 60px,
            rgba(212, 175, 55, 0.03) 61px
        );
    z-index: 0;
}

.hero-sunburst {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(212, 175, 55, 0.04) 10deg,
        transparent 20deg,
        transparent 30deg,
        rgba(212, 175, 55, 0.04) 40deg,
        transparent 50deg,
        transparent 60deg,
        rgba(212, 175, 55, 0.04) 70deg,
        transparent 80deg,
        transparent 90deg,
        rgba(212, 175, 55, 0.04) 100deg,
        transparent 110deg,
        transparent 120deg,
        rgba(212, 175, 55, 0.04) 130deg,
        transparent 140deg,
        transparent 150deg,
        rgba(212, 175, 55, 0.04) 160deg,
        transparent 170deg,
        transparent 180deg,
        rgba(212, 175, 55, 0.04) 190deg,
        transparent 200deg,
        transparent 210deg,
        rgba(212, 175, 55, 0.04) 220deg,
        transparent 230deg,
        transparent 240deg,
        rgba(212, 175, 55, 0.04) 250deg,
        transparent 260deg,
        transparent 270deg,
        rgba(212, 175, 55, 0.04) 280deg,
        transparent 290deg,
        transparent 300deg,
        rgba(212, 175, 55, 0.04) 310deg,
        transparent 320deg,
        transparent 330deg,
        rgba(212, 175, 55, 0.04) 340deg,
        transparent 350deg,
        transparent 360deg
    );
    border-radius: 50%;
    z-index: 0;
    animation: sunburstRotate 120s linear infinite;
}

@keyframes sunburstRotate {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 30%, var(--primary) 80%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 24px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.08);
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease forwards;
    opacity: 0;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.badge-diamond {
    color: var(--accent);
    font-size: 0.75rem;
}

.badge-text {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
}

.hero-title {
    margin-bottom: 24px;
}

.title-line {
    display: block;
    font-family: var(--font-display);
    color: var(--secondary);
    line-height: 1.1;
    opacity: 0;
    animation: titleReveal 0.8s ease forwards;
}

.title-line-1 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    animation-delay: 0.2s;
}

.title-line-2 {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.4s;
    line-height: 1;
    padding: 8px 0;
}

.title-line-3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    animation-delay: 0.6s;
}

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

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 24px 0;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.8s forwards;
}

.hero-divider .divider-wing {
    width: 120px;
    height: 1px;
}

.hero-divider .divider-wing.left {
    background: linear-gradient(90deg, transparent, var(--accent));
}

.hero-divider .divider-wing.right {
    background: linear-gradient(90deg, var(--accent), transparent);
}

.hero-divider .divider-diamond {
    color: var(--accent);
    font-size: 0.6rem;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted-light);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeIn 0.8s ease 1s forwards;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeIn 0.8s ease 1.2s forwards;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    animation: fadeIn 0.8s ease 1.4s forwards;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.2;
}

.stat-label {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(212, 175, 55, 0.3);
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    opacity: 0;
    animation: fadeIn 0.8s ease 1.6s forwards;
}

.scroll-text {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.scroll-arrow {
    color: var(--accent);
    animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

/* Hero Deco Corners */
.hero-deco-corner {
    position: absolute;
    width: 80px;
    height: 80px;
    z-index: 2;
}

.hero-deco-corner::before,
.hero-deco-corner::after {
    content: '';
    position: absolute;
    background: var(--accent);
    opacity: 0.3;
}

.hero-deco-corner.top-left { top: 100px; left: 30px; }
.hero-deco-corner.top-left::before { top: 0; left: 0; width: 40px; height: 1px; }
.hero-deco-corner.top-left::after { top: 0; left: 0; width: 1px; height: 40px; }

.hero-deco-corner.top-right { top: 100px; right: 30px; }
.hero-deco-corner.top-right::before { top: 0; right: 0; width: 40px; height: 1px; }
.hero-deco-corner.top-right::after { top: 0; right: 0; width: 1px; height: 40px; }

.hero-deco-corner.bottom-left { bottom: 30px; left: 30px; }
.hero-deco-corner.bottom-left::before { bottom: 0; left: 0; width: 40px; height: 1px; }
.hero-deco-corner.bottom-left::after { bottom: 0; left: 0; width: 1px; height: 40px; }

.hero-deco-corner.bottom-right { bottom: 30px; right: 30px; }
.hero-deco-corner.bottom-right::before { bottom: 0; right: 0; width: 40px; height: 1px; }
.hero-deco-corner.bottom-right::after { bottom: 0; right: 0; width: 1px; height: 40px; }

/* ============================================
   TICKER SECTION
   ============================================ */
.ticker-section {
    background: var(--primary-medium);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    overflow: hidden;
    padding: 14px 0;
}

.ticker-wrapper {
    overflow: hidden;
    position: relative;
}

.ticker-wrapper::before,
.ticker-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.ticker-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--primary-medium), transparent);
}

.ticker-wrapper::after {
    right: 0;
    background: linear-gradient(90deg, transparent, var(--primary-medium));
}

.ticker-track {
    display: flex;
    gap: 60px;
    animation: tickerScroll 40s linear infinite;
    width: max-content;
}

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    color: var(--text-muted-light);
    letter-spacing: 1px;
}

.ticker-item i {
    color: var(--accent);
    font-size: 0.7rem;
}

.ticker-item strong {
    color: var(--accent);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 100px 0;
    background: var(--cream-gradient);
    position: relative;
}

.about-section .section-title {
    color: var(--text-dark);
}

.about-section .section-tag {
    color: var(--accent-dark);
}

.about-section .section-desc {
    color: #666;
}

.section-deco-top,
.section-deco-bottom {
    text-align: center;
    padding: 0 0 20px;
}

.section-deco-bottom {
    padding: 20px 0 0;
}

.deco-chevron-row {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.chevron {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(-135deg);
    opacity: 0.4;
}

.chevron.flip {
    transform: rotate(45deg);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.about-card {
    position: relative;
}

.about-card-frame {
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition-med);
    position: relative;
    height: 100%;
}

.about-card-frame::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
}

.about-card-frame:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

.about-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid var(--accent);
    transform: rotate(45deg);
}

.about-card-icon i {
    font-size: 1.6rem;
    color: var(--accent-dark);
    transform: rotate(-45deg);
    position: relative;
    z-index: 1;
}

.icon-bg-pattern {
    position: absolute;
    inset: 4px;
    background: rgba(212, 175, 55, 0.08);
}

.about-card-frame h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.about-card-frame p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 100px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.features-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 80px,
            rgba(212, 175, 55, 0.015) 80px,
            rgba(212, 175, 55, 0.015) 81px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 80px,
            rgba(212, 175, 55, 0.015) 80px,
            rgba(212, 175, 55, 0.015) 81px
        );
}

.features-showcase {
    position: relative;
    z-index: 1;
}

.feature-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 40px 0;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse > * {
    direction: ltr;
}

.feature-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.15);
    line-height: 1;
    min-width: 80px;
    text-align: center;
}

.feature-content h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.feature-content p {
    color: var(--text-muted-light);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 500px;
}

.feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-large {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    transform: rotate(45deg);
}

.feature-icon-large::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.feature-icon-large i {
    font-size: 1.8rem;
    color: var(--accent);
    transform: rotate(-45deg);
}

.feature-divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: 100px 0;
    background: var(--cream-gradient);
}

.gallery-section .section-title {
    color: var(--text-dark);
}

.gallery-section .section-tag {
    color: var(--accent-dark);
}

.gallery-section .section-desc {
    color: #666;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.gallery-item.gallery-large {
    grid-row: span 2;
}

.gallery-item.gallery-wide {
    grid-column: span 2;
}

.gallery-visual {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
}

.gallery-large .gallery-visual {
    padding-bottom: 100%;
}

.gallery-wide .gallery-visual {
    padding-bottom: 50%;
}

/* Art Deco pattern backgrounds for gallery items */
.visual-1 {
    background:
        linear-gradient(135deg, #1a1a1a 25%, transparent 25%),
        linear-gradient(225deg, #1a1a1a 25%, transparent 25%),
        linear-gradient(315deg, #1a1a1a 25%, transparent 25%),
        linear-gradient(45deg, #1a1a1a 25%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.3) 0%, rgba(10, 10, 10, 0.9) 70%);
    background-color: #0d0d0d;
}

.visual-2 {
    background:
        conic-gradient(from 0deg at 50% 50%, var(--accent-dark) 0deg, #1a1a1a 30deg, var(--accent-dark) 60deg, #1a1a1a 90deg, var(--accent-dark) 120deg, #1a1a1a 150deg, var(--accent-dark) 180deg, #1a1a1a 210deg, var(--accent-dark) 240deg, #1a1a1a 270deg, var(--accent-dark) 300deg, #1a1a1a 330deg, var(--accent-dark) 360deg);
    opacity: 0.85;
}

.visual-3 {
    background:
        repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(212, 175, 55, 0.1) 20px, rgba(212, 175, 55, 0.1) 21px),
        repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(212, 175, 55, 0.1) 20px, rgba(212, 175, 55, 0.1) 21px),
        linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

.visual-4 {
    background:
        radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(184, 148, 31, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, #0d0d0d, #1a1a1a);
}

.visual-5 {
    background:
        repeating-linear-gradient(60deg, transparent, transparent 30px, rgba(212, 175, 55, 0.05) 30px, rgba(212, 175, 55, 0.05) 31px),
        repeating-linear-gradient(-60deg, transparent, transparent 30px, rgba(212, 175, 55, 0.05) 30px, rgba(212, 175, 55, 0.05) 31px),
        linear-gradient(180deg, #0a0a0a, #141414);
}

.gallery-pattern {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(212, 175, 55, 0.03) 10px,
        rgba(212, 175, 55, 0.03) 11px
    );
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
}

.label-tag {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
}

.label-title {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
}

.gallery-item:hover .gallery-visual {
    transform: scale(1.02);
}

.gallery-item .gallery-visual {
    transition: transform var(--transition-slow);
}

/* ============================================
   SOCIAL PROOF / COUNTERS SECTION
   ============================================ */
.social-proof-section {
    padding: 80px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.proof-bg-pattern {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
}

.proof-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.proof-item {
    text-align: center;
    min-width: 160px;
}

.proof-icon {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.proof-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
}

.proof-label {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

.proof-separator {
    width: 1px;
    height: 60px;
    background: linear-gradient(transparent, rgba(212, 175, 55, 0.3), transparent);
}

/* Live Activity Feed */
.live-feed-container {
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    z-index: 1;
}

.live-feed-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted-light);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #44cc44;
    animation: livePulse 2s ease infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.live-feed {
    max-height: 200px;
    overflow: hidden;
}

.live-feed-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.9rem;
    animation: feedSlideIn 0.5s ease forwards;
    opacity: 0;
}

@keyframes feedSlideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.live-feed-item i {
    color: var(--accent);
    font-size: 0.8rem;
    width: 20px;
    text-align: center;
}

.live-feed-item .feed-name {
    color: var(--accent);
    font-weight: 600;
}

.live-feed-item .feed-action {
    color: var(--text-muted-light);
}

.live-feed-item .feed-time {
    margin-left: auto;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    white-space: nowrap;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 100px 0;
    background: var(--cream-gradient);
}

.testimonials-section .section-title {
    color: var(--text-dark);
}

.testimonials-section .section-tag {
    color: var(--accent-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    position: relative;
}

.testimonial-frame {
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 36px 30px;
    position: relative;
    height: 100%;
    transition: all var(--transition-med);
}

.testimonial-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}

.testimonial-frame:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--accent);
    font-size: 0.9rem;
    margin-right: 2px;
}

.testimonial-frame blockquote {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-style: italic;
    color: #444;
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid var(--accent);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent);
    transform: rotate(45deg);
}

.author-avatar i {
    color: var(--accent);
    font-size: 0.9rem;
    transform: rotate(-45deg);
}

.author-info strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-dark);
}

.author-info span {
    font-size: 0.85rem;
    color: #888;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 100px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.faq-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 40%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    border: 1px solid rgba(212, 175, 55, 0.15);
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.02);
    transition: all var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.35);
}

.faq-item.active {
    border-color: var(--accent);
    background: rgba(212, 175, 55, 0.05);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 20px 24px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-q-icon {
    color: var(--accent);
    font-size: 0.5rem;
    flex-shrink: 0;
}

.faq-question span:nth-child(2) {
    flex: 1;
}

.faq-arrow {
    color: var(--accent);
    transition: transform var(--transition-med);
    flex-shrink: 0;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-med), padding var(--transition-med);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px 52px;
    color: var(--text-muted-light);
    font-size: 1rem;
    line-height: 1.7;
}

.faq-answer a {
    color: var(--accent);
    text-decoration: underline;
}

/* ============================================
   SIGNUP SECTION
   ============================================ */
.signup-section {
    padding: 100px 0;
    background: var(--cream-gradient);
    position: relative;
    overflow: hidden;
}

.signup-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            120deg,
            transparent,
            transparent 100px,
            rgba(212, 175, 55, 0.03) 100px,
            rgba(212, 175, 55, 0.03) 101px
        );
}

.signup-section .section-title {
    color: var(--text-dark);
}

.signup-section .section-tag {
    color: var(--accent-dark);
}

.signup-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.signup-info {
    padding-top: 20px;
}

.signup-info p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.signup-benefits {
    margin-bottom: 40px;
}

.signup-benefits li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    font-size: 1rem;
    color: #444;
}

.benefit-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent);
    color: var(--accent-dark);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.signup-counter {
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 24px;
}

.counter-label {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 8px;
}

.counter-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-dark);
    line-height: 1.2;
    margin-bottom: 12px;
}

.counter-bar {
    height: 6px;
    background: var(--secondary-dark);
    overflow: hidden;
}

.counter-bar-fill {
    height: 100%;
    background: var(--gold-gradient);
    transition: width 1.5s ease;
}

/* Form Container */
.signup-form-container {
    position: relative;
}

.form-frame {
    background: #fff;
    border: 2px solid var(--accent);
    padding: 48px 40px;
    position: relative;
}

.form-frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
}

.form-frame-corner::before,
.form-frame-corner::after {
    content: '';
    position: absolute;
    background: var(--accent);
}

.form-frame-corner.tl { top: -2px; left: -2px; }
.form-frame-corner.tl::before { top: 0; left: 0; width: 20px; height: 3px; }
.form-frame-corner.tl::after { top: 0; left: 0; width: 3px; height: 20px; }

.form-frame-corner.tr { top: -2px; right: -2px; }
.form-frame-corner.tr::before { top: 0; right: 0; width: 20px; height: 3px; }
.form-frame-corner.tr::after { top: 0; right: 0; width: 3px; height: 20px; }

.form-frame-corner.bl { bottom: -2px; left: -2px; }
.form-frame-corner.bl::before { bottom: 0; left: 0; width: 20px; height: 3px; }
.form-frame-corner.bl::after { bottom: 0; left: 0; width: 3px; height: 20px; }

.form-frame-corner.br { bottom: -2px; right: -2px; }
.form-frame-corner.br::before { bottom: 0; right: 0; width: 20px; height: 3px; }
.form-frame-corner.br::after { bottom: 0; right: 0; width: 3px; height: 20px; }

.signup-form h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 4px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 8px;
}

.required {
    color: #cc3333;
}

.optional {
    color: #999;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 0.9rem;
}

.input-wrapper input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: var(--cream);
    color: var(--text-dark);
    font-size: 1rem;
    transition: all var(--transition-fast);
    outline: none;
}

.input-wrapper input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.input-wrapper input::placeholder {
    color: #aaa;
}

.field-error {
    display: block;
    font-size: 0.8rem;
    color: #cc3333;
    margin-top: 4px;
    min-height: 0;
}

/* Checkbox */
.checkbox-group {
    margin-bottom: 16px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    background: var(--cream);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--accent);
    border-color: var(--accent);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid var(--primary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.checkbox-label a {
    color: var(--accent-dark);
    text-decoration: underline;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: #999;
    margin-top: 16px;
}

.form-note i {
    color: var(--accent);
    margin-right: 6px;
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 3rem;
    color: #44aa44;
    margin-bottom: 20px;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.form-success p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 8px;
}

.success-detail {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-dark);
}

/* Form Error */
.form-error-msg {
    text-align: center;
    padding: 40px 20px;
}

.error-icon {
    font-size: 3rem;
    color: #cc3333;
    margin-bottom: 20px;
}

.form-error-msg h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.form-error-msg p {
    color: #555;
    margin-bottom: 20px;
}

/* ============================================
   RESPONSIBLE GAMING SECTION
   ============================================ */
.responsible-section {
    padding: 60px 0;
    background: var(--primary-medium);
}

.responsible-banner {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 32px 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.03);
    flex-wrap: wrap;
}

.responsible-icon {
    font-size: 2.5rem;
    color: var(--accent);
    flex-shrink: 0;
}

.responsible-content {
    flex: 1;
    min-width: 280px;
}

.responsible-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.responsible-content p {
    color: var(--text-muted-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.responsible-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.resp-link {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 6px;
}

.resp-link:hover {
    color: var(--accent-light);
}

.responsible-badge {
    flex-shrink: 0;
}

.age-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 3px solid var(--accent);
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--accent);
    border-radius: 50%;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--primary);
    padding-top: 20px;
}

.footer-deco-top {
    text-align: center;
    padding-bottom: 40px;
}

.deco-line-full {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.deco-diamond-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 12px 0;
}

.deco-diamond {
    color: var(--accent);
    font-size: 0.4rem;
    opacity: 0.5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.footer-tagline {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links-col h4,
.footer-contact-col h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links-col h4::after,
.footer-contact-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-links-col ul li {
    margin-bottom: 10px;
}

.footer-links-col ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-links-col ul li a:hover {
    color: var(--accent);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-list li i {
    color: var(--accent);
    margin-top: 4px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.contact-list li a {
    color: var(--text-muted);
}

.contact-list li a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 20px;
}

.footer-bottom-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 12px;
}

.age-badge-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 900;
    color: var(--accent);
}

.footer-badge {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-badge i {
    color: var(--accent);
}

.footer-deco-bottom {
    padding-top: 20px;
}

.deco-zigzag {
    height: 8px;
    background: var(--gold-gradient);
    clip-path: polygon(
        0% 100%,
        2% 0%, 4% 100%, 6% 0%, 8% 100%, 10% 0%, 12% 100%, 14% 0%, 16% 100%, 18% 0%,
        20% 100%, 22% 0%, 24% 100%, 26% 0%, 28% 100%, 30% 0%, 32% 100%, 34% 0%, 36% 100%, 38% 0%,
        40% 100%, 42% 0%, 44% 100%, 46% 0%, 48% 100%, 50% 0%, 52% 100%, 54% 0%, 56% 100%, 58% 0%,
        60% 100%, 62% 0%, 64% 100%, 66% 0%, 68% 100%, 70% 0%, 72% 100%, 74% 0%, 76% 100%, 78% 0%,
        80% 100%, 82% 0%, 84% 100%, 86% 0%, 88% 100%, 90% 0%, 92% 100%, 94% 0%, 96% 100%, 98% 0%,
        100% 100%
    );
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: var(--primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-med);
    transform: rotate(45deg);
}

.back-to-top i {
    transform: rotate(-45deg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-light);
    box-shadow: var(--shadow-gold);
    transform: rotate(45deg) translateY(-4px);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero {
    padding: calc(var(--header-height) + 60px) 0 60px;
    background: var(--primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero-pattern {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(212, 175, 55, 0.03) 40px,
            rgba(212, 175, 55, 0.03) 41px
        );
}

.legal-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--secondary);
    position: relative;
    z-index: 1;
}

.legal-hero p {
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.legal-section {
    padding: 60px 0 100px;
    background: var(--cream-gradient);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 60px 50px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.legal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    color: #444;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
    margin: 12px 0 16px 24px;
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 6px;
}

.legal-content a {
    color: var(--accent-dark);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--accent);
}

.legal-footer-note {
    margin-top: 48px;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.legal-footer-note p {
    color: #888;
    font-size: 0.9rem;
}

/* GDPR Table */
.gdpr-cookie-table {
    overflow-x: auto;
    margin: 16px 0 24px;
}

.gdpr-cookie-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.gdpr-cookie-table th {
    background: var(--primary);
    color: var(--accent);
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 16px;
    text-align: left;
}

.gdpr-cookie-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    color: #444;
}

.gdpr-cookie-table tr:nth-child(even) td {
    background: rgba(212, 175, 55, 0.04);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-scale {
    transform: scale(0.92);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed {
    opacity: 1;
    transform: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .signup-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-row {
        grid-template-columns: auto 1fr;
        gap: 24px;
    }

    .feature-visual {
        display: none;
    }

    .feature-row.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
        --container-padding: 20px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        align-items: stretch;
        padding: 100px 30px 30px;
        gap: 0;
        transition: right var(--transition-med);
        border-left: 2px solid var(--accent);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        padding: 16px 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        font-size: 0.9rem;
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta {
        margin: 16px 0 0;
        text-align: center;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 1.8rem;
    }

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

    .gallery-item.gallery-large {
        grid-row: span 1;
    }

    .gallery-item.gallery-wide {
        grid-column: span 2;
    }

    .proof-grid {
        gap: 24px;
    }

    .proof-separator {
        display: none;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .form-frame {
        padding: 36px 24px;
    }

    .legal-content {
        padding: 40px 24px;
    }

    .responsible-banner {
        padding: 24px;
        gap: 20px;
    }

    .cookie-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        justify-content: stretch;
    }

    .cookie-buttons button {
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-group .btn {
        width: 100%;
        max-width: 300px;
    }

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

    .gallery-item.gallery-wide {
        grid-column: span 1;
    }

    .age-buttons {
        flex-direction: column;
    }

    .age-modal-inner {
        padding: 36px 24px;
    }

    .proof-item {
        min-width: 120px;
    }

    .proof-number {
        font-size: 2rem;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-number {
        font-size: 2.5rem;
        text-align: left;
    }
}

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-sunburst {
        animation: none;
    }

    .ticker-track {
        animation: none;
    }

    .reveal-up,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .main-header,
    .cookie-banner,
    .age-modal,
    .back-to-top,
    .hero-sunburst,
    .hero-bg-pattern,
    .ticker-section {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }
}
