:root {
  --primary-gold: #d4af37;
  --dark-gold: #b8860b;
  --light-gold: #f7e98e;
  --dark-bg: #0a0a0a;
  --darker-bg: #050505;
  --card-bg: #1a1a1a;
  --text-light: #ffffff;
  --text-gold: #d4af37;
  --text-muted: #888888;
  --gradient-gold: linear-gradient(135deg, #d4af37, #f7e98e);
  --gradient-dark: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
  --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.5);
  --neon-blue: #00ffff;
  --neon-pink: #ff1493;
  --neon-green: #39ff14;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--dark-bg);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-gold);
  border-radius: 4px;
}

/* Particles Background */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

/* Enhanced Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-container {
  text-align: center;
  position: relative;
  z-index: 2;
}

.loading-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-gold);
  animation: logoGlow 2s ease-in-out infinite alternate;
}

.loading-logo i {
  margin-right: 15px;
  font-size: 3rem;
  animation: keyRotate 3s linear infinite;
}

.loading-progress {
  width: 300px;
  height: 6px;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto 20px;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 10px;
  width: 0%;
  transition: width 0.3s ease;
  position: relative;
  overflow: hidden;
}

.progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 1.5s infinite;
}

.loading-text {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 10px;
  animation: textPulse 2s ease-in-out infinite;
}

.loading-percentage {
  color: var(--text-gold);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Playfair Display", serif;
}

.loading-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23D4AF37" opacity="0.3"><animate attributeName="opacity" values="0.3;1;0.3" dur="2s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="1.5" fill="%23F7E98E" opacity="0.4"><animate attributeName="opacity" values="0.4;1;0.4" dur="3s" repeatCount="indefinite"/></circle><circle cx="30" cy="70" r="1" fill="%23D4AF37" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="2.5s" repeatCount="indefinite"/></circle><circle cx="70" cy="80" r="2.5" fill="%23F7E98E" opacity="0.3"><animate attributeName="opacity" values="0.3;1;0.3" dur="4s" repeatCount="indefinite"/></circle></svg>')
    repeat;
  animation: particleFloat 20s linear infinite;
  opacity: 0.6;
}

/* Loading Animations */
@keyframes logoGlow {
  0% {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  }
  100% {
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.6);
  }
}

@keyframes keyRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes textPulse {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-20px);
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
  height: 70px;
}

.navbar {
  padding: 10px 0;
  height: 100%;
}

.navbar-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  display: flex;
  align-items: center;
  position: relative;
}

.navbar-brand::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width 0.3s ease;
}

.navbar-brand:hover::after {
  width: 100%;
}

.nav-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-auth {
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 0.9rem;
  min-width: 70px;
  text-align: center;
}

.btn-login {
  background: transparent;
  color: var(--text-gold);
  border: 2px solid var(--primary-gold);
}

.btn-login:hover {
  background: var(--primary-gold);
  color: var(--dark-bg);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-register {
  background: var(--gradient-gold);
  color: var(--dark-bg);
  border: none;
}

.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Running Text Marquee */
.running-text-container {
  background: var(--gradient-gold);
  padding: 8px 0;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
  z-index: 999;
}

.running-text {
  display: flex;
  align-items: center;
  color: var(--dark-bg);
  font-weight: 600;
  font-size: 0.9rem;
}

.running-text i {
  margin-left: 20px;
  animation: pulse 2s infinite;
}

.running-text marquee {
  font-weight: 600;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Game Navigation */
.game-nav {
  background: var(--card-bg);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 15px 0;
  position: sticky;
  top: 70px;
  z-index: 998;
  backdrop-filter: blur(10px);
}

.game-nav-wrapper {
  overflow: hidden;
}

.game-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text-muted);
  transition: all 0.3s ease;
  padding: 10px 15px;
  border-radius: 15px;
  position: relative;
  min-width: 80px;
  flex-shrink: 0;
  background: rgba(26, 26, 26, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.game-nav-item:hover,
.game-nav-item.active {
  color: var(--text-gold);
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--primary-gold);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.game-nav-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 5px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

.game-nav-item:hover .game-nav-icon,
.game-nav-item.active .game-nav-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
}

.game-nav-item span {
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}

.game-nav-active {
  position: absolute;
  top: -5px;
  right: 10px;
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-nav-item.active .game-nav-active {
  opacity: 1;
  color: var(--text-gold);
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

/* Desktop Navigation */
@media (min-width: 769px) {
  .game-nav-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .gameNavSwiper {
    width: 100%;
  }

  .gameNavSwiper .swiper-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    transform: none !important;
    flex-wrap: wrap;
  }

  .gameNavSwiper .swiper-slide {
    width: auto;
    flex-shrink: 0;
  }
}

/* Mobile Navigation Slider */
@media (max-width: 768px) {
  .gameNavSwiper {
    overflow: hidden;
    padding: 0 15px;
  }

  .gameNavSwiper .swiper-wrapper {
    display: flex;
  }

  .gameNavSwiper .swiper-slide {
    width: auto;
    flex-shrink: 0;
  }

  .game-nav-item {
    min-width: 70px;
    padding: 8px 12px;
  }

  .game-nav-icon {
    width: 28px;
    height: 28px;
  }

  .game-nav-item span {
    font-size: 0.7rem;
  }
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  line-height: 1.2;
  min-height: 120px;
}

.hero p {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
}

.cta-button {
  background: var(--gradient-gold);
  color: var(--dark-bg);
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
  color: var(--dark-bg);
}

.cta-button::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.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.hero-3d-element {
  cursor: pointer;
}

/* Search Bar */
.search-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto 50px;
}

.search-input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  background: var(--card-bg);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 25px;
  color: var(--text-light);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-gold);
}

.search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gradient-gold);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-bg);
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--card-bg);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  margin-top: 5px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.search-suggestion {
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.3s ease;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.search-suggestion:hover {
  background: rgba(212, 175, 55, 0.1);
}

.search-suggestion:last-child {
  border-bottom: none;
}

/* Stats Counter */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.stats-card {
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
  border-radius: 20px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.stats-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  transition: left 0.6s ease;
}

.stats-card:hover::before {
  left: 100%;
}

.stats-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
  border-color: var(--primary-gold);
  background: linear-gradient(145deg, #2a2a2a 0%, #3a3a3a 100%);
}

.stats-icon {
  font-size: 3.5rem;
  color: var(--text-gold);
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
  transition: all 0.3s ease;
}

.stats-card:hover .stats-icon {
  transform: scale(1.1);
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
}

.stats-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.stats-card:hover .stats-number {
  transform: scale(1.05);
  text-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

.stats-label {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.stats-card:hover .stats-label {
  color: var(--text-gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Responsive Stats */
@media (max-width: 768px) {
  .stats-card {
    padding: 30px 20px;
    margin-bottom: 20px;
  }

  .stats-icon {
    font-size: 2.5rem;
  }

  .stats-number {
    font-size: 2.5rem;
  }

  .stats-label {
    font-size: 1rem;
  }
}

/* Image Slider */
.image-slider {
  padding: 100px 0;
  background: var(--card-bg);
}

.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-dark);
}

.swiper-slide {
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.swiper-slide:hover .image-overlay {
  opacity: 1;
}

.image-overlay i {
  font-size: 3rem;
  color: var(--text-gold);
}

.swiper-pagination-bullet {
  background: var(--primary-gold);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  box-shadow: var(--shadow-gold);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-gold);
  background: rgba(26, 26, 26, 0.8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

/* Enhanced Featured Section - FIXED */
.featured {
  padding: 100px 0;
  background: var(--dark-bg);
  position: relative;
  z-index: 1;
}

.featured .container {
  position: relative;
  z-index: 2;
}

.featured .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  justify-content: center;
}

.featured .col-lg-4,
.featured .col-md-6 {
  padding: 0 15px;
  margin-bottom: 30px;
  flex: 0 0 auto;
  display: flex;
}

.featured .col-lg-4 {
  width: 33.333333%;
}

.featured .col-md-6 {
  width: 50%;
}

@media (max-width: 991px) {
  .featured .col-lg-4 {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .featured .col-lg-4,
  .featured .col-md-6 {
    width: 100%;
  }
}

.featured-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 350px;
  width: 100%;
  backdrop-filter: none; /* Remove blur effect */
  -webkit-backdrop-filter: none; /* Remove blur effect */
}

.featured-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.featured-card:hover::before {
  transform: scaleX(1);
}

.featured-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-gold);
  border-color: var(--primary-gold);
  background: rgba(26, 26, 26, 0.95); /* Ensure solid background */
}

.featured-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--dark-bg);
  font-size: 2rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.featured-card:hover .featured-icon {
  transform: scale(1.1) rotate(10deg);
}

.featured-card h4 {
  color: var(--text-gold);
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 1.3rem;
}

.featured-card p {
  color: var(--text-light); /* Change from muted to light for better visibility */
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.feature-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gradient-gold);
  border-radius: 15px;
  padding: 5px 12px;
}

.badge-text {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--dark-bg);
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: var(--darker-bg);
}

.testimonials-slider {
  margin-top: 50px;
}

.testimonial-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.stars i {
  color: var(--primary-gold);
  font-size: 1.2rem;
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--primary-gold);
}

.author-info h5 {
  color: var(--text-gold);
  margin-bottom: 5px;
}

.author-info span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  border-radius: 15px;
  margin-bottom: 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-gold);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(212, 175, 55, 0.1);
}

.faq-question h5 {
  color: var(--text-gold);
  margin: 0;
  font-weight: 600;
}

.faq-question i {
  color: var(--primary-gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 30px 25px;
  max-height: 200px;
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Live Chat Widget */
.live-chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1001;
}

.chat-toggle {
  width: 65px;
  height: 65px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-bg);
  font-size: 1.6rem;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: all 0.3s ease;
  animation: pulse-chat 2s infinite;
  position: relative;
  border: 3px solid rgba(212, 175, 55, 0.3);
}

.chat-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.chat-notification {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4757;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.7rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 1s infinite;
}

@keyframes pulse-chat {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-3px);
  }
  60% {
    transform: translateY(-1px);
  }
}

@media (max-width: 768px) {
  .live-chat-widget {
    bottom: 90px;
  }
}

/* Notification Toast */
.notification-toast {
  position: fixed;
  top: 90px;
  right: 20px;
  background: var(--card-bg);
  border: 1px solid var(--primary-gold);
  border-radius: 10px;
  padding: 15px 20px;
  color: var(--text-light);
  z-index: 1002;
  transform: translateX(400px);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-gold);
}

.notification-toast.show {
  transform: translateX(0);
}

/* Article Section */
.article-section {
  padding: 100px 0;
  background: var(--darker-bg);
}

.article-container {
  max-width: 800px;
  margin: 0 auto;
}

.article-header {
  text-align: center;
  margin-bottom: 4rem;
}

.article-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-gold);
  margin-bottom: 1rem;
}

.article-meta {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.article-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
}

.article-content h3 {
  color: var(--text-gold);
  margin: 2rem 0 1rem;
  font-family: "Playfair Display", serif;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  margin: 2rem 0;
  box-shadow: var(--shadow-dark);
}

/* Mobile Sticky Footer */
.mobile-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 10px 0;
  z-index: 1000;
  display: none;
}

.mobile-footer-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text-muted);
  transition: all 0.3s ease;
  padding: 5px;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
  color: var(--text-gold);
}

.mobile-nav-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
  fill: currentColor;
}

.mobile-nav-text {
  font-size: 0.7rem;
  font-weight: 500;
}

/* Footer */
.footer {
  background: var(--darker-bg);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-family: "Playfair Display", serif;
  color: var(--text-gold);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.footer-brand p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--card-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gold);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.social-link:hover {
  background: var(--primary-gold);
  color: var(--dark-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.footer-section h5 {
  color: var(--text-gold);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-section a {
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--text-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding-top: 30px;
  text-align: center;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-footer {
    display: block;
  }

  body {
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .navbar-brand {
    font-size: 1.5rem;
  }

  .btn-auth {
    padding: 6px 15px;
    font-size: 0.8rem;
    min-width: 60px;
  }

  .nav-buttons {
    gap: 8px;
  }

  .live-chat-widget {
    bottom: 90px;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.3rem;
  }

  .btn-auth {
    padding: 5px 12px;
    font-size: 0.75rem;
    min-width: 55px;
  }

  .nav-buttons {
    gap: 6px;
  }
}

/* Exclusive Effects */
.glow-effect {
  position: relative;
}

.glow-effect::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-gold);
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.3s ease;
  z-index: -1;
}

.glow-effect:hover::after {
  opacity: 0.3;
}

.parallax-element {
  transform: translateZ(0);
  will-change: transform;
}

/* Trendy Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

@keyframes pulse-gold {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
  }
}

.pulse-gold {
  animation: pulse-gold 2s infinite;
}

/* Custom Toastr Styles */
.toast-success {
  background-color: var(--card-bg) !important;
  border: 1px solid var(--primary-gold) !important;
  color: var(--text-light) !important;
}

.toast-error {
  background-color: var(--card-bg) !important;
  border: 1px solid #ff4757 !important;
  color: var(--text-light) !important;
}

.toast-info {
  background-color: var(--card-bg) !important;
  border: 1px solid #3742fa !important;
  color: var(--text-light) !important;
}

/* Ripple Animation */
@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
