@import url('https://fonts.googleapis.com/css2?family=Rye&family=Roboto+Slab:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --western-brown: #8b4513;
    --western-tan: #d2b48c;
    --western-gold: #daa520;
    --western-dark: #2c1810;
    --western-cream: #f5deb3;
    --western-red: #a0522d;
}

body {
    font-family: 'Roboto Slab', serif;
    background: linear-gradient(to bottom, #3d2817 0%, #2c1810 100%);
    color: var(--western-cream);
    line-height: 1.7;
    min-height: 100vh;
    position: relative;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(139, 69, 19, 0.1) 2px, rgba(139, 69, 19, 0.1) 4px);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><text x="10" y="50" font-size="40" opacity="0.03" fill="%23daa520">🦬</text></svg>');
    background-size: 200px 200px;
    pointer-events: none;
    opacity: 0.3;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header Styles */
header {
    background: linear-gradient(180deg, rgba(44, 24, 16, 0.95) 0%, rgba(60, 40, 28, 0.9) 100%);
    border-bottom: 4px solid var(--western-gold);
    border-top: 4px solid var(--western-gold);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Rye', cursive;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--western-gold);
    text-decoration: none;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.nav-toggle {
    display: none;
    background: var(--western-gold);
    border: 3px solid var(--western-brown);
    color: var(--western-dark);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.6rem;
    border-radius: 4px;
    font-weight: bold;
}

.nav-toggle:hover {
    background: var(--western-cream);
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

nav ul li a {
    color: var(--western-cream);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
    padding: 0.7rem 1.3rem;
    background: rgba(139, 69, 19, 0.3);
    border: 2px solid var(--western-brown);
    border-radius: 4px;
    transition: all 0.3s;
    display: inline-block;
}

nav ul li a:hover {
    background: var(--western-gold);
    color: var(--western-dark);
    border-color: var(--western-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(to bottom, rgba(139, 69, 19, 0.2) 0%, transparent 100%);
    border-bottom: 3px double var(--western-gold);
}

.hero h1 {
    font-family: 'Rye', cursive;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--western-gold);
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 3px;
}

.hero p {
    font-size: 1.3rem;
    color: var(--western-tan);
    max-width: 850px;
    margin: 0 auto 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Notice Cards */
.notices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3.5rem 0;
}

.notice-card {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.4) 0%, rgba(60, 40, 28, 0.4) 100%);
    border: 3px solid var(--western-brown);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.notice-card::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid var(--western-gold);
    border-radius: 4px;
    pointer-events: none;
}

.notice-card:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    border-color: var(--western-gold);
}

.notice-card h3 {
    color: var(--western-gold);
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    font-family: 'Rye', cursive;
}

.notice-card p {
    color: var(--western-cream);
    font-size: 1rem;
    line-height: 1.6;
}

/* Game Section */
.game-section {
    margin: 4.5rem 0;
    text-align: center;
}

.game-section h2 {
    font-family: 'Rye', cursive;
    font-size: 3rem;
    margin-bottom: 2.5rem;
    color: var(--western-gold);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
}

.game-container {
    background: linear-gradient(135deg, rgba(60, 40, 28, 0.6) 0%, rgba(44, 24, 16, 0.6) 100%);
    border: 4px solid var(--western-brown);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    margin: 2rem auto;
    max-width: 950px;
    position: relative;
}

.game-container::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--western-gold);
    border-radius: 8px;
    pointer-events: none;
}

.game-container iframe {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

/* Content Section */
.content-section {
    margin: 4rem 0;
    padding: 3.5rem;
    background: linear-gradient(135deg, rgba(60, 40, 28, 0.5) 0%, rgba(44, 24, 16, 0.5) 100%);
    border-radius: 12px;
    border: 3px solid var(--western-brown);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.content-section h2 {
    font-family: 'Rye', cursive;
    font-size: 2.3rem;
    margin-bottom: 1.8rem;
    color: var(--western-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content-section p {
    margin-bottom: 1.3rem;
    color: var(--western-tan);
    font-size: 1.05rem;
}

.content-section ul {
    list-style: none;
    margin: 2rem 0;
}

.content-section ul li {
    padding: 1rem;
    margin: 0.8rem 0;
    background: rgba(139, 69, 19, 0.3);
    border-left: 5px solid var(--western-gold);
    border-radius: 4px;
    color: var(--western-cream);
}

.content-section ul li strong {
    color: var(--western-gold);
}

/* Footer */
footer {
    background: linear-gradient(180deg, rgba(60, 40, 28, 0.9) 0%, rgba(44, 24, 16, 0.95) 100%);
    border-top: 4px solid var(--western-gold);
    padding: 3.5rem 0 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    font-family: 'Rye', cursive;
    color: var(--western-gold);
    margin-bottom: 1.3rem;
    font-size: 1.4rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 0.7rem 0;
}

.footer-section ul li a {
    color: var(--western-tan);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section ul li a:hover {
    color: var(--western-gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--western-brown);
    color: var(--western-tan);
    font-size: 0.95rem;
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: linear-gradient(135deg, #3d2817 0%, #2c1810 100%);
    border: 5px solid var(--western-gold);
    border-radius: 15px;
    padding: 3.5rem;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 0 60px rgba(218, 165, 32, 0.4);
    position: relative;
}

.age-modal-content::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--western-brown);
    border-radius: 10px;
}

.age-modal-content h2 {
    font-family: 'Rye', cursive;
    color: var(--western-gold);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.age-modal-content p {
    color: var(--western-tan);
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.age-buttons button {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: 3px solid;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Roboto Slab', serif;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-yes {
    background: var(--western-gold);
    color: var(--western-dark);
    border-color: var(--western-brown);
}

.btn-yes:hover {
    background: var(--western-cream);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.4);
}

.btn-no {
    background: transparent;
    color: #cd5c5c;
    border-color: #cd5c5c;
}

.btn-no:hover {
    background: #cd5c5c;
    color: #fff;
    transform: scale(1.05);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 85px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background: rgba(44, 24, 16, 0.98);
        transition: right 0.3s;
        padding: 2rem;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 1.2rem;
    }

    nav ul li a {
        display: block;
        padding: 1.2rem;
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .notices {
        grid-template-columns: 1fr;
    }

    .game-container iframe {
        height: 450px;
    }

    .age-modal-content {
        margin: 1.5rem;
        padding: 2.5rem;
    }

    .age-buttons {
        flex-direction: column;
    }

    .age-buttons button {
        width: 100%;
    }

    .content-section {
        padding: 2rem;
    }
}