/* ===================================
   GAMING ENHANCEMENTS CSS
   Modern Gaming Theme with Neon Effects
   =================================== */

/* ========== Custom Font ========== */
@font-face {
  font-family: 'Furore';
  src: url('../fonts/Furore.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ========== Color Variables ========== */
:root {
  --neon-cyan: #00ffff;
  --neon-pink: #ff00ff;
  --neon-purple: #9d00ff;
  --neon-blue: #0080ff;
  --neon-green: #00ff88;
  --neon-red: #ff0055;
  --neon-orange: #ff6600;
  --gaming-dark: #0a0e27;
  --gaming-darker: #050811;
  --gaming-light: #1a1f3a;
}

/* ========== Global Gaming Enhancements ========== */
body {
  position: relative;
  background-color: var(--gaming-darker);
  color: #e0e0e0;
}

/* General text styling */
p {
  color: #d0d0d0;
}

h1, h2, h3, h4, h5, h6 {
  color: #f5f5f5;
  font-family: 'Furore', sans-serif;
  font-weight: normal;
  letter-spacing: 1px;
}

.lead {
  color: #e8e8e8;
}

a {
  color: #b0b0b0;
}

a:hover {
  color: var(--neon-cyan);
  text-decoration: none;
}

ul, ol {
  color: #d0d0d0;
}

li {
  color: #d0d0d0;
}

.text-white {
  color: #ffffff !important;
}

/* Animated Background Gradient */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
    var(--gaming-darker) 0%,
    var(--gaming-dark) 25%,
    #1a0033 50%,
    var(--gaming-dark) 75%,
    var(--gaming-darker) 100%);
  opacity: 0.95;
  z-index: -1;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(20deg); }
}

/* ========== Neon Glow Effects ========== */
.neon-glow-cyan {
  text-shadow: 0 0 10px var(--neon-cyan),
               0 0 20px var(--neon-cyan),
               0 0 30px var(--neon-cyan),
               0 0 40px var(--neon-cyan);
  color: var(--neon-cyan);
}

.neon-glow-pink {
  text-shadow: 0 0 10px var(--neon-pink),
               0 0 20px var(--neon-pink),
               0 0 30px var(--neon-pink);
  color: var(--neon-pink);
}

.neon-glow-purple {
  text-shadow: 0 0 10px var(--neon-purple),
               0 0 20px var(--neon-purple),
               0 0 30px var(--neon-purple);
  color: var(--neon-purple);
}

/* ========== Box Neon Glow Effects ========== */
.box-neon-cyan {
  box-shadow: 0 0 10px var(--neon-cyan),
              0 0 20px var(--neon-cyan),
              0 0 30px rgba(0, 255, 255, 0.3),
              inset 0 0 10px rgba(0, 255, 255, 0.1);
  border: 1px solid var(--neon-cyan);
}

.box-neon-pink {
  box-shadow: 0 0 10px var(--neon-pink),
              0 0 20px var(--neon-pink),
              0 0 30px rgba(255, 0, 255, 0.3),
              inset 0 0 10px rgba(255, 0, 255, 0.1);
  border: 1px solid var(--neon-pink);
}

.box-neon-purple {
  box-shadow: 0 0 10px var(--neon-purple),
              0 0 20px var(--neon-purple),
              0 0 30px rgba(157, 0, 255, 0.3),
              inset 0 0 10px rgba(157, 0, 255, 0.1);
  border: 1px solid var(--neon-purple);
}

/* ========== Banner & Breadcrumb Backgrounds ========== */
.banner_part,
.breadcrumb,
.breadcrumb_bg {
  background-image: url('../img/banner_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.banner_part::before,
.breadcrumb::before,
.breadcrumb_bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
    rgba(157, 0, 255, 0.7) 0%,
    rgba(255, 0, 255, 0.6) 50%,
    rgba(0, 255, 255, 0.7) 100%);
  z-index: -1;
  animation: gradientMove 8s ease infinite;
}

.banner_part {
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.breadcrumb,
.breadcrumb_bg {
  min-height: 350px;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

/* ========== Animated Gradient Backgrounds ========== */
.hero-gradient-animated {
  background: linear-gradient(135deg,
    rgba(10, 14, 39, 0.95) 0%,
    rgba(26, 0, 51, 0.95) 25%,
    rgba(15, 5, 30, 0.95) 50%,
    rgba(10, 14, 39, 0.95) 75%,
    rgba(5, 8, 17, 0.95) 100%);
  background-size: 200% 200%;
  animation: gradientMove 8s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.gaming-gradient-bg {
  background-image: url('../img/body_bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.gaming-gradient-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
    rgba(5, 8, 17, 0.9) 0%,
    rgba(10, 14, 39, 0.85) 50%,
    rgba(26, 0, 51, 0.9) 100%);
  z-index: 0;
}

.gaming-gradient-bg > * {
  position: relative;
  z-index: 1;
}

@keyframes rotate360 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ========== Image Filters & Effects ========== */
.img-gaming-enhance {
  filter: brightness(1.1) contrast(1.2) saturate(1.3);
  transition: all 0.4s ease;
}

.img-gaming-enhance:hover {
  filter: brightness(1.3) contrast(1.3) saturate(1.5);
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(0, 255, 255, 0.4);
}

.img-neon-border {
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.img-neon-border:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px var(--neon-cyan),
              inset 0 0 20px rgba(0, 255, 255, 0.2);
  transform: translateY(-5px) scale(1.02);
}

.img-glow-overlay {
  position: relative;
  overflow: hidden;
}

.img-glow-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(0, 255, 255, 0.4),
    transparent);
  transition: left 0.5s ease;
}

.img-glow-overlay:hover::after {
  left: 100%;
}

/* ========== Gallery Enhancements ========== */
.single_gallery_item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.4s ease;
}

.single_gallery_item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
    rgba(255, 0, 85, 0.3),
    rgba(0, 255, 255, 0.3));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.grid-item:hover .single_gallery_item::before {
  opacity: 1;
}

.grid-item {
  transition: all 0.4s ease;
}

.grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 255, 255, 0.5);
  z-index: 10;
}

.grid-item:hover .bg_img {
  filter: brightness(1.2);
}

/* ========== Button Enhancements ========== */
.btn-gaming {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--neon-cyan);
  background: linear-gradient(135deg,
    rgba(0, 255, 255, 0.1),
    rgba(157, 0, 255, 0.1));
  color: var(--neon-cyan);
  padding: 12px 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.btn-gaming::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-gaming:hover::before {
  width: 300px;
  height: 300px;
}

.btn-gaming:hover {
  box-shadow: 0 0 20px var(--neon-cyan),
              0 0 40px var(--neon-cyan),
              inset 0 0 20px rgba(0, 255, 255, 0.2);
  transform: translateY(-3px);
  color: #fff;
}

.btn-gaming-pink {
  border-color: var(--neon-pink);
  color: var(--neon-pink);
  background: linear-gradient(135deg,
    rgba(255, 0, 255, 0.1),
    rgba(255, 0, 85, 0.1));
}

.btn-gaming-pink::before {
  background: rgba(255, 0, 255, 0.3);
}

.btn-gaming-pink:hover {
  box-shadow: 0 0 20px var(--neon-pink),
              0 0 40px var(--neon-pink),
              inset 0 0 20px rgba(255, 0, 255, 0.2);
}

/* ========== Card Enhancements ========== */
.card-gaming {
  background: linear-gradient(135deg,
    rgba(26, 31, 58, 0.9),
    rgba(10, 14, 39, 0.9));
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card-gaming p,
.card-gaming li {
  color: #d0d0d0;
}

.card-gaming h3,
.card-gaming h4,
.card-gaming h5 {
  color: #f5f5f5;
}

.card-gaming::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle,
    rgba(0, 255, 255, 0.1) 0%,
    transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card-gaming:hover::before {
  opacity: 1;
  animation: rotate360 10s linear infinite;
}

.card-gaming:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 255, 255, 0.3),
              0 0 30px rgba(157, 0, 255, 0.2);
  border-color: var(--neon-cyan);
}

/* ========== Hover Effects for All Elements ========== */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.hover-glow {
  transition: all 0.3s ease;
}

.hover-glow:hover {
  filter: drop-shadow(0 0 15px var(--neon-cyan));
}

.hover-pulse {
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ========== Section Transitions ========== */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ========== Loading Screen ========== */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
    var(--gaming-darker) 0%,
    #1a0033 50%,
    var(--gaming-darker) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-logo {
  width: 150px;
  height: 150px;
  margin-bottom: 30px;
  animation: logoFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 0 30px var(--neon-cyan));
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.loading-bar {
  width: 300px;
  height: 6px;
  background: rgba(0, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.loading-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    var(--neon-cyan),
    transparent);
  animation: loadingSlide 1.5s ease infinite;
}

@keyframes loadingSlide {
  from { left: -100%; }
  to { left: 100%; }
}

.loading-text {
  margin-top: 20px;
  color: var(--neon-cyan);
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: textPulse 1.5s ease infinite;
}

@keyframes textPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ========== Parallax Effect ========== */
.parallax-section {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: transform 0.1s ease-out;
}

/* ========== Number Counter Animation ========== */
.stat-number {
  font-size: 48px;
  font-weight: bold;
  color: var(--neon-cyan);
  text-shadow: 0 0 20px var(--neon-cyan);
  display: inline-block;
}

.stat-label {
  font-size: 18px;
  color: #c0c0c0;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 10px;
}

/* ========== Gaming Icons Pulse ========== */
.icon-gaming {
  display: inline-block;
  font-size: 48px;
  color: var(--neon-cyan);
  filter: drop-shadow(0 0 10px var(--neon-cyan));
  animation: iconPulse 2s ease infinite;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px var(--neon-cyan));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px var(--neon-cyan));
  }
}

.icon-gaming-pink {
  color: var(--neon-pink);
  filter: drop-shadow(0 0 10px var(--neon-pink));
}

@keyframes iconPulse-pink {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px var(--neon-pink));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px var(--neon-pink));
  }
}

/* ========== Testimonial Carousel Enhancement ========== */
.testimonial-card {
  background: linear-gradient(135deg,
    rgba(26, 31, 58, 0.8),
    rgba(10, 14, 39, 0.8));
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 15px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.testimonial-card p {
  color: #d5d5d5;
}

.testimonial-card h4 {
  color: #f0f0f0;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 100px;
  color: rgba(0, 255, 255, 0.1);
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 10px 40px rgba(0, 255, 255, 0.3);
  transform: translateY(-5px);
}

/* ========== Navbar Gaming Enhancement ========== */
.main_menu {
  background: linear-gradient(135deg,
    rgba(10, 14, 39, 0.95),
    rgba(26, 31, 58, 0.95));
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.main_menu.menu_fixed {
  box-shadow: 0 5px 30px rgba(0, 255, 255, 0.3);
}

/* Logo sizing */
.navbar-brand img {
  max-height: 50px;
  width: auto;
  height: auto;
  transition: all 0.3s ease;
}

.main_menu.menu_fixed .navbar-brand img {
  max-height: 40px;
}

@media (max-width: 768px) {
  .navbar-brand img {
    max-height: 40px;
  }

  .main_menu.menu_fixed .navbar-brand img {
    max-height: 35px;
  }
}

.nav-link {
  position: relative;
  transition: all 0.3s ease;
  color: #c0c0c0 !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg,
    var(--neon-cyan),
    var(--neon-pink));
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--neon-cyan) !important;
  text-shadow: 0 0 10px var(--neon-cyan);
}

/* Dropdown menu items */
.dropdown-menu {
  background: rgba(10, 14, 39, 0.98);
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.dropdown-item {
  color: #c0c0c0 !important;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: rgba(0, 255, 255, 0.1);
  color: var(--neon-cyan) !important;
}

/* ========== Footer Background ========== */
.footer_part {
  background-image: url('../img/footer_bg.png');
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.footer_part::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
    rgba(5, 8, 17, 0.95) 0%,
    rgba(10, 14, 39, 0.9) 50%,
    rgba(26, 0, 51, 0.95) 100%);
  z-index: -1;
}

.footer_part h4 {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  margin-bottom: 20px;
}

.footer_part .single_footer_part p,
.footer_part .single_footer_part li {
  color: #c0c0c0;
}

.footer_part .single_footer_part a {
  color: #b0b0b0;
  transition: all 0.3s ease;
}

.footer_part .single_footer_part a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  padding-left: 5px;
}

.copygight_text {
  background: rgba(5, 8, 17, 0.8);
  border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.single_social_icon {
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.single_social_icon:hover {
  background: var(--neon-cyan);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px var(--neon-cyan);
  transform: translateY(-3px);
}

.single_social_icon i {
  color: var(--neon-cyan);
}

.single_social_icon:hover i {
  color: #000;
}

/* ========== Section Backgrounds ========== */
.section_padding {
  background-image: url('../img/body_bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.section_padding::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
    rgba(5, 8, 17, 0.85) 0%,
    rgba(10, 14, 39, 0.8) 50%,
    rgba(26, 0, 51, 0.85) 100%);
  z-index: 0;
}

.section_padding > * {
  position: relative;
  z-index: 1;
}

/* ========== Responsive Adjustments ========== */
@media (max-width: 768px) {
  .stat-number {
    font-size: 36px;
  }

  .icon-gaming {
    font-size: 36px;
  }

  .loading-logo {
    width: 100px;
    height: 100px;
  }

  .loading-bar {
    width: 200px;
  }

  .banner_part {
    min-height: 400px;
    padding: 60px 0;
  }

  .breadcrumb,
  .breadcrumb_bg {
    min-height: 250px;
    padding: 50px 0;
  }
}

/* ========== Particle Effect (Subtle) ========== */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-cyan);
  animation: floatParticle 20s linear infinite;
}

@keyframes floatParticle {
  from {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  to {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}

/* ========== Promos Section ========== */
.promos_section {
  position: relative;
}

.single_promo {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 2px solid rgba(0, 255, 255, 0.2);
}

.single_promo:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 255, 255, 0.4),
              0 0 30px rgba(157, 0, 255, 0.3);
  border-color: var(--neon-cyan);
}

.promo-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.single_promo:hover .promo-image {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.promo_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
    rgba(10, 14, 39, 0.95),
    rgba(26, 0, 51, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.single_promo:hover .promo_overlay {
  opacity: 1;
}

.promo_content {
  text-align: center;
  padding: 20px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.single_promo:hover .promo_content {
  transform: translateY(0);
}

.promo_content h3 {
  margin-bottom: 15px;
  font-size: 24px;
}

.promo_content p {
  color: #d0d0d0;
  margin-bottom: 20px;
  font-size: 16px;
}

/* Responsive adjustments for promos */
@media (max-width: 768px) {
  .single_promo {
    margin-bottom: 20px;
  }

  .promo_content h3 {
    font-size: 20px;
  }

  .promo_content p {
    font-size: 14px;
  }
}
