:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-cyan: #00ffff;
    --accent-cyan-dim: #00cccc;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(0, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    overflow-y: auto;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    gap: 2rem;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--accent-cyan) 50%, #00aaff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 50px rgba(0, 255, 255, 0.4);
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--accent-cyan);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--accent-cyan);
    backdrop-filter: blur(5px);
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, var(--accent-cyan), #00aaff);
    color: #000;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.6);
}

.hero-disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #666;
}

/* Games Section */
.games-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #fff;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.game-card {
    background: rgba(20, 20, 20, 0.6);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.15);
}

.game-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.game-badge {
    background: var(--accent-cyan);
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.8rem;
}

.game-info {
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    position: absolute;
    bottom: 0;
    width: 100%;
}

.game-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.game-info p {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--accent-cyan);
    font-weight: 600;
}

/* Legal Section */
.legal-section {
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
}

.legal-container {
    max-width: 1400px;
    margin: 0 auto;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.legal-card {
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.legal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.legal-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #fff;
}

.legal-card p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.legal-card ul {
    list-style: none;
    padding-left: 0;
}

.legal-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #ccc;
}

.legal-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: bold;
}

.highlight {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: block;
    margin-top: 0.5rem;
    font-weight: 600;
    border-left: 3px solid var(--accent-cyan);
}

/* Warning Card - Yellow */
.warning-card {
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.4);
    animation: pulseYellow 2s infinite;
}

@keyframes pulseYellow {

    0%,
    100% {
        border-color: rgba(255, 215, 0, 0.3);
    }

    50% {
        border-color: rgba(255, 215, 0, 0.7);
    }
}

/* Danger Card - Orange */
.danger-card {
    background: rgba(255, 107, 0, 0.05);
    border: 2px solid rgba(255, 107, 0, 0.4);
    animation: pulseOrange 2s infinite;
}

@keyframes pulseOrange {

    0%,
    100% {
        border-color: rgba(255, 107, 0, 0.3);
    }

    50% {
        border-color: rgba(255, 107, 0, 0.7);
    }
}

/* Critical Card - Red */
.critical-card {
    background: rgba(255, 0, 0, 0.05);
    border: 2px solid rgba(255, 0, 0, 0.4);
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {

    0%,
    100% {
        border-color: rgba(255, 0, 0, 0.3);
    }

    50% {
        border-color: rgba(255, 0, 0, 0.7);
    }
}

/* Info Section */
.info-section {
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.info-card h3 {
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card p {
    color: #aaa;
    line-height: 1.6;
}

/* Secondary Apps */
.secondary-apps {
    padding: 4rem 2rem;
    text-align: center;
}

.small-card {
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.btn-sm {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.btn-sm:hover {
    background: var(--accent-cyan);
    color: #000;
}

/* Site Navigation Section */
.site-nav {
    padding: 4rem 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.nav-category h3 {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.nav-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.nav-card:hover {
    background: rgba(0, 255, 255, 0.08);
    border-color: var(--accent-cyan);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.1);
}

.nav-card-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.nav-card-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.nav-card-info p {
    font-size: 0.75rem;
    color: #888;
    margin: 0;
}

/* Footer */
footer {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #555;
    font-size: 0.9rem;
    text-align: center;
}

footer a {
    color: var(--accent-cyan);
    text-decoration: none;
    margin: 0 0.3rem;
}

footer a:hover {
    text-decoration: underline;
}

/* Footer Links Grid */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    margin-bottom: 1rem;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .game-image {
        height: 300px;
    }
}