/* Hero Section Container */
.gamer-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-top: 0;
}

/* Slideshow Container */
.hero-slider {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Individual Slides */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  opacity: 0;
  animation: fadeZoom 15s infinite;
}

/* Replace these with your own images */
.slide1 {
  background-image: url('images/345.jpg');
  filter: brightness(0.7) saturate(1.3) hue-rotate(-10deg);
}
.slide2 {
  background-image: url('images/346.jpg');
  filter: brightness(0.7) saturate(1.3) hue-rotate(-10deg);
  animation-delay: 5s; /* Slide #2 starts at 5s */
}
.slide3 {
  background-image: url('images/sphere.jpg');
  filter: brightness(0.7) saturate(1.3) hue-rotate(-10deg);
  animation-delay: 10s; /* Slide #3 starts at 10s */
}

/* Keyframes: Fade + Slight Zoom (Ken Burns Effect) */
@keyframes fadeZoom {
  0%   { opacity: 0; transform: scale(1);   }
  10%  { opacity: 1; transform: scale(1.05); }
  33.33% { opacity: 1; transform: scale(1.05); }
  43.33% { opacity: 0; transform: scale(1.1); }
  100% { opacity: 0; transform: scale(1.1); }
}

/* Dark Overlay */
.hero-overlay {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: linear-gradient(rgba(8, 0, 22, 0.8), rgba(15, 0, 48, 0.9));
  z-index: 2;
}

/* Grid Lines Effect */
.hero-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: -1;
}

/* Gaming decorations */
.hero-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.controller-icon {
  position: absolute;
  font-size: 10rem;
  opacity: 0.05;
  color: var(--accent);
}

.controller-icon.left {
  left: 5%;
  top: 20%;
  transform: rotate(-15deg);
  animation: float-icon 8s ease-in-out infinite;
}

.controller-icon.right {
  right: 5%;
  bottom: 20%;
  transform: rotate(15deg);
  animation: float-icon 8s ease-in-out 2s infinite;
}

@keyframes float-icon {
  0%, 100% {
    transform: rotate(-15deg) translateY(0);
  }
  50% {
    transform: rotate(-10deg) translateY(-20px);
  }
}

.glow-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.circle1 {
  width: 300px;
  height: 300px;
  background-color: rgba(0, 255, 255, 0.1);
  top: 10%;
  right: 10%;
  animation: pulse 6s infinite alternate;
}

.circle2 {
  width: 200px;
  height: 200px;
  background-color: rgba(255, 0, 255, 0.1);
  bottom: 15%;
  left: 10%;
  animation: pulse 8s infinite alternate-reverse;
}

.circle3 {
  width: 150px;
  height: 150px;
  background-color: rgba(0, 255, 255, 0.1);
  top: 40%;
  left: 20%;
  animation: pulse 7s infinite alternate;
}

@keyframes pulse {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  100% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

/* Diagonal divider */
.hero-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(135deg, transparent 50%, var(--background) 50%);
  z-index: 3;
}

/* Hero Content (Text + CTA) */
.hero-content {
  position: absolute;
  z-index: 4; /* Above overlay */
  text-align: left;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  width: 90%;
  padding: 20px;
}

.hero-badge {
  background-color: rgba(0, 255, 255, 0.1);
  color: var(--accent);
  display: inline-block;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid var(--accent);
  animation: badge-glow 2s infinite alternate;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Orbitron', sans-serif;
}

@keyframes badge-glow {
  0% {
    box-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
  }
  100% {
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
  }
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.7), 0 0 20px rgba(0, 255, 255, 0.4);
  letter-spacing: 4px;
  animation: glitchText 5s infinite alternate;
  color: var(--accent);
  line-height: 1.1;
}

@keyframes glitchText {
  0%, 100% { text-shadow: 0 0 10px rgba(0, 255, 255, 0.7), 0 0 20px rgba(0, 255, 255, 0.4); }
  33% { text-shadow: 0 0 10px rgba(255, 0, 255, 0.7), 0 0 20px rgba(255, 0, 255, 0.4); }
  66% { text-shadow: 0 0 10px rgba(255, 255, 0, 0.7), 0 0 20px rgba(255, 255, 0, 0.4); }
}

.hero-subtitle {
  font-size: 1.6rem;
  margin-bottom: 2.5rem;
  letter-spacing: 2px;
  font-weight: 500;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 1.2s ease-out 0.3s backwards;
  position: relative;
  display: inline-block;
  max-width: 80%;
}

.hero-subtitle::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

/* Hero buttons container */
.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

/* Glowing Button */
.btn-glow {
  display: inline-block;
  padding: 18px 40px;
  background-color: transparent;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  animation: fadeInUp 1.2s ease-out 0.6s backwards, buttonPulse 2s infinite alternate;
  border: 2px solid var(--accent);
  font-family: 'Orbitron', sans-serif;
  position: relative;
  overflow: hidden;
}

.btn-glow.primary {
  background-color: var(--accent);
  color: var(--primary);
  animation: fadeInUp 1.2s ease-out 0.6s backwards;
}

.btn-glow.secondary {
  background-color: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  animation: fadeInUp 1.2s ease-out 0.8s backwards;
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s ease;
}

.btn-glow:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.btn-glow.primary:hover {
  background-color: transparent;
  color: var(--accent);
}

.btn-glow.secondary:hover {
  background-color: var(--accent);
  color: var(--primary);
}

.btn-glow:hover::before {
  left: 100%;
}

@keyframes buttonPulse {
  0% { box-shadow: 0 0 10px rgba(0, 255, 255, 0.3); }
  100% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.8); }
}

/* Platform tags */
.gaming-platforms {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease-out 1s backwards;
}

.platform-tag {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.platform-tag:hover {
  background-color: rgba(0, 255, 255, 0.2);
  transform: translateY(-3px);
}

.platform-tag i {
  color: var(--accent);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
    max-width: 100%;
  }
  
  .controller-icon {
    font-size: 8rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    text-align: center;
  }
  
  .hero-title {
    font-size: 3rem;
    letter-spacing: 2px;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .hero-subtitle::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .btn-glow {
    padding: 15px 30px;
    font-size: 0.9rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .gaming-platforms {
    justify-content: center;
  }
  
  .controller-icon {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-badge {
    font-size: 0.8rem;
  }
  
  .btn-glow {
    padding: 12px 24px;
    font-size: 0.8rem;
  }
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Animation Keyframes */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact Info Section */
.contact-info {
  padding: 100px 5%;
  background-color: var(--primary);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 0, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.contact-info .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.contact-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.contact-image::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid var(--accent);
  z-index: -1;
  opacity: 0.3;
}

.contact-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 5px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.contact-image img:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.4);
}

.contact-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-width: 300px;
}

.contact-details h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--accent);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 15px;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.contact-details h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.contact-details:hover h2::after {
  width: 100px;
}

.contact-details p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.contact-details .fa-map-marker-alt {
  color: var(--accent);
}

/* Responsive adjustments for smaller screens */
@media screen and (max-width: 768px) {
  .contact-info {
    padding: 60px 5%;
  }
  
  .contact-info .container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .contact-image img {
    max-width: 90%;
    margin: 0 auto;
  }
  
  .contact-details {
    align-items: center;
  }
  
  .contact-details h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Events Section */
.events {
  padding: 100px 5%;
  background-color: var(--background);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.events::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(0deg, var(--primary) 1px, transparent 1px),
    linear-gradient(90deg, var(--primary) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.05;
  z-index: 0;
}

.events h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  z-index: 1;
}

.events h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.events:hover h2::after {
  width: 120px;
}

/* Slider Container */
.events-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  height: 500px;
  border-radius: 5px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 255, 0.2);
  z-index: 1;
}

/* Controller decorations */
.events-slider::before, .events-slider::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: 0;
}

.events-slider::before {
  top: -50px;
  left: -50px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%2300FFFF" d="M480 256c0 123.7-100.3 224-224 224S32 379.7 32 256 132.3 32 256 32s224 100.3 224 224zm-32 0c0-105.9-86.1-192-192-192S64 150.1 64 256s86.1 192 192 192 192-86.1 192-192zM256 336c44.2 0 80-35.8 80-80s-35.8-80-80-80-80 35.8-80 80 35.8 80 80 80zm0-128c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48z"/></svg>');
}

.events-slider::after {
  bottom: -50px;
  right: -50px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><path fill="%2300FFFF" d="M480 96H160C71.6 96 0 167.6 0 256s71.6 160 160 160c44.8 0 85.2-18.4 114.2-48h91.5c29 29.6 69.5 48 114.2 48 88.4 0 160-71.6 160-160S568.4 96 480 96zM256 276c0 6.6-5.4 12-12 12h-52v52c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-52H76c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h52v-52c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h52c6.6 0 12 5.4 12 12v40zm184 68c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-80c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48z"/></svg>');
}

/* Each Slide */
.event-slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.event-slide.active {
  display: block;
  opacity: 1;
}

/* Event Image */
.event-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) saturate(1.2);
}

/* Book Your Event Button */
.book-event-button {
  display: inline-block;
  margin-top: 40px;
  padding: 16px 36px;
  background-color: transparent;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  font-family: 'Orbitron', sans-serif;
  border: 2px solid var(--accent);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.book-event-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
  transition: left 0.7s ease;
  z-index: -1;
}

.book-event-button:hover {
  background-color: var(--accent);
  color: var(--primary);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
  transform: translateY(-5px);
}

.book-event-button:hover::before {
  left: 100%;
}

/* Glitch animation for buttons */
.glitch-hover {
  animation: glitch 0.3s cubic-bezier(.25, .46, .45, .94) both infinite;
  position: relative;
}

.glitch-hover::before,
.glitch-hover::after {
  content: attr(data-glitch);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip: rect(44px, 450px, 56px, 0);
  background: inherit;
  color: inherit;
  border: inherit;
  border-radius: inherit;
}

.glitch-hover::before {
  left: 1px;
  text-shadow: -1px 0 rgba(255, 0, 255, 0.7);
  animation: glitch-anim-1 0.2s infinite linear alternate-reverse;
}

.glitch-hover::after {
  left: -1px;
  text-shadow: 1px 0 rgba(0, 255, 255, 0.7);
  animation: glitch-anim-2 0.3s infinite linear alternate-reverse;
}

@keyframes glitch {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}

@keyframes glitch-anim-1 {
  0% {
    clip: rect(26px, 9999px, 29px, 0);
  }
  25% {
    clip: rect(51px, 9999px, 95px, 0);
  }
  50% {
    clip: rect(31px, 9999px, 24px, 0);
  }
  75% {
    clip: rect(100px, 9999px, 18px, 0);
  }
  100% {
    clip: rect(19px, 9999px, 67px, 0);
  }
}

@keyframes glitch-anim-2 {
  0% {
    clip: rect(18px, 9999px, 91px, 0);
  }
  25% {
    clip: rect(83px, 9999px, 98px, 0);
  }
  50% {
    clip: rect(42px, 9999px, 11px, 0);
  }
  75% {
    clip: rect(63px, 9999px, 28px, 0);
  }
  100% {
    clip: rect(3px, 9999px, 48px, 0);
  }
}

/* Floating animation for icons */
@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Scanlines effect for gaming aesthetic */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(
    rgba(18, 16, 16, 0) 50%,
    rgba(0, 0, 0, 0.02) 50%
  );
  background-size: 100% 4px;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.2;
}

/* Gaming grid background enhancement */
.events::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.03;
  z-index: -1;
  filter: blur(60px);
}

/* Gaming Offerings Section */
.gaming-offerings {
  padding: 100px 5%;
  background-color: var(--background);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Circuit board background effect */
.gaming-offerings::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(255, 0, 255, 0.03) 0%, transparent 50%);
  z-index: 0;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  z-index: 1;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 50px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

/* Offerings container with grid layout */
.offerings-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 50px;
  position: relative;
  z-index: 1;
}

/* Individual offering cards */
.offering-card {
  background: linear-gradient(145deg, rgba(23, 7, 66, 0.7), rgba(15, 0, 48, 0.9));
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 255, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Highlight effect on card hover */
.offering-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.offering-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 255, 255, 0.2);
}

.offering-card:hover::before {
  opacity: 1;
}

/* Icon styling */
.offering-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

/* Card heading */
.offering-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

/* Card description */
.offering-card p {
  color: var(--text-light);
  opacity: 0.8;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Features list */
.offering-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin-top: auto;
}

.offering-features span {
  color: var(--text-light);
  opacity: 0.9;
}

.offering-features i {
  color: var(--accent);
  margin-right: 8px;
}

/* CTA Button */
.offerings-cta {
  margin-top: 20px;
  display: inline-block;
  position: relative;
  z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gaming-offerings {
    padding: 60px 5%;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .offerings-container {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

/* Summer Camp Section */
.summer-camp {
  background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(25,25,50,0.9)), url('images/IMG_2087.JPG');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 60px 5%;
  color: var(--text-light);
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}

.camp-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
  align-items: center;
}

.camp-images {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
}

.camp-images .camp-image:first-child {
  grid-column: span 2;
}

.camp-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid var(--accent);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--neon-glow);
}

.camp-image:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px var(--accent);
}

.camp-info {
  flex: 1;
  min-width: 300px;
  padding: 25px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  border: 1px solid var(--accent);
  box-shadow: var(--neon-glow);
}

.camp-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--accent);
  color: var(--text-dark);
  padding: 10px 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 1.1rem;
}

.camp-highlight i {
  font-size: 1.3rem;
  animation: pulse 2s infinite;
}

.camp-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.camp-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.camp-features i {
  color: var(--accent);
}

.camp-cta {
  margin-top: 20px;
  display: inline-block;
  padding: 12px 25px;
}

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

@media screen and (max-width: 768px) {
  .camp-container {
    flex-direction: column;
  }
  
  .camp-images {
    order: 2;
  }
  
  .camp-info {
    order: 1;
  }
}
  