/* RENEGADE ARMORY - CORE STYLES v7.0 */

:root {
    --bg-dark: #050505;
    --bg-panel: #111111;
    --text-main: #e0e0e0;
    --text-muted: #666;
    --accent: #ffffff;
    --border-color: #333;
    --nav-height: 80px;
    --top-bar-height: 40px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; overflow-x: hidden; position: relative; }
body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: var(--bg-dark); color: var(--text-main); }

.noise-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjMDAwIi8+CjxyZWN0IHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiLz4KPC9zdmc+');
    pointer-events: none; z-index: 999; opacity: 0.05;
}

/* HEADER WRAPPER */
.header-wrapper { position: fixed; top: 0; width: 100%; z-index: 1000; background: transparent; transition: background-color 0.3s ease; }
.header-wrapper.scrolled { background-color: rgba(5, 5, 5, 0.98); border-bottom: 1px solid #333; backdrop-filter: blur(10px); }

/* TOP UTILITY */
.top-utility-bar { height: var(--top-bar-height); display: flex; justify-content: flex-end; align-items: center; padding: 0 4rem; position: relative; z-index: 102; border-bottom: 1px solid rgba(255,255,255,0.1); background: #000; }
.utility-container { display: flex; gap: 2rem; }
.utility-link { color: var(--text-muted); text-decoration: none; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 0.5rem; font-weight: 600; transition: color 0.3s; cursor: pointer; }
.utility-link:hover { color: var(--accent); }
.utility-link svg { margin-bottom: 1px; }
.mobile-utility-wrapper { display: none; }

/* MAIN NAV */
.main-nav { height: var(--nav-height); display: flex; justify-content: space-between; align-items: center; padding: 0; position: relative; width: 100%; z-index: 101; background: rgba(5,5,5,0.9); }
.nav-logo { display: flex; align-items: center; height: 100%; padding-left: 2rem; }
.nav-logo img { height: 60px; width: auto; opacity: 0.9; transition: opacity 0.3s; }
.mobile-toggle { display: none; }
.menu-backdrop { display: none; }
.nav-menu { display: flex; list-style: none; gap: 3rem; margin-right: 2rem; }
.nav-item { position: relative; cursor: pointer; }
.nav-title { color: var(--text-main); text-transform: uppercase; letter-spacing: 2px; font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0; user-select: none; transition: color 0.2s; }
.nav-title:hover { color: var(--accent); }
.chevron { transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); opacity: 0.6; }
.nav-item.active .chevron { transform: rotate(-180deg); }

/* DROPDOWN */
.dropdown-menu { position: absolute; top: 100%; left: -20px; width: 240px; background: rgba(10,10,10, 0.98); border: 1px solid #333; padding: 0; overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, padding 0.4s ease; box-shadow: 0 20px 40px rgba(0,0,0,0.8); }
.nav-item:last-child .dropdown-menu, .nav-item:nth-last-child(2) .dropdown-menu { left: auto; right: 0; }
.nav-item.active .dropdown-menu { max-height: 400px; opacity: 1; padding: 1rem 0; }
.dropdown-menu a { display: block; color: #999; text-decoration: none; padding: 0.8rem 1.5rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; border-left: 2px solid transparent; transition: all 0.2s; white-space: nowrap; }
.dropdown-menu a:hover { background: #111; color: #fff; border-left: 2px solid #fff; padding-left: 2rem; }

/* SEARCH HUD */
.search-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(5, 5, 5, 0.98); z-index: 2000; display: flex; flex-direction: column; align-items: center; padding-top: 15vh; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.search-overlay.active { opacity: 1; pointer-events: auto; }
.search-close { position: absolute; top: 2rem; right: 4rem; color: #fff; font-size: 2rem; cursor: pointer; opacity: 0.5; transition: opacity 0.2s; }
.search-close:hover { opacity: 1; }
.search-container { width: 100%; max-width: 800px; position: relative; padding: 0 20px; }
.search-input { width: 100%; background: transparent; border: none; border-bottom: 2px solid #333; color: #fff; font-family: 'Courier New', monospace; font-size: 2.5rem; text-transform: uppercase; padding: 1rem 0; outline: none; transition: border-color 0.3s; }
.search-input:focus { border-color: #fff; }
.search-input::placeholder { color: #333; }
.search-results { margin-top: 2rem; width: 100%; max-height: 50vh; overflow-y: auto; }
.result-item { display: flex; align-items: center; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid #222; cursor: pointer; transition: background 0.2s; text-decoration: none; }
.result-item:hover { background: rgba(255,255,255,0.05); padding-left: 1rem; }
.result-thumb { width: 80px; height: 50px; background: #111; display: flex; align-items: center; justify-content: center; }
.result-thumb img { max-width: 90%; max-height: 90%; filter: grayscale(100%); }
.result-info { display: flex; flex-direction: column; }
.result-title { color: #fff; font-size: 1.2rem; text-transform: uppercase; font-weight: 700; }
.result-meta { color: #666; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

/* LAYOUT */
.hero { height: 100vh; display: flex; align-items: center; justify-content: center; background: #000; position: relative; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; filter: grayscale(100%) contrast(1.2); }
.hero-content { display: flex; flex-direction: column; align-items: center; gap: 3rem; z-index: 1; opacity: 0; transform: translateY(20px); width: 100%; transition: opacity 1.5s ease, transform 1.5s cubic-bezier(0.19, 1, 0.22, 1); }
.hero-content.visible { opacity: 1; transform: translateY(0); }
.main-logo { max-width: 900px; width: 90%; height: auto; filter: drop-shadow(0px 0px 20px rgba(0,0,0,0.8)); }
.motto { font-size: 1rem; text-transform: uppercase; letter-spacing: 14px; font-weight: 400; color: #fff; border-top: 1px solid rgba(255,255,255,0.3); border-bottom: 1px solid rgba(255,255,255,0.3); padding: 1.5rem 0; width: 60%; text-align: center; }
.cta-button { margin-top: 1rem; padding: 1.2rem 3.5rem; border: 1px solid rgba(255,255,255,0.4); color: var(--accent); text-decoration: none; text-transform: uppercase; letter-spacing: 4px; font-size: 0.8rem; font-weight: 700; transition: all 0.3s ease; background: rgba(0,0,0,0.3); backdrop-filter: blur(5px); }
.cta-button:hover { background: var(--accent); color: var(--bg-dark); border-color: var(--accent); box-shadow: 0 0 30px rgba(255,255,255,0.1); }

.category-header { height: 20vh; min-height: 150px; background: #111; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; border-bottom: 1px solid #333; margin-top: 120px; }
.header-text h1 { font-size: 3rem; text-transform: uppercase; font-weight: 900; color: #fff; margin-bottom: 1rem; letter-spacing: -1px; }
.header-text p { color: #888; text-transform: uppercase; letter-spacing: 4px; font-size: 0.8rem; font-weight: 700; }

.panel { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 6rem 4rem; position: relative; }
.panel.compact { min-height: auto; padding: 2rem 4rem; background: #fff; border-bottom: 1px solid #ddd; align-items: center; }
.panel.compact .section-header-row { margin-bottom: 0; width: 100%; align-items: center; }
.panel.compact h1 { font-size: 2.5rem; color: #000; }
.panel.short { min-height: auto; padding: 4rem 2rem; }
.dark { background-color: var(--bg-dark); }
.light { background-color: #f0f0f0; color: #0a0a0a; }
.content-wrapper { max-width: 1400px; width: 100%; position: relative; }

.manifesto-container { text-align: center; display: flex; flex-direction: column; align-items: center; }
.manifesto-line { font-size: 3.5rem; text-transform: uppercase; font-weight: 800; letter-spacing: -2px; line-height: 1.2; opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
.manifesto-container.visible .manifesto-line { opacity: 1; transform: translateY(0); }
.manifesto-container.visible .manifesto-line:nth-child(1) { transition-delay: 0.5s; }
.manifesto-container.visible .manifesto-line:nth-child(2) { transition-delay: 1.0s; }
.manifesto-container.visible .manifesto-line:nth-child(3) { transition-delay: 1.5s; }
.manifesto-line .brutal { color: #444; }
.sub-manifesto { display: block; margin-top: 3rem; font-size: 1.1rem; font-weight: 800; letter-spacing: 4px; color: var(--text-muted); opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; transition-delay: 2.0s; text-transform: uppercase; }
.manifesto-container.visible .sub-manifesto { opacity: 1; transform: translateY(0); }

/* PRODUCT CARD */
.section-header-row { margin-bottom: 4rem; display: flex; align-items: flex-end; gap: 2rem; }
.section-header-row h3 { font-size: 3rem; text-transform: uppercase; font-weight: 800; letter-spacing: -1px; line-height: 1; }
.header-line { flex-grow: 1; height: 2px; background: #ccc; margin-bottom: 0.8rem; }
.header-sub { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; color: #666; margin-bottom: 0.5rem; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 3rem; }
.product-card { background: #fff; border: 1px solid #ddd; display: flex; flex-direction: column; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s ease; text-decoration: none; color: inherit; opacity: 0; transform: translateY(50px); backface-visibility: hidden; }
.product-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.8s ease, transform 0.8s ease; }
.product-track .product-card { opacity: 1 !important; transform: none !important; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s ease !important; }
.product-card:hover, .product-card.mobile-focus { transform: translateY(-8px) scale(1.02) !important; box-shadow: 0 40px 80px rgba(0,0,0,0.1); z-index: 2; border-color: #bbb; }
.card-image { background: #e6e6e6; height: 250px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.card-image img { width: 90%; height: auto; object-fit: contain; mix-blend-mode: multiply; transition: transform 0.8s ease; }
.product-card:hover .card-image img, .product-card.mobile-focus .card-image img { transform: scale(1.05); }
.card-info { padding: 2rem; display: flex; flex-direction: column; flex-grow: 1; }
.card-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.5rem; }
.card-header h4 { font-size: 1.5rem; font-weight: 800; text-transform: uppercase; }
.price { font-weight: 700; color: #555; font-family: 'Courier New', monospace; }
.tagline { font-size: 0.85rem; text-transform: uppercase; color: #888; letter-spacing: 1px; margin-bottom: 1.5rem; font-weight: 600; }
.specs-list { list-style: none; margin-bottom: 2rem; flex-grow: 1; }
.specs-list li { font-size: 0.9rem; border-bottom: 1px solid #eee; padding: 0.5rem 0; color: #444; }
.specs-list strong { font-weight: 700; color: #000; margin-right: 0.5rem; }
.card-btn { width: 100%; padding: 1rem; background: #000; color: #fff; border: none; text-transform: uppercase; font-weight: 700; letter-spacing: 2px; cursor: pointer; font-size: 0.8rem; transition: background 0.2s; }
.card-btn:hover { background: #333; }

/* SPLIT PANEL */
.split-panel { display: flex; padding: 0; min-height: 70vh; }
.split-image { flex: 1; background: #111; position: relative; overflow: hidden; }
.split-image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; filter: grayscale(100%); }
.split-content { flex: 1; padding: 6rem; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid #222; opacity: 0; transform: translateY(20px); }
.split-content.visible { opacity: 1; transform: translateY(0); transition: opacity 1s ease, transform 1s ease; }
.tech-title { font-size: 3rem; text-transform: uppercase; line-height: 1; margin-bottom: 2rem; font-weight: 800; }
.tech-desc { font-size: 1.1rem; line-height: 1.7; color: #aaa; max-width: 500px; margin-bottom: 3rem; }
.tech-desc strong { color: #fff; }
.tech-stat-row { display: flex; gap: 4rem; margin-bottom: 3rem; border-top: 1px solid #222; padding-top: 2rem; }
.stat { display: flex; flex-direction: column; }
.stat .val { font-size: 1.5rem; font-weight: 800; color: #fff; text-transform: uppercase; }
.stat .label { font-size: 0.8rem; color: #666; text-transform: uppercase; letter-spacing: 1px; }
.text-link { color: #fff; text-decoration: none; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; font-size: 0.9rem; display: inline-block; border-bottom: 1px solid #fff; width: max-content; padding-bottom: 5px; }

/* DETAIL PAGE */
.detail-hero { height: 60vh; background: #111; display: flex; align-items: center; justify-content: center; position: relative; border-bottom: 1px solid #333; margin-top: 120px; overflow: hidden; }
.detail-hero img { max-width: 80%; max-height: 80%; z-index: 2; filter: drop-shadow(0 0 30px rgba(0,0,0,0.5)); }
.detail-bg-text { position: absolute; font-size: 15vw; color: rgba(255,255,255,0.02); font-weight: 900; z-index: 0; pointer-events: none; white-space: nowrap; }
.detail-specs-panel { display: flex; min-height: 80vh; }
.detail-desc { flex: 1; padding: 6rem; border-right: 1px solid #ddd; background: #fff; color: #000; }
.detail-desc h2 { font-size: 2.5rem; text-transform: uppercase; font-weight: 800; margin-bottom: 1.5rem; letter-spacing: -1px; }
.detail-desc p { line-height: 1.6; color: #444; margin-bottom: 1.5rem; font-size: 1.1rem; }
.detail-tech { flex: 1; padding: 6rem; background: #f9f9f9; display: flex; flex-direction: column; justify-content: center; }
.tech-table { width: 100%; border-collapse: collapse; text-transform: uppercase; font-size: 0.9rem; }
.tech-table td { padding: 1rem 0; border-bottom: 1px solid #ddd; color: #444; }
.tech-table td:first-child { font-weight: 700; color: #000; width: 40%; }

/* CUSTOM SELECT */
.purchase-interface { display: flex; align-items: flex-end; gap: 1.5rem; margin-left: auto; }
.option-group { display: flex; flex-direction: column; align-items: flex-start; position: relative; width: 200px; }
.option-group label { font-size: 0.65rem; text-transform: uppercase; font-weight: 700; color: #666; letter-spacing: 1px; margin-bottom: 0.3rem; }
.config-select { display: none; }
.custom-select { position: relative; width: 100%; user-select: none; border: 1px solid #000; background: #fff; height: 40px; }
.custom-select-trigger { display: flex; align-items: center; justify-content: space-between; padding: 0 1rem; font-size: 0.75rem; font-weight: 700; color: #000; height: 100%; cursor: pointer; text-transform: uppercase; transition: background 0.2s; }
.custom-select-trigger:hover { background: #f0f0f0; }
.custom-arrow { width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid #000; }
.custom-select.open .custom-arrow { transform: rotate(180deg); }
.custom-options { position: absolute; top: 100%; left: -1px; right: -1px; background: #fff; border: 1px solid #000; border-top: 0; z-index: 50; opacity: 0; visibility: hidden; pointer-events: none; transition: all 0.1s; max-height: 200px; overflow-y: auto; }
.custom-select.open .custom-options { opacity: 1; visibility: visible; pointer-events: all; }
.custom-option { padding: 0.8rem 1rem; font-size: 0.75rem; font-weight: 700; color: #000; border-bottom: 1px solid #eee; cursor: pointer; text-transform: uppercase; transition: background 0.1s; background: #fff; }
.custom-option:hover { background: #222; color: #fff; }
.custom-option.selected { background: #ddd; color: #000; }
.price-display { font-family: 'Courier New', monospace; font-size: 1.5rem; font-weight: 700; margin-right: 1rem; padding-bottom: 0.5rem; }

/* FOOTER */
.global-footer { background: #000; color: #e0e0e0; border-top: 1px solid #222; padding: 6rem 4rem 2rem 4rem; font-size: 0.8rem; }
.footer-top { margin-bottom: 4rem; padding-bottom: 2rem; border-bottom: 1px solid #1a1a1a; display: flex; justify-content: space-between; align-items: center; }
.footer-logo { height: 40px; opacity: 0.8; }
.footer-social { display: flex; gap: 1.5rem; }
.social-icon { width: 32px; height: 32px; border: 1px solid #333; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: #666; transition: all 0.3s; cursor: pointer; background: transparent; }
.social-icon:hover { background: #fff; color: #000; border-color: #fff; }
.social-icon svg { width: 16px; height: 16px; fill: currentColor; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 4rem; margin-bottom: 6rem; }
.footer-col h4 { color: #fff; text-transform: uppercase; font-weight: 800; margin-bottom: 1.5rem; letter-spacing: 1px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links a { color: #666; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; font-size: 0.75rem; transition: color 0.2s; }
.footer-links a:hover { color: #fff; padding-left: 5px; }
.footer-bottom { display: flex; flex-direction: column; gap: 2rem; border-top: 1px solid #1a1a1a; padding-top: 2rem; text-align: center; }
.itar-notice { color: #444; font-size: 0.65rem; line-height: 1.6; max-width: 800px; margin: 0 auto; text-transform: uppercase; }
.copyright-row { display: flex; justify-content: space-between; align-items: center; color: #333; font-size: 0.7rem; text-transform: uppercase; }
.az-flag { display: flex; align-items: center; gap: 0.5rem; color: #555; font-weight: 700; }

@media (max-width: 1024px) {
    .top-utility-bar { display: none; }
    .main-nav { padding: 0 1.5rem; height: 70px; position: relative; width: 100%; }
    .header-wrapper.scrolled { position: relative; }
    .nav-logo { padding-left: 0; }
    .mobile-toggle { display: block; color: #fff; cursor: pointer; z-index: 160; }
    .menu-backdrop { display: block; position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(5px); z-index: 140; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
    .menu-backdrop.active { opacity: 1; pointer-events: auto; }
    .nav-menu { position: fixed; top: 0; right: 0; width: 85%; max-width: 400px; height: 100vh; background: #050505; flex-direction: column; justify-content: flex-start; padding-top: 6rem; gap: 0; margin: 0; transform: translateX(100%); visibility: hidden; z-index: 150; border-left: 1px solid #222; box-shadow: none; transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.3s; }
    .nav-menu.mobile-open { transform: translateX(0); visibility: visible; box-shadow: -10px 0 30px rgba(0,0,0,0.8); transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0s; }
    .nav-item { width: 100%; border-bottom: 1px solid #1a1a1a; padding: 0; }
    .nav-title { padding: 1.5rem 2rem; font-size: 1rem; justify-content: space-between; }
    .dropdown-menu { position: relative; width: 100%; left: 0 !important; right: 0 !important; border: none; background: #0a0a0a; top: 0; box-shadow: none; max-height: 0; }
    .nav-item.active .dropdown-menu { max-height: 800px; padding: 0; }
    .dropdown-menu a { padding: 1rem 3rem; border-left: none; border-bottom: 1px solid #111; color: #666; }
    .mobile-utility-wrapper { display: flex; flex-direction: column; margin-top: auto; padding: 2rem 0; background: #080808; border-top: 1px solid #222; }
    .mobile-utility-link { display: flex; align-items: center; gap: 1.5rem; padding: 1rem 2rem; color: #888; text-decoration: none; text-transform: uppercase; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; }
    .mobile-utility-link:hover { color: #fff; background: #111; }
    .mobile-utility-link svg { width: 16px; height: 16px; }
    .hero { height: auto; padding: 8rem 1rem 6rem 1rem; }
    .hero-content { align-items: center; text-align: center; }
    .motto { width: 100%; font-size: 0.8rem; letter-spacing: 6px; }
    .manifesto-line { font-size: 2rem; }
    .panel { padding: 4rem 1.5rem; }
    .split-panel { flex-direction: column; }
    .split-image { height: 300px; width: 100%; }
    .split-content { padding: 3rem 1.5rem; border-left: none; }
    .tech-title { font-size: 2rem; }
    .tech-stat-row { flex-direction: column; gap: 2rem; }
    .section-header-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .header-line { display: none; }
    .detail-specs-panel { flex-direction: column; }
    .detail-desc { padding: 3rem 1.5rem; border-right: none; border-bottom: 1px solid #ddd; }
    .detail-tech { padding: 3rem 1.5rem; }
    .panel.compact { flex-direction: column; align-items: flex-start; gap: 2rem; padding: 2rem 1.5rem; margin-top: 0; }
    .panel.compact > div { max-width: 100% !important; }
    .purchase-interface { flex-direction: column; align-items: flex-start; width: 100%; margin-left: 0; }
    .option-group { width: 100%; }
    .footer-top { flex-direction: column; gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
    .copyright-row { flex-direction: column; gap: 1rem; }
}

/* AGE GATE STYLES (NEW) */
.age-gate-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    z-index: 99999; /* TOP LEVEL */
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity 0.5s ease;
}
.age-gate-overlay.active { opacity: 1; visibility: visible; }
.age-gate-box {
    text-align: center; max-width: 500px; padding: 3rem;
    display: flex; flex-direction: column; align-items: center; gap: 2rem;
    background: rgba(10,10,10,0.8); border: 1px solid #333;
    box-shadow: 0 50px 100px rgba(0,0,0,0.8);
}
.age-gate-logo { width: 220px; opacity: 1; margin-bottom: 1rem; filter: drop-shadow(0 0 20px rgba(255,255,255,0.1)); }
.age-gate-text h2 { font-size: 2rem; color: #fff; text-transform: uppercase; font-weight: 900; letter-spacing: 2px; margin-bottom: 0.5rem; line-height: 1; }
.age-gate-text p { color: #888; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; }
.age-gate-actions { display: flex; gap: 1rem; width: 100%; justify-content: center; margin-top: 1rem; }
.age-btn {
    padding: 1rem 3rem; border: 1px solid #444; color: #fff;
    text-transform: uppercase; letter-spacing: 2px; font-weight: 800;
    background: transparent; cursor: pointer; transition: all 0.3s;
    font-size: 0.8rem; min-width: 140px;
}
.age-btn:hover { background: #fff; color: #000; border-color: #fff; box-shadow: 0 0 30px rgba(255,255,255,0.2); }
.age-btn.exit { border-color: #331111; color: #661111; }
.age-btn.exit:hover { background: #330000; color: #ff0000; border-color: #ff0000; box-shadow: 0 0 30px rgba(255,0,0,0.2); }