:root {
    --bg-dark: #050505;
    --bg-card: rgba(15, 15, 25, 0.7);
    --neon-cyan: #00f2ff;
    --neon-purple: #bc13fe;
    --neon-blue: #00d2ff;
    --text-main: #ffffff;
    --text-dim: #b0b0b0;
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-header: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-header);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Background Particles */
#canvas-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, #0a0a1a 0%, #050505 100%);
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-header);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 3px;
}

.logo span {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--neon-cyan);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(0, 242, 255, 0.5));
    animation: float 4s ease-in-out infinite;
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-family: var(--font-header);
    color: #fff;
    background: transparent;
    border: 2px solid var(--neon-cyan);
    cursor: pointer;
    border-radius: 5px;
    transition: 0.4s;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.cta-button:hover {
    background: var(--neon-cyan);
    box-shadow: 0 0 20px var(--neon-cyan);
    color: var(--bg-dark);
}

/* Sections General */
section {
    padding: 100px 10%;
}

h2.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

h2.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--neon-purple);
    box-shadow: 0 0 10px var(--neon-purple);
}

/* Games Section */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s;
    backdrop-filter: blur(5px);
    position: relative;
}

.game-card:hover {
    transform: translateY(-15px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.2);
}

.game-img {
    width: 100%;
    height: 200px;
    background: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.game-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: 0.5s;
}

.game-card:hover .game-img img {
    transform: scale(1.1);
    opacity: 1;
}

.game-info {
    padding: 25px;
}

.game-info h3 {
    margin-bottom: 10px;
    color: var(--neon-cyan);
}

.game-info p {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.download-link {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--neon-purple);
    color: var(--neon-purple);
    text-decoration: none;
    border-radius: 4px;
    font-family: var(--font-header);
    font-size: 0.8rem;
    transition: 0.3s;
}

.download-link:hover {
    background: var(--neon-purple);
    color: #fff;
    box-shadow: 0 0 15px var(--neon-purple);
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-dim);
}

/* Contact Section */
.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.email-box {
    font-size: 1.2rem;
    color: var(--neon-cyan);
    border: 1px dashed var(--neon-cyan);
    padding: 15px 30px;
}

.socials {
    display: flex;
    gap: 30px;
}

.socials a {
    color: var(--text-main);
    font-size: 1.5rem;
    transition: 0.3s;
    text-decoration: none;
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.socials a:hover {
    color: var(--neon-cyan);
    transform: translateY(-5px);
    background: rgba(0, 242, 255, 0.1);
}

/* Privacy Section */
.privacy-text {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-dim);
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 10px;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 3rem; }
    .hero p { font-size: 1.1rem; }
}
