@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-darker: #0f0906;
    --bg-dark: #1a110a;
    --bg-medium: #2a1a10;
    --copper: #c87533;
    --copper-bright: #e89845;
    --copper-pale: #ffc68a;
    --text-white: #fff5eb;
    --text-gray: #a89080;
    --line-color: #3a2a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-darker);
    color: var(--text-white);
    line-height: 1.7;
}

a {
    color: var(--copper);
    text-decoration: none;
    transition: 0.3s ease;
}

a:hover {
    color: var(--copper-bright);
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(15, 9, 6, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line-color);
    z-index: 900;
    display: flex;
    align-items: center;
}

.header-wrap {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--copper);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.header-nav {
    display: flex;
    gap: 1.75rem;
}

.header-nav a {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-nav a:hover,
.header-nav a.here {
    color: var(--copper-bright);
}

.menu-icon {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 5px;
}

.menu-icon span {
    width: 22px;
    height: 2px;
    background: var(--copper);
}

.overlay-menu {
    position: fixed;
    inset: 0;
    background: rgba(15, 9, 6, 0.98);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 899;
}

.overlay-menu.open {
    display: flex;
}

.overlay-menu a {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Main */
main {
    padding-top: 60px;
}

/* Welcome Section */
.welcome-section {
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
    background: 
        radial-gradient(ellipse at 50% 100%, rgba(200, 117, 51, 0.08) 0%, transparent 60%),
        var(--bg-darker);
    text-align: center;
}

.welcome-box {
    max-width: 850px;
}

.welcome-box h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.welcome-box h1 .accent {
    color: var(--copper-bright);
}

.welcome-box p {
    font-size: 1.05rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
}

.copper-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--copper), var(--copper-bright));
    color: var(--bg-darker);
    font-weight: 700;
    padding: 0.9rem 2.5rem;
    border-radius: 5px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(200, 117, 51, 0.3);
}

.copper-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(200, 117, 51, 0.45);
    color: var(--bg-darker);
}

/* Panels */
.panel-row {
    padding: 4rem 1.5rem;
    background: var(--bg-dark);
}

.panel-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.panel {
    background: var(--bg-medium);
    border: 1px solid var(--line-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.panel:hover {
    border-color: var(--copper);
    transform: translateY(-3px);
}

.panel .icon {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.panel h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--copper-pale);
}

.panel p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Slot Area */
.slot-area {
    padding: 4rem 1.5rem;
}

.slot-inner {
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
}

.slot-inner h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    color: var(--copper-pale);
}

.slot-box {
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--bg-dark);
    border: 1px solid var(--line-color);
    border-radius: 10px;
    overflow: hidden;
}

.slot-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Text Section */
.text-section {
    max-width: 850px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.text-section h1 {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--copper-pale);
}

.text-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--copper);
    margin: 2rem 0 0.75rem;
}

.text-section p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.text-section ul {
    list-style: none;
    margin: 1.25rem 0;
}

.text-section li {
    padding: 0.4rem 0 0.4rem 1.25rem;
    color: var(--text-gray);
    position: relative;
}

.text-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--copper);
    font-weight: 700;
}

/* Footer */
footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--line-color);
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.footer-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.help-section {
    margin-bottom: 1.5rem;
}

.help-section h5 {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.help-section a {
    margin: 0 0.75rem;
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    font-size: 0.8rem;
}

.copyright {
    color: var(--text-gray);
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Age Gate */
.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-gate.hidden {
    display: none;
}

.gate-content {
    background: var(--bg-medium);
    border: 2px solid var(--copper);
    border-radius: 10px;
    padding: 2.5rem;
    max-width: 420px;
    margin: 1rem;
    text-align: center;
}

.gate-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--copper-pale);
}

.gate-content p {
    color: var(--text-gray);
    margin-bottom: 1.75rem;
    font-size: 0.9rem;
}

.gate-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.gate-buttons button {
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-allow {
    background: linear-gradient(135deg, var(--copper), var(--copper-bright));
    color: var(--bg-darker);
}

.btn-deny {
    background: transparent;
    border: 1px solid var(--line-color) !important;
    color: var(--text-gray);
}

.btn-allow:hover {
    transform: scale(1.03);
}

.btn-deny:hover {
    border-color: #c44 !important;
    color: #c44;
}

/* Responsive */
@media (max-width: 900px) {
    .panel-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    
    .menu-icon {
        display: flex;
    }
    
    .welcome-box h1 {
        font-size: 1.75rem;
    }
    
    .slot-box {
        aspect-ratio: 4/3;
    }
    
    .gate-buttons {
        flex-direction: column;
    }
    
    .help-section a {
        display: block;
        margin: 0.4rem 0;
    }
}
