* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #6B46C1;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1.05rem;
}

nav a:hover {
    color: #6B46C1;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #6B46C1;
}

/* Main Content */
main {
    background: white;
    margin: 30px auto;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    max-width: 1200px;
}

h1 {
    font-family: 'Playfair Display', serif;
    color: #6B46C1;
    font-size: 2.8rem;
    margin-bottom: 25px;
    text-align: center;
}

h2 {
    font-family: 'Playfair Display', serif;
    color: #764ba2;
    font-size: 2rem;
    margin: 30px 0 15px;
}

h3 {
    font-family: 'Playfair Display', serif;
    color: #667eea;
    font-size: 1.5rem;
    margin: 20px 0 10px;
}

p {
    margin-bottom: 15px;
    color: #555;
}

/* Game Container */
.game-container {
    margin: 40px 0;
    text-align: center;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.game-frame {
    width: 100%;
    max-width: 800px;
    height: 600px;
    border: 3px solid #6B46C1;
    border-radius: 10px;
    margin: 0 auto;
}

/* Info Boxes */
.info-box {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-left: 4px solid #6B46C1;
    padding: 20px;
    margin: 25px 0;
    border-radius: 5px;
}

.info-box strong {
    color: #6B46C1;
}

.warning-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 25px 0;
    border-radius: 5px;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.feature-card {
    background: linear-gradient(135deg, #667eea10 0%, #764ba210 100%);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 40px 20px 20px;
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.responsible-gaming {
    margin-bottom: 25px;
}

.responsible-gaming h3 {
    color: #6B46C1;
    margin-bottom: 15px;
}

.responsible-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.responsible-links a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s;
}

.responsible-links a:hover {
    color: #764ba2;
}

.copyright {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    color: #666;
}

/* Age Verification Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.modal-content h2 {
    color: #6B46C1;
    margin-bottom: 20px;
}

.modal-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.btn-yes {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-no {
    background: #e0e0e0;
    color: #333;
}

.btn-no:hover {
    background: #d0d0d0;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100vh;
        background: white;
        transition: left 0.3s;
        padding-top: 60px;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav li {
        border-bottom: 1px solid #eee;
    }

    nav a {
        display: block;
        padding: 20px 30px;
    }

    .logo {
        font-size: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    main {
        padding: 20px;
        margin: 15px;
    }

    .game-frame {
        height: 400px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 20px;
        padding: 30px 20px;
    }

    .modal-buttons {
        flex-direction: column;
    }
}
