@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

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

:root {
    --sand-gold: #c4a35a;
    --deep-bronze: #8b6914;
    --dark-tomb: #1a1408;
    --ancient-brown: #2d2410;
    --cream: #f5e6c8;
    --text-light: #e8dcc4;
    --white: #ffffff;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--dark-tomb);
    color: var(--text-light);
    min-height: 100vh;
    line-height: 1.7;
    font-size: 17px;
}

/* Header */
.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(26, 20, 8, 0.98) 0%, rgba(26, 20, 8, 0.9) 100%);
    border-bottom: 2px solid var(--sand-gold);
}

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

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--sand-gold);
    text-decoration: none;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--sand-gold);
    margin: 7px 0;
    transition: 0.3s;
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.main-menu a {
    font-family: 'Cinzel', serif;
    color: var(--cream);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.main-menu a:hover {
    color: var(--sand-gold);
}

/* Hero */
.hero-area {
    min-height: 100vh;
    padding: 130px 30px 80px;
    background: 
        linear-gradient(135deg, rgba(26, 20, 8, 0.95) 0%, rgba(45, 36, 16, 0.9) 100%),
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0L80 40L40 80L0 40z' fill='%23c4a35a' fill-opacity='0.03'/%3E%3C/svg%3E");
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.hero-intro h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--sand-gold);
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-intro p {
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 35px;
}

.hero-btn {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--sand-gold), var(--deep-bronze));
    color: var(--dark-tomb);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    border: none;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 163, 90, 0.4);
}

/* Notices */
.notices-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.notice-box {
    background: rgba(45, 36, 16, 0.8);
    border: 1px solid rgba(196, 163, 90, 0.4);
    padding: 30px;
    text-align: center;
}

.notice-box .symbol {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.notice-box h3 {
    font-family: 'Cinzel', serif;
    color: var(--sand-gold);
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.notice-box p {
    color: var(--cream);
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Game Section */
.game-section {
    padding: 80px 30px;
    background: var(--ancient-brown);
}

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

.section-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--sand-gold);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--cream);
    max-width: 600px;
    margin: 0 auto;
}

.game-embed {
    max-width: 1050px;
    margin: 0 auto;
    border: 4px solid var(--sand-gold);
    background: var(--dark-tomb);
}

.game-embed iframe {
    width: 100%;
    height: 620px;
    border: none;
    display: block;
}

/* Features */
.features-area {
    padding: 80px 30px;
    background: var(--dark-tomb);
}

.features-list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-tile {
    background: linear-gradient(145deg, rgba(45, 36, 16, 0.6), rgba(26, 20, 8, 0.8));
    border: 1px solid rgba(196, 163, 90, 0.3);
    padding: 35px 25px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.feature-tile:hover {
    border-color: var(--sand-gold);
    transform: translateY(-5px);
}

.feature-tile .icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.feature-tile h3 {
    font-family: 'Cinzel', serif;
    color: var(--sand-gold);
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.feature-tile p {
    color: var(--cream);
    font-size: 0.9rem;
    opacity: 0.85;
}

/* Footer */
.site-footer {
    background: rgba(26, 20, 8, 0.98);
    padding: 50px 30px;
    border-top: 2px solid var(--sand-gold);
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: var(--sand-gold);
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 25px;
}

.gambling-resources {
    margin-bottom: 30px;
}

.gambling-resources h4 {
    color: var(--cream);
    font-family: 'Cinzel', serif;
    margin-bottom: 15px;
    font-weight: 600;
}

.gambling-resources a {
    color: var(--sand-gold);
    text-decoration: none;
    margin: 0 18px;
    font-size: 0.95rem;
}

.gambling-resources a:hover {
    text-decoration: underline;
}

.footer-links {
    margin-bottom: 25px;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--sand-gold);
    opacity: 1;
}

.footer-copy {
    color: var(--cream);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Age Modal */
.age-popup {
    position: fixed;
    inset: 0;
    background: rgba(26, 20, 8, 0.98);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.age-popup.gone {
    display: none;
}

.age-card {
    background: linear-gradient(145deg, var(--ancient-brown), var(--dark-tomb));
    border: 3px solid var(--sand-gold);
    padding: 50px 45px;
    max-width: 480px;
    text-align: center;
}

.age-card h2 {
    font-family: 'Cinzel', serif;
    color: var(--sand-gold);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.age-card p {
    color: var(--cream);
    margin-bottom: 25px;
}

.age-choices {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-choices button {
    padding: 15px 35px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-yes {
    background: linear-gradient(135deg, var(--sand-gold), var(--deep-bronze));
    color: var(--dark-tomb);
}

.age-no {
    background: transparent;
    border: 2px solid var(--cream) !important;
    color: var(--cream);
}

.age-choices button:hover {
    transform: scale(1.05);
}

/* Page Styles */
.page-top {
    padding: 140px 30px 50px;
    background: var(--ancient-brown);
    text-align: center;
}

.page-top h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.6rem;
    color: var(--sand-gold);
}

.page-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 50px 30px 80px;
}

.page-content h2 {
    font-family: 'Cinzel', serif;
    color: var(--sand-gold);
    margin: 40px 0 15px;
    font-size: 1.4rem;
}

.page-content p {
    color: var(--cream);
    margin-bottom: 15px;
    opacity: 0.9;
}

.page-content ul {
    color: var(--cream);
    margin-left: 25px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.page-content li {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 1000px) {
    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
    
    .main-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 20, 8, 0.98);
        flex-direction: column;
        padding: 25px;
        gap: 20px;
        display: none;
        border-top: 1px solid var(--sand-gold);
    }
    
    .main-menu.visible {
        display: flex;
    }
    
    .hero-intro h1 {
        font-size: 2.4rem;
    }
    
    .notices-row {
        grid-template-columns: 1fr;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .game-embed iframe {
        height: 420px;
    }
    
    .age-choices {
        flex-direction: column;
    }
}
