:root {
    --primary-color: #00f2fe;
    --secondary-color: #4facfe;
    --bg-dark: #0f0c29;
    --card-bg: rgba(255, 255, 255, 0.05);
}

body {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #fff;
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
}

.navbar {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color) !important;
}

.hero-section {
    padding: 100px 0 60px;
    text-align: center;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 242, 254, 0.3);
}

.game-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.game-thumb {
    height: 200px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-color);
    position: relative;
}

.game-thumb i {
    transition: transform 0.3s ease;
}

.game-card:hover .game-thumb i {
    transform: scale(1.2);
}

.card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

.card-text {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.btn-play {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border: none;
    color: #000;
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 25px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-top: auto;
    transition: all 0.3s ease;
}

.btn-play:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.5);
    color: #000;
}

footer {
    padding: 40px 0;
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: #666;
}

.badge-new {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff0055;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
}

.border-dashed {
    border: 2px dashed rgba(255,255,255,0.2) !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-section {
        padding: 60px 0 40px;
    }

    .game-thumb {
        height: 160px;
        font-size: 2.5rem;
    }

    .card-title {
        font-size: 1.1rem;
    }
}
