.service-hero {
    position: relative;
}
 
.service-hero img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    height: 300px;
     
}

 
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.4),
        rgba(0,0,0,0.6)
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay h1 {
    color: #fff;
    font-size: 38px;
    text-align: center;
}

.service-content {
    max-width: 820px;
    margin: 70px auto;
    padding: 0 20px;
    text-align: center;
}

.service-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.service-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #f5c400;
    color: #000;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.service-btn:hover {
    background: #e0b200;
    transform: translateY(-2px);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
    justify-items: center;  
}

 
.games-grid > .game-card {
    grid-column: 2 / 3;  
    max-width: 360px;
}

.game-card {
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

.game-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 14px;
}

.game-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    text-align: center;
}

.game-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 16px;
    flex-grow: 1;
}

.download-btn {
    display: inline-flex;       
    align-items: center;
    justify-content: center;
    margin: 0 auto;              
    padding: 10px 22px;
    background: #2a5298;
    color: #fff;
    text-decoration: none;
    border-radius: 22px;
    font-size: 14px;
    transition: background 0.3s ease;
    align-self: center;  
    margin-top: 16px;
}

.download-btn:hover {
    background: #2257b9;
}

@media (max-width: 900px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
}

.service-coming-soon{
    text-align: center;
    margin-top: 40px;
}

.coming-soon {
    font-size: 20px;
    font-weight: bold;
    color: #666;
    margin-top: 8px;
}

@media (max-width: 768px) {
  .service-button,
  .download-btn {
    width: 100%;
    font-size: 18px;
    padding: 16px;
  }
}