/* Sigilith Social Casino - Elegant Centered Design */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Lato:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d4af37;
    --dark-gold: #b8941f;
    --burgundy: #800020;
    --dark-burgundy: #5c0016;
    --cream: #f5f5dc;
    --bg-light: #fafaf8;
    --text-dark: #2c2c2c;
    --text-medium: #666666;
    --border-color: #e8e8e0;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    min-height: 100vh;
    line-height: 1.7;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--dark-burgundy) 100%);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 0;
    justify-content: center;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 1rem;
}

nav a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1.5rem;
    border-right: 1px solid rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

nav ul li:last-child a {
    border-right: none;
}

nav a:hover {
    color: var(--gold);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    margin: 1rem auto 0;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: var(--gold);
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Main Content */
main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 3rem;
    background: white;
    border: 3px solid var(--gold);
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--burgundy);
    font-weight: 900;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.9;
}

/* Notice Cards */
.notices {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.notice-card {
    background: white;
    padding: 2.5rem;
    border-left: 5px solid var(--gold);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.notice-card:hover {
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
    transform: translateX(5px);
}

.notice-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--burgundy);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.notice-card p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Game Container */
.game-container {
    background: white;
    padding: 3rem;
    margin: 3rem 0;
    border: 3px solid var(--gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.game-container h2 {
    font-family: 'Playfair Display', serif;
    color: var(--burgundy);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.game-frame {
    width: 100%;
    max-width: 900px;
    height: 700px;
    border: 2px solid var(--border-color);
    margin: 0 auto;
    display: block;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Content Sections */
.content-section {
    background: white;
    padding: 3rem;
    margin: 2rem 0;
    border-left: 5px solid var(--burgundy);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
    font-size: 2.3rem;
    font-weight: 900;
}

.content-section h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-gold);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.7rem;
    font-weight: 700;
}

.content-section p {
    color: var(--text-medium);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.9;
}

.content-section ul {
    list-style-position: inside;
    color: var(--text-medium);
    margin-left: 1rem;
}

.content-section li {
    margin-bottom: 0.8rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--dark-burgundy) 100%);
    padding: 3rem 2rem;
    margin-top: 4rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-text {
    color: var(--cream);
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(128, 0, 32, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: white;
    padding: 3.5rem;
    text-align: center;
    max-width: 550px;
    border: 5px solid var(--gold);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.age-modal-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.age-modal-content p {
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-size: 1.15rem;
    line-height: 1.8;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 3rem;
    border: 2px solid;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-btn-yes {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: white;
}

.age-btn-yes:hover {
    background: var(--dark-burgundy);
    border-color: var(--dark-burgundy);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(128, 0, 32, 0.4);
}

.age-btn-no {
    background: white;
    border-color: var(--text-medium);
    color: var(--text-medium);
}

.age-btn-no:hover {
    background: var(--text-medium);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-top: none;
        padding-top: 0;
    }

    nav.active {
        max-height: 400px;
        border-top: 1px solid rgba(212, 175, 55, 0.3);
        padding-top: 1rem;
        margin-top: 1rem;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav a {
        display: block;
        padding: 1rem;
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .logo {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .hero {
        padding: 2.5rem 1.5rem;
    }

    .game-frame {
        height: 500px;
    }

    .content-section {
        padding: 2rem;
    }

    .age-modal-content {
        margin: 1rem;
        padding: 2.5rem 2rem;
    }

    .age-buttons {
        flex-direction: column;
    }
}
