* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #10b981;
    --primary-dark: #059669;
    --secondary-color: #3b82f6;
    --bg-dark: #1f2937;
    --bg-darker: #111827;
    --text-light: #f9fafb;
    --text-gray: #9ca3af;
    --border-color: #374151;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hidden {
    display: none !important;
}

/* Age Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-gate-content {
    background: #374151;
    padding: 50px;
    border-radius: 20px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary-color);
}

.age-gate-logo {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.age-gate h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.age-gate h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.age-gate-warning {
    font-size: 18px;
    color: var(--warning);
    font-weight: bold;
    margin-bottom: 15px;
}

.age-gate-disclaimer {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.age-gate-question {
    margin: 30px 0;
}

.age-gate-question p {
    font-size: 20px;
    margin-bottom: 20px;
}

.age-gate-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-yes, .btn-no {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-yes {
    background: var(--success);
    color: white;
}

.btn-yes:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-no {
    background: #6b7280;
    color: white;
}

.btn-no:hover {
    background: #4b5563;
}

.age-gate-footer {
    margin-top: 30px;
    font-size: 14px;
    color: var(--text-gray);
}

.age-gate-footer a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Header */
.site-header {
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    border-bottom: 2px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-light);
    font-size: 20px;
    font-weight: bold;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Disclaimer Banner */
.disclaimer-banner {
    background: var(--warning);
    color: #000;
    padding: 12px 0;
    text-align: center;
    font-weight: bold;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-gray);
}

.hero-disclaimer {
    font-size: 16px;
    color: var(--warning);
    font-weight: bold;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 18px 40px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

/* Features Section */
.features {
    padding: 80px 0;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(55, 65, 81, 0.5);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.feature-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Game Categories */
.game-categories {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.game-categories h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s;
    border: 2px solid var(--border-color);
}

.category-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
}

.category-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.category-card p {
    color: var(--text-gray);
}

/* Important Info */
.important-info {
    padding: 80px 0;
}

.important-info h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--warning);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-card {
    background: rgba(239, 68, 68, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--warning);
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--warning);
}

.info-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.info-card a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background: var(--bg-darker);
    padding: 60px 0 30px;
    margin-top: 80px;
    border-top: 2px solid var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-disclaimer {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-disclaimer p {
    margin-bottom: 10px;
    color: var(--text-gray);
}

.footer-disclaimer strong {
    color: var(--warning);
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 15px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .age-gate-content {
        padding: 30px;
        margin: 20px;
    }

    .age-gate-buttons {
        flex-direction: column;
    }
}
