* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Age Gate */
.age-gate {
    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;
}

.age-gate.active {
    display: flex;
}

.age-gate-content {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.age-gate-content h2 {
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 700;
}

.age-gate-content p {
    font-size: 1.1em;
    margin-bottom: 15px;
    line-height: 1.8;
}

.age-gate-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.age-gate-buttons button {
    padding: 15px 40px;
    font-size: 1.1em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-confirm {
    background: white;
    color: #9c27b0;
}

.btn-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-deny {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-deny:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Header */
header {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-size: 1.8em;
    font-weight: 700;
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: white;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 3px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 25px;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Notices Section */
.notices {
    padding: 80px 0;
    background: white;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.notice-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.notice-card:hover {
    transform: translateY(-10px);
}

.notice-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.notice-card h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    font-weight: 600;
}

.notice-card p {
    font-size: 1.05em;
    line-height: 1.7;
}

/* Game Section */
.game-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
}

.game-section h2 {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 50px;
    color: #555;
}

.game-container {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 15px;
}

.game-info {
    text-align: center;
    margin-top: 30px;
}

.game-info p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #333;
}

.btn-play {
    display: inline-block;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    color: white;
    padding: 15px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(156, 39, 176, 0.3);
}

.btn-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(156, 39, 176, 0.4);
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5em;
    margin-bottom: 25px;
    color: #9c27b0;
}

.about-text p {
    font-size: 1.15em;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 12px 0;
    font-size: 1.1em;
    color: #444;
}

.decorative-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px;
    border-radius: 20px;
    color: white;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.decorative-box h3 {
    font-size: 2.2em;
    margin-bottom: 20px;
}

.decorative-box p {
    font-size: 1.3em;
    margin: 10px 0;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 60px;
    color: #333;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #333;
}

.step-card p {
    color: #666;
    font-size: 1.05em;
}

/* Community Section */
.community {
    padding: 80px 0;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.community-box {
    background: white;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.community-box h2 {
    font-size: 2.5em;
    margin-bottom: 25px;
    color: #9c27b0;
}

.community-box > p {
    font-size: 1.2em;
    color: #555;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.stat {
    padding: 20px;
}

.stat-number {
    font-size: 3em;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2em;
    color: #666;
}

/* Play Page Styles */
.play-hero {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.play-hero h1 {
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: 700;
}

.play-subtitle {
    font-size: 1.3em;
    opacity: 0.95;
}

.game-play-section {
    padding: 60px 0;
    background: white;
}

.game-instructions {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.game-instructions h2 {
    font-size: 2em;
    margin-bottom: 25px;
    color: #333;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.instruction-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    font-size: 1.05em;
    line-height: 1.6;
    color: #555;
}

.instruction-item strong {
    color: #9c27b0;
}

.game-container-play {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.game-frame-full {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 15px;
}

.play-notice {
    text-align: center;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    font-size: 1.15em;
    font-weight: 500;
}

.play-tips {
    padding: 60px 0;
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
}

.play-tips h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #333;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tip-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tip-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #9c27b0;
}

.tip-card p {
    color: #666;
    font-size: 1.05em;
    line-height: 1.7;
}

/* Legal Pages */
.legal-hero {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.legal-hero h1 {
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-updated {
    font-size: 1.15em;
    opacity: 0.9;
}

.legal-content {
    padding: 80px 0;
    background: white;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-text h2 {
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #9c27b0;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.legal-text ul {
    margin: 20px 0 20px 40px;
}

.legal-text li {
    margin-bottom: 12px;
    font-size: 1.05em;
    line-height: 1.7;
    color: #555;
}

.legal-notice-box {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.legal-notice-box h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.legal-notice-box p {
    font-size: 1.15em;
    margin-bottom: 15px;
    color: white;
}

.legal-notice-box ul {
    margin: 20px 0 0 20px;
}

.legal-notice-box li {
    margin-bottom: 12px;
    font-size: 1.1em;
    color: white;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.4em;
    margin-bottom: 20px;
    color: #e91e63;
}

.footer-section p {
    line-height: 1.7;
    color: #ccc;
    font-size: 1.05em;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.05em;
}

.footer-nav a:hover {
    color: #e91e63;
}

.responsible-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.responsible-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.05em;
}

.responsible-links a:hover {
    color: #e91e63;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 0.95em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
        flex-direction: column;
        padding: 100px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }
    
    nav.active {
        right: 0;
    }
    
    nav a {
        font-size: 1.3em;
        padding: 15px;
    }
    
    .hero h1 {
        font-size: 2.2em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .game-frame {
        height: 400px;
    }
    
    .game-frame-full {
        height: 500px;
    }
    
    .legal-text {
        padding: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8em;
    }
    
    .age-gate-content {
        padding: 30px;
        margin: 20px;
    }
    
    .age-gate-buttons {
        flex-direction: column;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .game-frame {
        height: 300px;
    }
    
    .game-frame-full {
        height: 400px;
    }
}
