:root {
    --primary-color: #00f3ff;
    --secondary-color: #bc13fe;
    --bg-dark: #050510;
    --bg-card: #0a0a20;
    --text-light: #ffffff;
    --text-gray: #a0a0c0;
    --neon-glow: 0 0 10px rgba(0, 243, 255, 0.7);
    --purple-glow: 0 0 10px rgba(188, 19, 254, 0.7);
    --border-neon: 1px solid rgba(0, 243, 255, 0.3);
}

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

body {
    font-family: 'Orbitron', 'Open Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    background-image: 
        linear-gradient(rgba(5, 5, 16, 0.9), rgba(5, 5, 16, 0.9)),
        url('../images/hero-cyber.webp');
    background-attachment: fixed;
    background-size: cover;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: var(--neon-glow);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-shadow: var(--purple-glow);
}

/* Header */
header {
    background: rgba(10, 10, 32, 0.95);
    border-bottom: 1px solid var(--primary-color);
    padding: 1rem 0;
    position: relative;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 243, 255, 0.2);
}

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

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

.logo img {
    height: 60px;
    filter: drop-shadow(0 0 5px var(--primary-color));
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 4px;
}

nav a:hover {
    border-color: var(--primary-color);
    background: rgba(0, 243, 255, 0.1);
    box-shadow: var(--neon-glow);
}

.cta-button {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #000;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(188, 19, 254, 0.7);
    color: #fff;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(to bottom, rgba(5,5,16,0.3), var(--bg-dark));
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 0 10px rgba(0,243,255,0.5));
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #fff;
}

/* Game Grid */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

.game-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 243, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(0, 243, 255, 0.1) 45%, transparent 50%);
    background-size: 200% 200%;
    transition: background-position 0.5s;
    z-index: 1;
    pointer-events: none;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
    border-color: var(--primary-color);
}

.game-card:hover::before {
    background-position: 100% 100%;
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
}

.game-info {
    padding: 1.5rem;
}

.game-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Content Sections */
.content-section {
    background: rgba(10, 10, 32, 0.8);
    padding: 3rem;
    margin: 2rem 0;
    border-radius: 15px;
    border: 1px solid rgba(188, 19, 254, 0.2);
    backdrop-filter: blur(10px);
}

.content-section h2 {
    border-left: 4px solid var(--secondary-color);
    padding-left: 1rem;
}

/* Footer */
footer {
    background: #02020a;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--primary-color);
    margin-top: 4rem;
}

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

.footer-col h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-gray);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}
