.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('img/bg.jpg');
    background-size: cover;
    font-family: "Raleway", sans-serif;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.navbar {
    box-shadow: 2px 2px 2px #000000;}

.navbar-brand img {
    height: 75px;
}

.btn-play {
    background-color: #ff5722;
    color: white;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    font-size: 1.2rem;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-play:hover {
    background-color: #e64a19;
    transform: scale(1.05);
}
.games-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show, .navbar-expand-lg .navbar-nav .nav-link{
    color: black !important
}
.game-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.game-img {
    height: 200px;
    object-fit: cover;
}

.game-title {
    font-weight: 700;
    color: #2c3e50;
}

.game-provider {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.game-btn {
    background-color: #ff5722;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 0.9rem;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
}
iframe{
    width: 80%;
    height: 500px;
    margin: 0 auto;
    display: block;

}
button a {
    color: white !important
}