* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cinzel', serif;
    background: linear-gradient(135deg, #1a0033 0%, #330066 50%, #1a0033 100%);
    color: #e6d5b8;
    line-height: 1.8;
    min-height: 100vh;
}

header {
    background: rgba(10, 0, 20, 0.95);
    padding: 1.2rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #ffd700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffd700;
    text-decoration: none;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    letter-spacing: 2px;
}

.logo-icon {
    font-size: 2.5rem;
    margin-right: 0.5rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

nav a {
    color: #e6d5b8;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #ffd700;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #ffd700;
    transition: all 0.3s ease;
}

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(51, 0, 102, 0.3);
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

h1 {
    font-size: 3.5rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    letter-spacing: 3px;
}

h2 {
    font-size: 2.5rem;
    color: #ffd700;
    margin: 2.5rem 0 1.5rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

h3 {
    font-size: 1.8rem;
    color: #d4af37;
    margin: 2rem 0 1rem;
}

.subtitle {
    font-size: 1.4rem;
    color: #c9b998;
    margin-bottom: 2rem;
}

.notice-box {
    background: rgba(139, 0, 0, 0.4);
    border: 3px solid #ff6b6b;
    border-radius: 15px;
    padding: 2rem;
    margin: 2.5rem 0;
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.2);
}

.notice-box h3 {
    color: #ff6b6b;
    text-align: center;
    margin-top: 0;
    font-size: 2rem;
}

.notice-box ul {
    list-style: none;
    padding: 1rem 0;
}

.notice-box li {
    padding: 1rem;
    margin: 0.8rem 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border-left: 4px solid #ff6b6b;
    font-size: 1.2rem;
}

.notice-box li::before {
    content: '⚠️ ';
    margin-right: 0.5rem;
}

.content-section {
    background: rgba(51, 0, 102, 0.25);
    padding: 2.5rem;
    margin: 2rem 0;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.15);
}

.content-section p {
    margin-bottom: 1.3rem;
    font-size: 1.15rem;
    line-height: 1.9;
}

.game-container {
    width: 100%;
    max-width: 900px;
    margin: 3rem auto;
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid #ffd700;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.game-container iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.feature-card {
    background: rgba(51, 0, 102, 0.4);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.feature-card h3 {
    color: #ffd700;
    margin-top: 0;
}

footer {
    background: rgba(10, 0, 20, 0.95);
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-top: 3px solid #ffd700;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: #e6d5b8;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.responsible-gaming {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(51, 0, 102, 0.3);
    border-radius: 10px;
}

.responsible-gaming h3 {
    color: #ffd700;
    margin-top: 0;
}

.responsible-gaming-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.responsible-gaming-links a {
    color: #87ceeb;
    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, #1a0033 0%, #330066 100%);
    padding: 3rem;
    border-radius: 20px;
    max-width: 550px;
    text-align: center;
    border: 3px solid #ffd700;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
}

.modal-content h2 {
    color: #ffd700;
    margin-top: 0;
    font-size: 2.3rem;
}

.modal-content p {
    font-size: 1.2rem;
    margin: 1.5rem 0;
    color: #e6d5b8;
}

.modal-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.modal-buttons button {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cinzel', serif;
}

.btn-yes {
    background: #ffd700;
    color: #1a0033;
}

.btn-yes:hover {
    background: #ffed4e;
    transform: scale(1.05);
}

.btn-no {
    background: #8b0000;
    color: #e6d5b8;
}

.btn-no:hover {
    background: #a00000;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: rgba(10, 0, 20, 0.98);
        transition: left 0.3s ease;
        padding: 2rem;
        border-bottom: 3px solid #ffd700;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    h1 {
        font-size: 2.3rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    .logo {
        font-size: 1.6rem;
    }

    .modal-content {
        margin: 1rem;
        padding: 2rem;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .game-container iframe {
        height: 500px;
    }
}
