body{
    background-image: url('../image/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
    width: 100%;
}


.title {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
    text-align: center;
}

.title h1 {
    font-weight: bold;
    font-size: 50px;
    color: white;
    text-shadow: 2px 2px 5px rgba(162, 0, 255, 0.884);
    padding: 10px;
    display: inline-block;

}
@media (max-width: 768px) {
  .title h1{
    font-size: 30px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .title h1{
    font-size: 24px;
  }
}



.rowfour {
    width: 100%;
    height: 100px;
    text-align: center;
}

.game-section {
    position: relative; 
    width: 100%;
    padding: 80px 0px;

}
.game-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    text-shadow: 2px 2px 10px  rgba(8, 59, 168, 0.884);
    font-weight: bold;
    position: relative;
    color: whitesmoke;
}

.game-title::before,
.game-title::after {
    content: "";
    flex: 1;
    border-bottom: 2px solid #000;
    margin: 0 10px;
   
}


.card {
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    padding: 20px;
    margin: 10px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}
.card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}


.navbar {
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

.navbar a {
    font-weight: bold;
    color: whitesmoke;
    text-decoration: none;
}
.navbar ul li a {
    margin-left: 10px;

}

.navbar ul li a:hover {
    background-color: rgba(43, 110, 255, 0.884);
    border-radius: 6px;
    color: whitesmoke !important;
    text-shadow: 2px 2px 5px rgba(5, 37, 105, 0.884),
}

footer h5{

    text-shadow: 
        0 0 5px rgba(7, 71, 209, 0.884),
        0 0 10px rgba(7, 71, 209, 0.884),
        0 0 20px rgba(7, 71, 209, 0.884),
        0 0 40px rgba(7, 71, 209, 0.884);
    font-weight: bold;
}
.title h1{
    text-shadow: 
        0 0 5px rgba(7, 71, 209, 0.884),
        0 0 10px rgba(7, 71, 209, 0.884),
        0 0 20px rgba(7, 71, 209, 0.884),
        0 0 40px rgba(7, 71, 209, 0.884);

}

.custom-dropdown {
    position: relative;
}

.custom-dropdown .submenu {
    display: none;
    position: absolute;
    background-color: #000;
    padding: 10px;
    list-style: none;
    top: 100%;
    left: 0;
    min-width: 180px;
    z-index: 999;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.custom-dropdown:hover .submenu {
    display: block;
}

.custom-dropdown .submenu li {
    margin-bottom: 5px;
}

.custom-dropdown .submenu li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 5px 10px;
    border-radius: 4px;
}

.custom-dropdown .submenu li a:hover {
    background-color: #007bff;
}
