:root {
    --primary-neon: #00ff88;
    --secondary-neon: #ff00ff;
    --dark-bg: #0a0e27;
    --card-bg: #1a1f3a;
    --text-light: #e0e0e0;
}

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

body {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0f1535 100%);
    color: var(--text-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.navbar {
    background: rgba(26, 31, 58, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-neon);
    box-shadow: 0 4px 30px rgba(0, 255, 136, 0.3);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-neon) !important;
    text-shadow: 0 0 20px var(--primary-neon);
    transition: all 0.3s;
}

.navbar-brand:hover {
    text-shadow: 0 0 30px var(--primary-neon), 0 0 50px var(--primary-neon);
    transform: scale(1.05);
}

.nav-link {
    color: var(--text-light) !important;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-neon);
    transition: all 0.3s;
    transform: translateX(-50%);
}

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

.nav-link:hover {
    color: var(--primary-neon) !important;
}

.hero-section {
    padding: 50px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px var(--primary-neon));
    }

    to {
        filter: drop-shadow(0 0 40px var(--secondary-neon));
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-primary-custom {
    background: linear-gradient(45deg, var(--primary-neon), #00cc6f);
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    color: var(--dark-bg);
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 5px 25px rgba(0, 255, 136, 0.4);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.6);
}

.game-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
    height: 100%;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
}

.game-card:hover::before {
    opacity: 0.1;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-neon);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.4);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.game-card-body {
    padding: 20px;
    position: relative;
    z-index: 1;
}

.game-title {
    color: var(--primary-neon);
    font-weight: bold;
    margin-bottom: 10px;
}

.category-badge {
    background: linear-gradient(45deg, var(--primary-neon), #00cc6f);
    color: var(--dark-bg);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-neon);
    margin-bottom: 50px;
    text-align: center;
    text-shadow: 0 0 20px var(--primary-neon);
}

.stats-box {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--primary-neon);
    transition: all 0.3s;
}

.stats-box:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.4);
}

.stats-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-neon);
}

.stats-label {
    font-size: 1.2rem;
    color: var(--text-light);
}

footer {
    background: var(--card-bg);
    padding: 40px 0;
    margin-top: 100px;
    border-top: 2px solid var(--primary-neon);
}

.social-icon {
    color: var(--text-light);
    font-size: 1.5rem;
    margin: 0 15px;
    transition: all 0.3s;
}

.social-icon:hover {
    color: var(--primary-neon);
    transform: scale(1.2);
}

.play-btn {
    background: linear-gradient(45deg, var(--secondary-neon), #cc00cc);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 0, 255, 0.5);
}
