/* General Body & Navbar Styling */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #1a1a1a;
  color: #fff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0d0d0d;
  padding: 1rem 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1px;
}

.logo span {
  color: #ffcc00; /* Gold color for 'Website' */
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #ffcc00;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  border-radius: 5px;
}

.nav-links li a:hover {
  color: #ffcc00;
  background-color: rgba(255, 204, 0, 0.1);
}

/* Hamburger Menu for Mobile */
.hamburger {
  display: none; /* Hidden on desktop */
  cursor: pointer;
}

.hamburger .line {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px;
  transition: transform 0.3s ease-in-out;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
  }
  
  .nav-links {
    flex-direction: column;
    width: 100%;
    text-align: center;
    display: none; /* Initially hidden on mobile */
  }

  .nav-links.active {
    display: flex; /* Shown when active */
  }
  
  .nav-links li {
    margin: 1rem 0;
  }
  
  .hamburger {
    display: block; /* Show hamburger on mobile */
  }

  .hamburger.active .line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .hamburger.active .line:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}









/* Import Google Fonts for better typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Montserrat:wght@400;600&display=swap');

:root {
  --primary-gold: #FFD700; /* Gold */
  --secondary-gold: #DAA520; /* Goldenrod */
  --dark-background: #0A0A0A;
  --text-light: #F0F0F0;
  --button-hover-shadow: rgba(255, 215, 0, 0.4);
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: var(--dark-background);
  color: var(--text-light);
  overflow-x: hidden; /* Prevent horizontal scroll from subtle animations */
}

/* Hero Section General Styles */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  /* Using a more dramatic, high-contrast image or video */
  background: url('https://images.unsplash.com/photo-1579548122046-e56598e01869?q=80&w=2940&auto=format&fit=crop') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden; /* Hide overflow from potential background animations */
}

/* More prominent, gradient overlay */
.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(20, 0, 0, 0.75) 100%);
  /* Adding a subtle animated "sparkle" or "dust" effect */
  animation: subtleGlow 15s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes subtleGlow {
  0% { box-shadow: inset 0 0 50px rgba(255, 215, 0, 0.05); }
  100% { box-shadow: inset 0 0 70px rgba(255, 215, 0, 0.1); }
}


/* Content Container */
.hero-content {
  position: relative;
  z-index: 2; /* Ensure content is on top of the overlay */
  max-width: 900px;
  padding: 3rem; /* Increased padding */
  background-color: rgba(0, 0, 0, 0.2); /* Slight transparent background for content */
  border-radius: 15px;
  backdrop-filter: blur(5px); /* Frosted glass effect */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.1); /* Deeper shadow */
  transform: translateY(0);
  animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-50px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
  font-family: 'Playfair Display', serif; /* Elegant serif font */
  font-size: clamp(2.5rem, 6vw, 4.8rem); /* Even larger and more responsive */
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.6), 0 0 5px rgba(0, 0, 0, 0.8); /* Stronger glow and shadow */
  line-height: 1.2;
}

.hero-content h1 span {
  color: var(--primary-gold);
}

.hero-content p {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  margin-bottom: 3rem; /* More space before buttons */
  line-height: 1.8;
  max-width: 700px; /* Constrain paragraph width for readability */
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeIn 1.5s ease-out 0.5s forwards; /* Delayed fade in */
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Call-to-Action Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem; /* Increased gap */
  opacity: 0;
  animation: fadeIn 1.5s ease-out 1s forwards; /* Delayed fade in */
}

.btn {
  padding: 1.2rem 3rem; /* Larger buttons */
  text-decoration: none;
  font-weight: 600; /* Bolder text */
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); /* Smoother transition */
  display: flex; /* Allow icon next to text */
  align-items: center;
  gap: 0.7rem; /* Space between text and icon */
  font-size: 1.1rem;
}

.btn i {
  font-size: 1.2rem;
}

.btn:hover {
  transform: translateY(-8px) scale(1.02); /* More pronounced lift and slight scale */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 25px var(--button-hover-shadow);
}

/* Primary Button (e.g., Join Now) */
.primary-btn {
  background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
  color: var(--dark-background); /* Dark text on gold */
  border: none; /* No border for gradient */
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.primary-btn:hover {
  background: linear-gradient(45deg, var(--secondary-gold), var(--primary-gold)); /* Invert gradient on hover */
  color: var(--dark-background);
}

/* Secondary Button (e.g., Explore Games) */
.secondary-btn {
  background-color: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.secondary-btn:hover {
  background-color: rgba(255, 215, 0, 0.1);
  color: var(--text-light);
  border-color: var(--text-light);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .hero-content {
    padding: 2rem;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .hero-content p {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  }

  .cta-buttons {
    flex-direction: column; /* Stack buttons vertically on small screens */
    gap: 1rem;
  }

  .btn {
    width: 80%; /* Make buttons wider */
    margin: 0 auto; /* Center buttons */
  }
}














/* Import Google Fonts for a consistent style */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Montserrat:wght@400;600;700&display=swap');

/* CSS Variables for easy color management */
:root {
  --primary-gold: #FFD700;
  --secondary-gold: #DAA520;
  --dark-background: #0A0A0A;
  --text-light: #F0F0F0;
  --accent-dark-grey: #1c1c1c;
  --card-background: rgba(26, 26, 26, 0.85); /* Slightly transparent for depth */
  --box-shadow-light: rgba(255, 215, 0, 0.1);
  --box-shadow-strong: rgba(0, 0, 0, 0.7);
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: var(--dark-background);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* --- General Button Styles (Reusing from Hero Section if available, but included here for completeness) --- */
.btn {
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex; /* Use inline-flex for button, allowing icon */
  align-items: center;
  gap: 0.7rem;
  font-size: 1.1rem;
}

.primary-btn {
  background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
  color: var(--dark-background);
  border: none;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.primary-btn:hover {
  transform: translateY(-5px) scale(1.02);
  background: linear-gradient(45deg, var(--secondary-gold), var(--primary-gold));
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5);
}
































/* Import Google Fonts for a consistent style */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Montserrat:wght@400;600;700&display=swap');

/* CSS Variables for easy color management */
:root {
  --primary-gold: #FFD700; /* Bright Gold */
  --secondary-gold: #DAA520; /* Darker Gold */
  --dark-background: #0A0A0A; /* Deepest Black */
  --text-light: #F0F0F0; /* Off-White */
  --card-background: rgba(10, 10, 10, 0.85); /* Slightly transparent dark */
  --glow-color-light: rgba(255, 215, 0, 0.4); /* Soft gold glow */
  --glow-color-strong: rgba(255, 215, 0, 0.8); /* Strong gold glow */
  --text-shadow-color: rgba(0, 0, 0, 0.7);
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: var(--dark-background);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden; /* Prevent horizontal scroll from animations */
}

/* --- General Button Styles (Reused/Adapted from previous sections) --- */
.btn {
  padding: 1.2rem 3rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.1rem;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.primary-btn {
  background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
  color: var(--dark-background);
  border: none;
  box-shadow: 0 5px 15px var(--glow-color-light);
}

.primary-btn.glowing-btn:hover {
  transform: translateY(-8px) scale(1.03);
  background: linear-gradient(45deg, var(--secondary-gold), var(--primary-gold));
  box-shadow: 0 0 30px var(--glow-color-strong);
}

/* --- About Section Container --- */
.about-glowing-section {
  position: relative;
  padding: 6rem 1rem;
  background: radial-gradient(circle at center, rgba(15, 15, 15, 1) 0%, rgba(0, 0, 0, 1) 100%);
  overflow: hidden; /* Contain glowing effects */
  text-align: center;
  z-index: 1; /* Ensure content is above background */
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Animated Background Glow Overlay */
.glow-effect-overlay {
  position: absolute;
  top: -50%; /* Start off-screen */
  left: -50%; /* Start off-screen */
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 60% 40%, rgba(255, 215, 0, 0.08) 0%, transparent 40%),
              radial-gradient(circle at 40% 60%, rgba(255, 215, 0, 0.08) 0%, transparent 40%);
  animation: backgroundGlow 25s infinite alternate ease-in-out;
  z-index: 0;
}

@keyframes backgroundGlow {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 0.9; }
  100% { transform: scale(1); opacity: 0.8; }
}


.about-glowing-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1; /* Content above background effects */
  animation: fadeIn 1.5s ease-out; /* Initial fade-in for the whole container */
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Header Styling --- */
.about-glowing-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--text-light);
  margin-bottom: 0.8rem;
  text-shadow: 0 0 20px var(--glow-color-light), 0 0 5px var(--text-shadow-color);
  line-height: 1.2;
}

.about-glowing-header h2 span {
  color: var(--primary-gold);
  text-shadow: 0 0 25px var(--glow-color-strong);
}

.intro-text {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 800px;
  margin: 0.5rem auto 3rem;
  color: rgba(240, 240, 240, 0.9);
  animation: fadeIn 1.5s ease-out 0.3s forwards;
  opacity: 0; /* Hidden initially for animation */
}

/* --- Main Content Grid --- */
.about-glowing-main-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* 3 columns on desktop */
  grid-template-rows: auto auto; /* Two rows for image and text blocks */
  gap: 3rem;
  padding: 0 2rem;
  position: relative;
  margin-bottom: 4rem;
}

/* Specific Grid Areas for better control and responsiveness */
.about-image-wrapper {
  grid-column: 1 / span 3; /* Image spans all 3 columns on desktop */
  grid-row: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2; /* Ensure image is above some text blocks potentially */
}

.about-main-image {
  max-width: 70%; /* Image width relative to its container */
  height: auto;
  border-radius: 15px;
  box-shadow: 0 0 40px var(--glow-color-strong), 0 0 15px rgba(0, 0, 0, 0.8);
  border: 3px solid var(--primary-gold);
  transform: rotate(-3deg); /* Slightly angled */
  transition: transform 0.5s ease-in-out;
  filter: saturate(1.1) brightness(0.9); /* Enhanced colors */
  animation: imageGlowPulse 10s infinite alternate; /* Subtle image glow */
}

@keyframes imageGlowPulse {
  0% { box-shadow: 0 0 40px var(--glow-color-strong), 0 0 15px rgba(0, 0, 0, 0.8); }
  100% { box-shadow: 0 0 50px var(--glow-color-strong), 0 0 20px rgba(0, 0, 0, 0.9); }
}

.about-main-image:hover {
  transform: rotate(0deg) scale(1.02); /* Straighten and slight enlarge on hover */
  box-shadow: 0 0 60px var(--glow-color-strong), 0 0 25px rgba(0, 0, 0, 0.9);
}

/* Text Blocks Styling */
.about-text-block {
  background-color: var(--card-background);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 0 25px var(--glow-color-light), 0 0 10px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  backdrop-filter: blur(8px); /* Frosted glass effect */
  animation: fadeInUp 1s ease-out forwards; /* Initial animation */
  opacity: 0; /* Hidden initially for animation */
  position: relative;
  z-index: 1;
}

/* Animation Delays for staggered appearance */
.vision-block { animation-delay: 0.8s; }
.story-block { animation-delay: 1.1s; }
.promise-block { animation-delay: 1.4s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}


.about-text-block:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 40px var(--glow-color-strong), 0 0 20px rgba(0, 0, 0, 0.7);
}

.about-text-block .icon-glowing {
  font-size: 3.8rem;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 15px var(--glow-color-strong);
  transition: transform 0.3s ease-in-out;
}

.about-text-block:hover .icon-glowing {
  transform: rotateY(360deg) scale(1.1);
}

.about-text-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.3;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.about-text-block p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(240, 240, 240, 0.9);
  margin: 0;
}

/* --- Call to Action --- */
.about-glowing-cta {
  margin-top: 5rem;
  background-color: var(--card-background);
  padding: 3rem 2rem;
  border-radius: 10px;
  box-shadow: 0 0 25px var(--glow-color-light), 0 0 10px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.15);
  max-width: 900px;
  width: 100%;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out 1.7s forwards;
  opacity: 0;
}


/* Add to your .about-glowing-section styles */
.about-glowing-section {
    /* ... existing styles ... */
    display: flex;
    flex-direction: column; /* To stack the heading and CTA vertically */
    align-items: center; /* This will center the CTA horizontally */
}

.about-glowing-container {
    /* ... existing styles ... */
    display: flex;
    flex-direction: column;
    align-items: center;
}





.about-glowing-cta h4 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--primary-gold);
  margin-bottom: 2.5rem;
  text-shadow: 0 0 15px var(--glow-color-strong);
}

/* --- Responsive Adjustments --- */
@media (max-width: 1200px) {
  .about-glowing-main-content {
    grid-template-columns: 1fr 1fr; /* 2 columns on medium screens */
    gap: 2.5rem;
    padding: 0 1rem;
  }

  .about-image-wrapper {
    grid-column: 1 / span 2; /* Image spans 2 columns */
  }
}

@media (max-width: 768px) {
  .about-glowing-section {
    padding: 4rem 0.5rem;
  }
  
  .about-glowing-header h2 {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }

  .intro-text {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
  }

  .about-glowing-main-content {
    grid-template-columns: 1fr; /* Single column on small screens */
    padding: 0;
  }
  
  .about-image-wrapper {
    grid-column: 1; /* Image spans 1 column */
    margin-bottom: 1.5rem;
  }

  .about-main-image {
    max-width: 90%; /* Larger image on small screens */
    transform: rotate(0deg); /* Straighten image on mobile */
  }

  .about-glowing-cta {
    padding: 2.5rem 1.5rem;
    max-width: 100%;
  }

  .about-glowing-cta h4 {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }

  .btn {
    width: 90%;
    margin: 0 auto; /* Center button on mobile */
    font-size: 1rem;
    padding: 1rem 2rem;
  }
}

@media (max-width: 480px) {
  .about-text-block {
    padding: 1.8rem;
  }
  .about-text-block .icon-glowing {
    font-size: 3rem;
  }
}
























/* --- General Button Styles (Re-used) --- */
.btn {
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.1rem;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.primary-btn {
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    color: var(--dark-background);
    border: none;
    box-shadow: 0 5px 15px var(--glow-color);
}

.primary-btn.glowing-btn:hover {
    transform: translateY(-5px) scale(1.02);
    background: linear-gradient(45deg, var(--secondary-gold), var(--primary-gold));
    box-shadow: 0 0 30px var(--strong-glow-color);
}

/* --- Holographic Leaderboard Section --- */
.holographic-leaderboard {
    position: relative;
    padding: 6rem 1rem;
    background: radial-gradient(circle at center, rgba(15, 15, 15, 1) 0%, rgba(0, 0, 0, 1) 100%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.holographic-container {
    max-width: 1200px;
    width: 100%;
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.holographic-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-light);
    text-shadow: 0 0 15px var(--glow-color);
    margin-bottom: 0.5rem;
    margin-top: -50px;
}

.holographic-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(240, 240, 240, 0.8);
    margin-bottom: 3rem;
}

/* --- The Marquee-style Feed --- */
.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden; /* This is essential to hide the list beyond the container */
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(255, 215, 0, 0.2);
}

.marquee-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    white-space: nowrap; /* Prevents list items from wrapping */
    animation: marquee 30s linear infinite; /* The key animation for the scroll */
}

/* Duplicate the list to create a seamless loop */
.marquee-list:after {
    content: attr(data-clone); /* This would require JS to truly duplicate, so we'll do it manually in HTML for simplicity */
    display: flex;
}

.marquee-list li {
    flex-shrink: 0; /* Prevents items from shrinking */
    padding: 0 2rem;
    animation: glow-pulse 5s infinite alternate;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); } /* Scrolls the entire list width */
}

@keyframes glow-pulse {
    0%, 100% { text-shadow: 0 0 5px var(--glow-color); }
    50% { text-shadow: 0 0 15px var(--strong-glow-color); }
}

.winner-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
}

.winner-icon {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.winner-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.winner-name {
    font-size: 1.2rem;
    font-weight: 600;
}

.winner-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.winner-game {
    font-size: 0.9rem;
    color: rgba(240, 240, 240, 0.6);
}

.leaderboard-cta {
    margin-top: 4rem;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .marquee-wrapper {
        padding: 1rem 0;
    }
    .winner-name {
        font-size: 1rem;
    }
    .winner-amount {
        font-size: 0.9rem;
    }
    .winner-game {
        font-size: 0.8rem;
    }
}
















/* --- Section & Title Styles --- */
.games-section {
    padding: 6rem 1rem;
    background: radial-gradient(circle at center, rgba(15, 15, 15, 1) 0%, rgba(0, 0, 0, 1) 100%);
    text-align: center;
    margin-top: -100px;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-gold);
    text-shadow: 0 0 15px var(--glow-color);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(240, 240, 240, 0.8);
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* --- Games Grid & Cards --- */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.game-card {
    position: relative;
    background: rgb(36, 36, 36);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 25px var(--glow-color);
}

.game-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.game-card:hover img {
    transform: scale(1.1);
}

.card-content {
    padding: 1.5rem;
    position: relative;
}

.game-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-gold);
    margin-top: 0;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.game-description {
    font-size: 0.9rem;
    color: rgba(240, 240, 240, 0.8);
    min-height: 40px;
}

.play-btn {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    color: var(--dark-background);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px var(--glow-color);
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--strong-glow-color);
}

/* --- View All Button --- */
.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s ease, color 0.3s ease;
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    color: var(--strong-glow-color);
}

.view-all-btn:hover i {
    transform: translateX(5px);
}





















/* --- General Button Styles --- */
.btn {
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1rem;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.play-now-btn {
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    color: var(--dark-background);
    border: none;
    box-shadow: 0 5px 15px var(--glow-color);
}

.play-now-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px var(--strong-glow-color);
    background: linear-gradient(45deg, var(--secondary-gold), var(--primary-gold));
}

/* --- Attractive Footer Styles --- */
.attractive-footer {
    background: radial-gradient(circle at center, rgba(15, 15, 15, 1) 0%, rgba(0, 0, 0, 1) 100%);
    padding: 4rem 1rem 2rem;
    position: relative;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    text-align: center;
    margin-top: -300px;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand-section {
    flex: 1 1 300px; /* Allows it to grow, but has a base width */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align text to the left */
    text-align: left;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    text-shadow: 0 0 10px var(--glow-color);
    margin-bottom: 0.5rem;
}

.brand-moto {
    font-style: italic;
    font-size: 1rem;
    color: var(--footer-text-muted);
    margin-bottom: 2rem;
}

.footer-links-grid {
    flex: 2 1 600px; /* Allows it to grow more, with a larger base width */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: left;
}

.footer-col h4 {
    font-size: 1.1rem;
    color: var(--primary-gold);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: var(--footer-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-gold);
}

/* Glowing Divider */
.footer-divider {
    width: 80%;
    max-width: 800px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-gold), transparent);
    box-shadow: 0 0 15px var(--glow-color);
    margin: 2rem auto;
    animation: divider-glow 3s infinite alternate ease-in-out;
}

@keyframes divider-glow {
    0%, 100% { box-shadow: 0 0 15px var(--glow-color); }
    50% { box-shadow: 0 0 25px var(--strong-glow-color); }
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    color: var(--footer-text-muted);
    font-size: 1.4rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
    color: var(--primary-gold);
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px var(--strong-glow-color));
}

.footer-copyright,
.footer-location {
    font-size: 1.1rem;
    color: rgba(240, 240, 240, 0.6);
    margin: 0;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2.5rem;
    }
    .footer-brand-section {
        align-items: center;
        text-align: center;
    }
    .footer-links-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

















/* --- Breadcrumb Section Styles --- */
.breadcrumb-section {
    position: relative;
    padding: 100px 20px;
    color: var(--text-light);
    overflow: hidden;
    text-align: center;
}

/* Background Image with a blur effect */
.breadcrumb-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(8px) brightness(0.7); /* Adjust blur and darkness as needed */
    z-index: -1;
}

/* Content Container */
.breadcrumb-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--text-light);
    text-shadow: 0 0 20px var(--glow-color);
    margin: 0 0 10px;
}

/* Breadcrumb List */
.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.breadcrumb-item {
    position: relative;
    font-size: 1rem;
    color: rgba(240, 240, 240, 0.8);
}

/* Separator between items */
.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: var(--primary-gold);
    font-weight: bold;
}

/* Link Styling */
.breadcrumb-item a {
    color: rgba(240, 240, 240, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-gold);
}

/* Active Page Styling */
.breadcrumb-item.active {
    color: var(--primary-gold);
    font-weight: 600;
    text-shadow: 0 0 10px var(--glow-color);
}





























/* Section Styles */
.faq-section {
    padding: 60px 20px;
    background: radial-gradient(circle at center, rgba(15, 15, 15, 1) 0%, rgba(0, 0, 0, 1) 100%);
    text-align: center;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #facc15;
    text-shadow: 0 0 10px rgba(250, 204, 21, 0.5);
    margin-bottom: 10px;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Category Buttons */
.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.category-btn {
    background: transparent;
    border: 1px solid #facc15;
    color: #facc15;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.category-btn:hover {
    background: #facc15;
    color: #0d0d0d;
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.7);
}

.category-btn.active {
    background: #facc15;
    color: #0d0d0d;
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.9);
}

/* FAQ Accordion List */
.faq-list {
    text-align: left;
}

.faq-group {
    display: none;
}

.faq-group.active {
    display: block;
}

.faq-item {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-item:hover {
    border-color: #facc15;
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.4);
}

.faq-question {
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    padding: 20px;
    cursor: pointer;
    display: block;
    user-select: none;
    transition: color 0.3s ease;
}

.faq-item[open] > .faq-question {
    color: #facc15;
}

.faq-question::marker {
    color: #facc15;
}

.faq-answer {
    padding: 0 20px 20px;
    color: #ccc;
    font-size: 0.95rem;
}

.faq-answer p {
    margin: 0;
}



















/* --- Testimonials Section Styles --- */
.testimonials-section {
    background-color: #050505;
    padding: 80px 20px;
    text-align: center;
    color: #f0f0f0;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #facc15;
    text-shadow: 0 0 15px rgba(250, 204, 21, 0.5);
    margin-bottom: 50px;
}

/* --- The Unique Grid Layout --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
}

/* Staggered effect for a unique look on wider screens */
@media (min-width: 1024px) {
    .testimonials-grid .testimonial-card:nth-child(2n) { /* Apply to every second card (2, 4, 6...) */
        transform: translateY(40px);
    }
}

/* --- Individual Testimonial Card --- */
.testimonial-card {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 40px 30px;
    position: relative;
    border: 1px solid #333;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4), 0 0 10px rgba(250, 204, 21, 0.2); /* Added base glow */
    overflow: hidden;
}

/* More prominent glow effect on hover */
.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #facc15;
    box-shadow: 0 0 25px rgba(250, 204, 21, 0.6), 0 0 35px rgba(250, 204, 21, 0.8); /* Intensified glow */
}

.quote-icon {
    font-size: 2.5rem;
    color: #facc15;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 20px;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover .quote-icon {
    opacity: 0.5;
}

.testimonial-text {
    font-style: italic;
    font-size: 1rem;
    margin: 0 0 25px;
    padding-top: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.author-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #facc15;
    text-transform: uppercase;
}

.author-title {
    font-size: 0.9rem;
    color: #999;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px 20px;
    }
    .testimonials-grid .testimonial-card:nth-child(2n) {
        transform: none; /* Remove stagger on small screens */
    }
}














/* --- Contact Section Styles --- */
.contact-section {
    background: #050505;
    padding: 80px 20px;
    color: #f0f0f0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

/* New Contact Info Container */
.contact-info-wrapper {
    flex: 1;
    min-width: 300px;
    padding: 0 40px; /* Add padding here instead of on the card */
}

/* Main Heading & Subtitle */
.contact-info-wrapper h2, .contact-form-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #facc15;
    text-shadow: 0 0 10px rgba(250, 204, 21, 0.5);
    margin-bottom: 20px;
}

.contact-info-wrapper p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 30px;
}

/* Single Info Card */
.info-card-single {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid #333;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.info-card-single:hover {
    border-color: #facc15;
    box-shadow: 0 0 25px rgba(250, 204, 21, 0.6);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 1.5rem;
    color: #facc15;
    padding-top: 5px; /* Adjust for vertical alignment */
}

.info-details h3 {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin: 0 0 5px;
}

.info-details span {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.4;
}

/* Form Section */
.contact-form-wrapper {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    border-radius: 15px;
    background-color: #1a1a1a;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
    box-shadow: 0 0 25px rgba(250, 204, 21, 0.6);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #f0f0f0;
    margin-bottom: 8px;
}

.form-group input, .form-group textarea {
    background-color: #0d0d0d;
    border: 1px solid #333;
    color: #f0f0f0;
    padding: 12px;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #facc15;
    box-shadow: 0 0 10px rgba(250, 204, 21, 0.6);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-group label a {
    color: #facc15;
    text-decoration: none;
    transition: color 0.3s ease;
}

.checkbox-group label a:hover {
    text-decoration: underline;
}

.submit-btn {
    background-color: #facc15;
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background-color: #e4b800;
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.8);
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}



















/* --- Newsletter Section Styles --- */
.newsletter-section {
    background: #0d0d0d;
    padding: 80px 20px;
    text-align: center;
    color: #f0f0f0;
    margin-top: 0px;
}

/* New: Wrapper for the Glowing Border Effect */
.newsletter-glow-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    background-color: #1a1a1a; /* Base background for the content area */
    border-radius: 15px;
    overflow: hidden; /* Important to contain pseudo-elements */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4); /* subtle depth */
    transition: all 0.5s ease-in-out;
}

/* Initial subtle glow */
.newsletter-glow-wrapper::before,
.newsletter-glow-wrapper::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #facc15, #ff6b6b, #4dabf7, #facc15);
    background-size: 400% 400%;
    filter: blur(8px); /* Initial blur for a soft glow */
    border-radius: 17px; /* Slightly larger than wrapper for blur effect */
    z-index: -1;
    opacity: 0.3; /* Subtle initial glow */
    transition: opacity 0.5s ease-in-out, background-position 0.8s ease-in-out;
}

/* Animate glow on hover */
.newsletter-glow-wrapper:hover::before,
.newsletter-glow-wrapper:hover::after {
    opacity: 0.8; /* Brighter glow on hover */
    background-position: 100% 100%; /* Move gradient for animation */
}

/* Additional layer for a deeper glow (optional but enhances effect) */
.newsletter-glow-wrapper::after {
    filter: blur(15px); /* More blur for a softer, deeper layer */
    opacity: 0.1; /* Very subtle initial deep glow */
    transition: opacity 0.5s ease-in-out, background-position 1s ease-in-out;
}

.newsletter-glow-wrapper:hover::after {
    opacity: 0.4; /* Deeper glow on hover */
    background-position: 0% 0%; /* Different animation direction */
}


/* Inner container for actual content */
.newsletter-container-inner {
    position: relative; /* To keep content above pseudo-elements */
    padding: 40px;
    background-color: #1a1a1a; /* Ensure inner background covers pseudo-elements */
    border-radius: 15px; /* Matches outer wrapper radius */
    z-index: 1; /* Keep content on top */
}


.newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #facc15;
    text-shadow: 0 0 15px rgba(250, 204, 21, 0.5);
    margin-bottom: 10px;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 40px;
}

/* --- Form Styles --- */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    background-color: #0d0d0d;
    border: 1px solid #333;
    border-radius: 8px;
    color: #f0f0f0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: #888;
}

.form-group input:focus {
    outline: none;
    border-color: #facc15;
    box-shadow: 0 0 10px rgba(250, 204, 21, 0.6);
}

.form-group.checkbox-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

/* Custom Checkbox */
.form-group input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #facc15;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group input[type="checkbox"]:checked {
    background-color: #facc15;
    border-color: #facc15;
}

.form-group input[type="checkbox"]:checked::after {
    content: '\2713'; /* Checkmark character */
    font-size: 14px;
    color: #0d0d0d;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-group label {
    font-size: 0.9rem;
    color: #ccc;
    cursor: pointer;
}

.subscribe-btn {
    background-color: #facc15;
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subscribe-btn:hover {
    background-color: #e4b800;
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.8);
}

/* Confirmation Message Styles */
.confirmation-message {
    padding: 30px;
    background-color: #1a1a1a;
    border-radius: 15px;
    border: 1px solid #facc15;
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.5);
    transition: opacity 0.5s ease;
    text-align: center;
    margin-top: 20px; /* Space from the form */
}

.confirmation-message.hidden {
    display: none;
    opacity: 0;
}

.confirmation-message i {
    font-size: 3rem;
    color: #4CAF50; /* Green checkmark */
    margin-bottom: 15px;
}

.confirmation-message h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #facc15;
    margin: 0 0 10px;
}

.confirmation-message p {
    font-size: 1rem;
    color: #ccc;
}














/* --- Blogs Section Styles --- */
.blogs-section {
    background: #0d0d0d;
    padding: 80px 20px;
    text-align: center;
    color: #f0f0f0;
}

.blogs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blogs-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #facc15;
    text-shadow: 0 0 15px rgba(250, 204, 21, 0.5);
    margin-bottom: 10px;
}

.blogs-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 50px;
}

/* --- Blogs Grid Layout --- */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* --- Unique Glowing Card Effect --- */
.blog-glow-wrapper {
    position: relative;
    border-radius: 15px;
    background-color: #1a1a1a;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease-in-out;
    overflow: hidden;
}

.blog-glow-wrapper::before,
.blog-glow-wrapper::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #facc15, #ff6b6b, #4dabf7, #facc15);
    background-size: 400% 400%;
    filter: blur(8px);
    border-radius: 17px;
    z-index: -1;
    opacity: 0.3;
    transition: opacity 0.5s ease-in-out, background-position 0.8s ease-in-out;
}

.blog-glow-wrapper:hover::before,
.blog-glow-wrapper:hover::after {
    opacity: 0.8;
    background-position: 100% 100%;
}

.blog-glow-wrapper::after {
    filter: blur(15px);
    opacity: 0.1;
    transition: opacity 0.5s ease-in-out, background-position 1s ease-in-out;
}

.blog-glow-wrapper:hover::after {
    opacity: 0.4;
    background-position: 0% 0%;
}

/* --- Individual Blog Card Styles --- */
.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #1a1a1a;
    border-radius: 15px;
    z-index: 1;
    position: relative;
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.blog-content {
    padding: 25px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #facc15;
    margin-top: 0;
    margin-bottom: 0px;
}

.blog-content p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 0px;
}

.read-more-btn {
    display: inline-block;
    background-color: #facc15;
    color: #1a1a1a;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 20px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    align-self: flex-start;
}

.read-more-btn:hover {
    background-color: #e4b800;
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.8);
}
