* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0f1016;
    color: #ffffff;
}

/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #171821;
    border-bottom: 2px solid #00f0ff;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo span {
    color: #00f0ff;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #00f0ff;
}

/* Hero Section */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&w=1350&q=80') center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-text h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #00f0ff;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #ccc;
}

.btn {
    padding: 12px 30px;
    background-color: #00f0ff;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background-color: #ff0055;
    color: #fff;
    box-shadow: 0 0 15px #ff0055;
}

/* Games Grid Section */
.games-section {
    padding: 50px;
    text-align: center;
}

.games-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    border-bottom: 2px solid #ff0055;
    display: inline-block;
    padding-bottom: 5px;
}

.game-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.game-card {
    background-color: #171821;
    border-radius: 10px;
    padding: 15px;
    width: 280px;
    text-align: center;
    border: 1px solid #2a2b36;
    transition: transform 0.3s;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: #00f0ff;
}

.card-image {
    height: 160px;
    border-radius: 8px;
    margin-bottom: 15px;
    background-size: cover;
    background-position: center;
}

.image-1 { background-image: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?auto=format&fit=crop&w=500&q=80'); }
.image-2 { background-image: url('https://images.unsplash.com/photo-1511512578047-dfb367046420?auto=format&fit=crop&w=500&q=80'); }
.image-3 { background-image: url('https://images.unsplash.com/photo-1538481199705-c710c4e965fc?auto=format&fit=crop&w=500&q=80'); }

.game-card h3 {
    margin-bottom: 5px;
}

.game-card p {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

.play-btn {
    width: 100%;
    padding: 10px;
    background-color: transparent;
    border: 1px solid #00f0ff;
    color: #00f0ff;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.play-btn:hover {
    background-color: #00f0ff;
    color: #000;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #171821;
    color: #666;
    margin-top: 40px;
}