* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; 
    line-height: 1.6; color: #1a1a1a; max-width: 1200px; margin: 0 auto; padding: 0 20px;
    background: #f8f9fa;
}

header { 
    background: #f8f9fa; 
    padding: 1.5rem 0; margin-bottom: 2rem;
    display: flex; justify-content: space-between; align-items: center;
    border-radius: 0 0 8px 8px;
}
.logo { font-size: 1.5rem; font-weight: bold; color: #c53030; text-decoration: none; }
nav a { margin-left: 2rem; text-decoration: none; color: #c53030; font-weight: 500; }
nav a:hover { color: #fed7d7; }

.hero { 
    text-align: center; padding: 4rem 0; margin-bottom: 3rem;
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    border-radius: 8px; color: white;
}
.hero h1 { font-size: 2.8rem; margin-bottom: 1rem; }
.hero-subtitle { font-size: 1.3rem; opacity: 0.9; }

.main-content { margin-bottom: 3rem; }
.main-content h2 { 
    margin: 2.5rem 0 1.5rem; color: #c53030;
    padding-bottom: 0.5rem; border-bottom: 2px solid #fed7d7;
}
.main-content p { margin-bottom: 1.2rem; color: #2d3748; }
.main-content ul { margin: 1.5rem 0 1.5rem 2rem; }
.main-content li { margin-bottom: 0.8rem; color: #2d3748; }

.game-grid { 
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 1.5rem; margin: 2rem 0;
}
.game-card { 
    background: white; padding: 1.5rem; border-radius: 8px; 
    border-left: 4px solid #e53e3e; box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.game-card h3 { color: #c53030; margin-bottom: 0.5rem; }

.game-table { 
    width: 100%; border-collapse: collapse; margin: 1.5rem 0;
    background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.game-table th, .game-table td { 
    padding: 12px; text-align: left; border-bottom: 1px solid #e2e8f0;
}
.game-table th { background: #e53e3e; color: white; }
.game-table tr:hover { background: #fef5f5; }

.faq-item { 
    margin-bottom: 2rem; padding: 2rem; 
    background: white; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-left: 4px solid #c53030;
}
.faq-question { 
    font-weight: bold; margin-bottom: 1rem; color: #c53030;
    font-size: 1.2rem;
}

.error-page { 
    text-align: center; padding: 4rem 0; 
    background: white; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.error-code { 
    font-size: 6rem; color: #e53e3e; font-weight: bold; 
    margin-bottom: 1rem;
}
.error-message { font-size: 1.5rem; color: #2d3748; margin-bottom: 2rem; }

.breadcrumbs { 
    margin-bottom: 2rem; padding: 1rem 0; 
    font-size: 0.9rem; color: #718096;
}
.breadcrumbs a { color: #e53e3e; text-decoration: none; }
.breadcrumbs a:hover { color: #c53030; }

footer { 
    background: #2d3748; color: #fff; padding: 3rem 0; margin-top: 4rem;
    text-align: center; border-radius: 8px 8px 0 0;
}
.footer-links { margin: 1.5rem 0; }
.footer-links a { color: #fed7d7; margin: 0 1.5rem; text-decoration: none; }
.footer-links a:hover { color: #fff; }

@media (max-width: 768px) {
    header { flex-direction: column; text-align: center; }
    nav { margin-top: 1rem; }
    nav a { margin: 0 1rem; }
    .hero h1 { font-size: 2.2rem; }
    .game-grid { grid-template-columns: 1fr; }
    .error-code { font-size: 4rem; }
}