* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(180deg, #2c1810 0%, #8b4513 50%, #2c1810 100%);
    background-attachment: fixed;
    color: #f4e4c1;
    line-height: 1.75;
    min-height: 100vh;
}

header {
    background: linear-gradient(90deg, rgba(139, 69, 19, 0.95) 0%, rgba(184, 134, 11, 0.95) 50%, rgba(139, 69, 19, 0.95) 100%);
    padding: 1.5rem 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #daa520;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    text-decoration: none;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    font-size: 2.8rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #f4e4c1;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

nav a:hover {
    background: rgba(218, 165, 32, 0.3);
    color: #ffd700;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #ffd700;
    border-radius: 3px;
    transition: all 0.3s ease;
}

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2.5rem;
}

.hero {
    text-align: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.2) 0%, rgba(184, 134, 11, 0.3) 100%);
    border-radius: 30px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(218, 165, 32, 0.5);
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-style: italic;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #daa520;
    margin: 3rem 0 1.5rem;
    font-weight: 700;
    font-style: italic;
}

h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #f4e4c1;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.subtitle {
    font-size: 1.5rem;
    color: #daa520;
    font-weight: 300;
    font-style: italic;
}

.notice-box {
    background: linear-gradient(135deg, rgba(178, 34, 34, 0.3) 0%, rgba(139, 0, 0, 0.4) 100%);
    border: 3px solid #ff6347;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 6px 25px rgba(255, 99, 71, 0.3);
}

.notice-box h3 {
    color: #ff6347;
    text-align: center;
    margin-top: 0;
    font-size: 2.3rem;
}

.notice-box ul {
    list-style: none;
    padding: 2rem 0;
}

.notice-box li {
    padding: 1.5rem;
    margin: 1rem 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    border-left: 5px solid #ff6347;
    font-size: 1.1rem;
}

.notice-box li::before {
    content: '🔥 ';
    margin-right: 0.8rem;
}

.content-section {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.3) 0%, rgba(101, 67, 33, 0.4) 100%);
    padding: 3rem;
    margin: 2.5rem 0;
    border-radius: 20px;
    border-left: 5px solid #daa520;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.content-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.9;
}

.game-container {
    width: 100%;
    max-width: 950px;
    margin: 3rem auto;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.6) 0%, rgba(101, 67, 33, 0.6) 100%);
    padding: 2.5rem;
    border-radius: 25px;
    border: 4px solid #daa520;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.game-container iframe {
    width: 100%;
    height: 680px;
    border: none;
    border-radius: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.feature-card {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.2) 0%, rgba(184, 134, 11, 0.3) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(218, 165, 32, 0.4);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(218, 165, 32, 0.4);
    border-color: #daa520;
}

.feature-card h3 {
    color: #ffd700;
    margin-top: 0;
}

footer {
    background: linear-gradient(90deg, rgba(139, 69, 19, 0.95) 0%, rgba(184, 134, 11, 0.95) 50%, rgba(139, 69, 19, 0.95) 100%);
    padding: 3rem 2.5rem;
    margin-top: 4rem;
    border-top: 3px solid #daa520;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: #f4e4c1;
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.responsible-gaming {
    margin-top: 2.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.4) 0%, rgba(101, 67, 33, 0.5) 100%);
    border-radius: 15px;
}

.responsible-gaming h3 {
    color: #ffd700;
    margin-top: 0;
}

.responsible-gaming-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.responsible-gaming-links a {
    color: #daa520;
    text-decoration: none;
    font-size: 1.05rem;
}

.responsible-gaming-links a:hover {
    color: #ffd700;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
    padding: 3.5rem 3rem;
    border-radius: 25px;
    max-width: 550px;
    text-align: center;
    border: 4px solid #daa520;
    box-shadow: 0 0 60px rgba(218, 165, 32, 0.6);
}

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    color: #ffd700;
    margin-top: 0;
    font-size: 2.5rem;
    font-style: italic;
}

.modal-content p {
    font-size: 1.2rem;
    margin: 1.5rem 0;
    color: #f4e4c1;
}

.modal-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.modal-buttons button {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.btn-yes {
    background: linear-gradient(135deg, #daa520 0%, #ffd700 100%);
    color: #2c1810;
}

.btn-yes:hover {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    transform: scale(1.08);
}

.btn-no {
    background: linear-gradient(135deg, #b22222 0%, #8b0000 100%);
    color: #f4e4c1;
}

.btn-no:hover {
    background: linear-gradient(135deg, #dc143c 0%, #b22222 100%);
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        background: linear-gradient(90deg, rgba(139, 69, 19, 0.98) 0%, rgba(184, 134, 11, 0.98) 50%, rgba(139, 69, 19, 0.98) 100%);
        transition: left 0.3s ease;
        padding: 2rem;
        border-bottom: 3px solid #daa520;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    header {
        padding: 1rem 1.5rem;
    }

    main {
        padding: 1.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .logo {
        font-size: 1.8rem;
    }

    .hero {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }

    .content-section {
        padding: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 1rem;
        padding: 2.5rem 2rem;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .game-container {
        padding: 1.5rem;
    }

    .game-container iframe {
        height: 500px;
    }

    footer {
        padding: 2rem 1.5rem;
    }
}
