body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f7fa;
    color: #222;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffffcc;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    padding: 15px 30px;
    border-bottom: 1px solid #ddd;
    z-index: 1000;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
}

.logo span {
    color: #4a90e2;
}

nav a {
    margin-right: 40px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

nav a.active {
    color: #4a90e2;
}

.hero {
    padding: 150px 30px 80px;
    text-align: center;
}

.cta {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #4a90e2;
    color: white;
    text-decoration: none;
    border-radius: 6px;
}

.featured, .games-list, .about, .faq, .contact {
    padding: 80px 30px;
    max-width: 900px;
    margin: auto;
}

.game-card {
    background: white;
    padding: 20px;
    margin: 25px 0;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.game-img {
    width: 100%;
    height: 220px;          
    object-fit: cover;      
    border-radius: 8px;
    border: 1px solid #ccc;
    background: #f0f0f0;
}

.page-header {
    padding: 120px 30px 40px;
    text-align: center;
}

.faq-item {
    margin-bottom: 25px;
}

.game-link {
    display: inline-block;
    padding: 10px 20px;
    background: #4a90e2;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.25s ease;
}

.game-link:hover {
    background: #357acb;
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.4);
}