/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #0a0a14;
  color: #ffffff;
  line-height: 1.6;
}

body .f_ad{
  margin-top: 100px;
}

.GMpAM {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  margin-top: 20px;
}

/* Banner Section */
.UncMtxzrk {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: 30px;
  border-radius: 0 0 10px 10px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
}

.JIBEjAsGFH {
  background-color: #07070e;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
}

.JIBEjAsGFH span {
  color: #ffffff;
}

.XeaQVioFc {
  margin: 0 10px;
}

.DolIH {
  font-weight: bold;
}

/* Content Layout */
.ysbeSaVk {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
}

.HeFjIpoAG {
  flex: 1;
  background-color: #07070e;
  border-radius: 10px;
  padding: 20px;
}

.UytwznTz {
  width: 300px;
}

/* Game Info Section */
.tpjGEkqYfg {
  font-size: 28px;
  margin-bottom: 20px;
  color: #ffffff;
}

.KowfV {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.KzdsiVPYJ {
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
}

.KzdsiVPYJ img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.GbrUDSDorD {
  flex: 1;
}

.GbrUDSDorD p {
  margin-bottom: 15px;
  font-size: 16px;
}

.TeKB {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #aabbcc;
}

.TeKB span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.TeKB img {
  width: 16px;
  height: 16px;
}

.AoEZaqO {
  font-size: 24px;
  color: #666;
  margin-top: 10px;
}

.JRdcyuJdL {
  color: #555;
}

.JRdcyuJdL.Omuxa {
  color: #ffcc00;
}

.qHwLIB {
  display: flex;
  align-items: center;
  justify-content: center;
}

.TsNsiO {
  background-color: #ff9933;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.TsNsiO:hover {
  background-color: #ff8811;
}

/* Description Section */
.JFpdfZzbkT {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #1a2a40;
}

.JFpdfZzbkT h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #ffffff;
}

.JFpdfZzbkT p {
  margin-bottom: 15px;
  color: #ccddee;
}

/* Sidebar */
.NYtai {
  font-size: 20px;
  margin-bottom: 20px;
  color: #ffffff;
}

.BlHTyK {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.GtYXm {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
  cursor: pointer;
}

.GtYXm:hover {
  transform: translateY(-5px);
}

.GtYXm img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.LpQrrq {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  padding: 8px;
  font-size: 14px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 900px) {
  .ysbeSaVk {
    flex-direction: column;
  }

  .UytwznTz {
    width: 100%;
  }

  .KowfV {
    flex-direction: column;
  }

  .KzdsiVPYJ {
    width: 100%;
    height: auto;
  }
}

/* All Games Section */
.UVswtK {
  margin-bottom: 50px;
}

.lvkvyqJX {
  font-size: 24px;
  margin-bottom: 20px;
  color: #ffffff;
}

.SWdmFcaNMR {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

.nUwSnWFt {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nUwSnWFt img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.LpQrrq {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  padding: 8px;
  font-size: 14px;
  text-align: center;
  color: #ffffff;
}

.nUwSnWFt:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 0 3px #fc8f16;
  z-index: 1;
}

/* Responsive adjustments for games grid */
@media (max-width: 1200px) {
  .SWdmFcaNMR {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .SWdmFcaNMR {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .SWdmFcaNMR {
    grid-template-columns: repeat(2, 1fr);
  }
}
