/* === DARK GLOW HEADER === */
.glowing-header {
 position: sticky;
  top: 0;
  z-index: 999;
  background: radial-gradient(circle at 50% 0%, rgba(0, 179, 255, 0.15), transparent 70%),
              linear-gradient(180deg, #0b0f1a 0%, #0d101a 100%);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.15);
  border-bottom: 1px solid rgba(0, 255, 255, 0.15);
  animation: headerPulse 6s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

.glowing-header .navbar-brand span {
  background: linear-gradient(90deg, #00b3ff, #00ffd5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  letter-spacing: 1px;
}


/* === =============================== === */
/* === =============================== === */
/* === =============================== === */

.navbar-dark .nav-link {
  color: #fff !important;
  transition: color 0.3s, text-shadow 0.3s;
  font-weight: 500;
}

.navbar-dark .nav-link:hover {
  color: #00e0ff !important;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.8);
}

.dropdown-menu {
  background: #101522;
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
}

.dropdown-item {
  color: #c8e9ff;
  transition: all 0.3s;
}

.dropdown-item:hover {
  background: linear-gradient(90deg, #007bff, #00ffd5);
  color: #fff;
}


/* === =============================== === */
/* === =============================== === */
/* === =============================== === */


/* Search Bar */
.search-bar {
  /* background: rgba(0, 255, 255, 0.1); */
  border-radius: 25px;
  transition: box-shadow 0.3s;
}

.search-bar:hover {
  /* box-shadow: 0 0 10px rgba(0, 255, 255, 0.4); */
}

.search-bar input::placeholder {
  /* color: #a0c4ff; */
  color:#000;
  opacity: 0.8;
}


.btn { 
  --bs-btn-color: none !important
}


/* === =============================== === */
/* === ==============Body ================= === */

/* === =============================== === */ 

.category-btn {
  background: rgba(20, 10, 0, 0.85);
  border: 1px solid rgba(255, 136, 0, 0.5);
  color: #ffb84d;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 15px;
  box-shadow: 0 0 8px rgba(255, 120, 0, 0.15);
}

.category-btn i {
  color: #ff9900;
  font-size: 14px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.category-btn:hover {
  background: radial-gradient(circle, rgba(255, 150, 0, 0.25), rgba(40, 20, 0, 0.8));
  color: #fff;
  border-color: #ff6600;
  box-shadow: 0 0 20px rgba(255, 120, 0, 0.6), 0 0 10px rgba(255, 80, 0, 0.4);
  transform: translateY(-3px);
}

.category-btn:hover i {
  transform: scale(1.3);
  color: #fff;
}

/* Optional glowing hover animation pulse */
.category-btn:hover {
  animation: glowPulse 1.5s infinite alternate;
}

@keyframes glowPulse {
  from {
    box-shadow: 0 0 10px rgba(255, 100, 0, 0.4);
  }
  to {
    box-shadow: 0 0 20px rgba(255, 150, 0, 0.8);
  }
}

/* === =============================== === */
/* === =============================== === */
/* === =============================== === */

.game-card {
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4);
}

.game-card img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

/* Hover overlay with title */
.game-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
  font-weight: 600;
  transition: opacity 0.3s ease;
  border-radius: 10px;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.btn-play {
  display: inline-block;
  background: linear-gradient(90deg, #ff7b00, #ffae42);
  color: #000;
  font-weight: bold;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-play:hover {
  background: linear-gradient(90deg, #ffc107, #ff9800);
  color: #111;
}

    /* Optional hover glow effect */ 


    