* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans SC', sans-serif;
}

body {
    background-color: #0a0a10;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 16, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: 0.3s;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(90deg, #00ffff, #8a2be2);
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: #00ffff;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.15) 0%, rgba(10, 10, 16, 1) 70%);
    z-index: -1;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 24px;
    background: linear-gradient(45deg, #ffffff, #00ffff);
    -webkit-background-clip: text;
    color: transparent;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 20px;
    color: #b0b0b0;
    margin-bottom: 40px;
    max-width: 650px;
    margin-inline: auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.btn {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(45deg, #8a2be2, #00ffff);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 1s ease-out 0.4s both;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.4);
}

/* Section Common */
section {
    padding: 120px 5%;
}

.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    font-weight: 800;
    background: linear-gradient(90deg, #fff, #a0a0a0);
    -webkit-background-clip: text;
    color: transparent;
}

/* Games Section */
.games {
    background: #0d0d14;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.game-card:hover {
    transform: translateY(-15px);
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.15);
}

.game-img {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    letter-spacing: 2px;
}

.game-info {
    padding: 30px;
}

.game-info h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
}

.game-info p {
    color: #a0a0a0;
    font-size: 15px;
    line-height: 1.6;
}

/* About Section */
.about {
    position: relative;
    overflow: hidden;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #b0b0b0;
    font-size: 18px;
    line-height: 2;
    background: rgba(255, 255, 255, 0.02);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-content strong {
    color: #fff;
    font-size: 22px;
}

/* Contact Section */
.contact {
    background: #08080c;
    text-align: center;
}

.contact-email {
    font-size: 24px;
    color: #00ffff;
    font-weight: 600;
    margin-top: 20px;
    display: inline-block;
    padding: 15px 40px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

/* Footer */
footer {
    background: #030305;
    padding: 60px 5% 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-info {
    margin-bottom: 30px;
}

.footer-info p {
    color: #888;
    margin-bottom: 12px;
    font-size: 15px;
}

.footer-info a {
    color: #00ffff;
    transition: 0.3s;
}

.footer-info a:hover {
    text-shadow: 0 0 10px rgba(0,255,255,0.5);
}

.links p {
    color: #666;
    font-size: 13px;
    margin-top: 15px;
}

.links a {
    color: #888;
    transition: 0.3s;
}

.links a:hover {
    color: #fff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media(max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-content h1 {
        font-size: 48px;
    }
    .hero-content p {
        font-size: 16px;
    }
    section {
        padding: 80px 20px;
    }
    .about-content {
        padding: 40px 20px;
    }
}
