@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  transition: 0.3s;
}

/* Professional Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

/* Animation utility classes */
.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-fade-in-down {
  opacity: 0;
  animation: fadeInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-fade-in-left {
  opacity: 0;
  animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-fade-in-right {
  opacity: 0;
  animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-scale-in {
  opacity: 0;
  animation: scaleIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-slide-up {
  opacity: 0;
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Staggered animation delays */
.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }
.animate-delay-500 { animation-delay: 0.5s; }
.animate-delay-600 { animation-delay: 0.6s; }
.animate-delay-700 { animation-delay: 0.7s; }
.animate-delay-800 { animation-delay: 0.8s; }

/* Scroll-triggered animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-scale.active {
  opacity: 1;
  transform: scale(1);
}

.scroll-animate-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-left.active {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-right.active {
  opacity: 1;
  transform: translateX(0);
}

:root {
  /* Modern Red Neon Color Palette */
  --heading-family: "Inter", sans-serif;

  /* Background Colors - Black/Red Neon Theme */
  --color-bg-primary: #000000;
  --color-bg-secondary: #0A0A0A;
  --color-bg-tertiary: #000000;
  
  /* Red Neon Gradient Colors */
  --color-gradient-start: #000000;
  --color-gradient-middle: #000000;
  --color-gradient-end: #000000;
  --color-gradient-accent: #FFFFFF;
  --color-gradient-bright: #FFFFFF;
  
  /* Accent Colors - Red Neon Theme */
  --color-accent: #FFFFFF;
  --color-accent-hover: #FFFFFF;
  --color-accent-active: #FFFFFF;
  --color-accent-secondary: #FFFFFF;
  
  /* Text Colors - Optimized for dark red background */
  --color-text-primary: #FFFFFF;
  --color-text-secondary: #E5E7EB;
  --color-text-tertiary: #FFFFFF;
  --color-text-disabled: #666666;
  
  /* Border Colors */
  --color-border-default: #333333;
  --color-border-hover: #666666;
  --color-border-focus: #FFFFFF;
  
  /* Surface Colors */
  --color-surface-card: rgba(10, 0, 0, 0.8);
  --color-surface-overlay: rgba(0, 0, 0, 0.9);
  --color-surface-modal: rgba(10, 0, 0, 0.95);
  
  /* State Colors */
  --color-state-success: #10B981;
  --color-state-error: #FFFFFF;
  --color-state-warning: #FFFFFF;
  --color-state-info: #FFFFFF;
  
  /* Legacy Variables (updated to red neon theme) */
  --bgColorBack: #000000;
  --white-color: #FFFFFF;
  --black-color: #000000;
  --text-color: #FFFFFF;
  --red-color-bg-1: #FFFFFF;
  --red-color-bg-2: #FFFFFF;
  --red-color-bg-3: #000000;
  --red-color-bg-4: #FFFFFF;
}

body {
  background: linear-gradient(135deg, 
    var(--color-gradient-start) 0%, 
    var(--color-gradient-middle) 35%, 
    var(--color-gradient-end) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  padding-top: 70px;
  position: relative;
}

/* Remove particle canvas styles */
#particleCanvas {
  display: none !important;
}

/* Enhanced gradient background overlay */
.bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top, 
    rgba(0, 0, 0, 0.1) 0%, 
    rgba(51, 0, 0, 0.2) 50%, 
    rgba(0, 0, 0, 0.9) 100%);
  pointer-events: none;
  z-index: -1;
}

.d-flex {
  display: flex;
  gap: 20px;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.col-1 {
  flex: 1;
}

.col-2 {
  flex: 2;
}

.col-3 {
  flex: 3;
}

.col-4 {
  flex: 4;
}

.col-5 {
  flex: 5;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.center {
  text-align: center;
}

.container {
  max-width: 1280px;
  margin: auto;
  padding: 30px 50px;
}

.container-fluid {
  max-width: 1280px;
  margin: auto;
  padding: 10px 50px;
}

.main-heading {
  margin-bottom: 50px;
}

.main-heading h1 {
  font-size: 60px;
  color: var(--color-text-primary);
  line-height: 1;
  font-weight: 900;
  font-family: var(--heading-family);
  margin-bottom: 10px;
}

.main-heading p {
  letter-spacing: 0.4px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-color);
}

.arrowFlexUnderline {
  gap: 20px;
}

.arrowFlexUnderline .underline {
  border: 2px solid var(--color-accent);
  width: 100%;
}

.arrowFlexUnderline .icons {
  width: 60px;
  line-height: 30px;
  height: 30px;
  background-color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrowFlexUnderline .icons i {
  color: var(--color-bg-primary);
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}

/* New Header V2 Styles - Redesigned */
.header-v2 {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
}

.header-v2.scrolled {
  top: 0;
}

.header-wrapper {
  width: 100%;
  margin: 0;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 2px solid rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: 60px;
  padding: 0 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
}

/* Scrolled state */
.header-v2.scrolled .header-wrapper {
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-bottom-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  padding: 15px 0;
}

.header-logo {
  width: 50px;
  height: auto;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}




.nav-area {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 15px 0;
}

.nav-item {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: -1;
}

.nav-item:hover:before,
.nav-item.active:before {
  transform: translateY(0);
}

.nav-item:hover {
  color: #ffffff;
}

.nav-item.active {
  background: linear-gradient(
    90deg,
    rgba(204, 0, 0, 0.3) 0%,
    rgba(204, 0, 0, 0.15) 100%
  );
  color: #ffffff;
}

.nav-item i {
  margin-right: 8px;
  font-size: 14px;
}

/* Kick Sign-in Button */
.kick-signin-btn {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid rgba(204, 0, 0, 0.2);
  border-radius: 12px;
  background: linear-gradient(135deg, 
    rgba(204, 0, 0, 0.05) 0%, 
    rgba(153, 0, 0, 0.02) 100%);
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  cursor: not-allowed;
  position: relative;
  overflow: visible;
  transition: all 0.3s ease;
  margin-left: 12px;
  margin-right: 8px;
  margin-top: 6px;
}

.kick-signin-btn.disabled {
  opacity: 0.6;
  filter: grayscale(0.7);
}

.kick-signin-btn:hover {
  transform: none;
  background: linear-gradient(135deg, 
    rgba(204, 0, 0, 0.05) 0%, 
    rgba(153, 0, 0, 0.02) 100%);
}

.kick-signin-icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  opacity: 0.6;
  filter: grayscale(0.8);
}

.coming-soon-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.9) 0%, 
    rgba(204, 0, 0, 0.8) 100%);
  color: #000;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  z-index: 10;
}

/* Live Status Button */
.live-status {
  display: flex;
  align-items: center;
}

.live-button {
  padding: 8px 12px;
  border-radius: 20px;
  border: none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 6px;
}

.kick-icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.live-button.live .kick-icon {
  filter: brightness(0);
}

.live-button.live {
  background: linear-gradient(45deg, #00ff00, #32cd32);
  color: #000000;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: pulse-live 2s infinite;
}

.live-button.live::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer-live 2s infinite;
}

.live-button.offline {
  background: linear-gradient(45deg, #ff0000, #cc0000);
  color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.live-button.live:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

@keyframes pulse-live {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% { 
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

@keyframes shimmer-live {
  0% { 
    left: -100%; 
  }
  100% { 
    left: 100%; 
  }
}

.menu-toggle {
  display: none;
}

.menu-toggle button {
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-size: 22px;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.menu-toggle button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(204, 0, 0, 0.15);
  z-index: -1;
  border-radius: 10px;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.menu-toggle button:hover:before {
  transform: scale(1);
}

.menu-toggle button:hover {
  color: var(--color-accent);
}

/* Updated Overlay Styles */
.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 200;
  left: 0;
  top: 0;
  background: rgba(13, 17, 23, 0.95);
  overflow-x: hidden;
  transition: 0.5s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.overlay a {
  padding: 12px;
  text-decoration: none;
  font-size: 20px;
  color: white;
  display: block;
  transition: 0.3s;
  width: 200px;
  margin: 0 auto;
  border-radius: 12px;
}

.overlay a i {
  margin-right: 10px;
  font-size: 18px;
}

.overlay a:hover,
.overlay a:focus {
  background-color: rgba(204, 0, 0, 0.2);
  color: var(--color-accent);
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  width: auto;
  background: none;
}

.overlay .closebtn:hover {
  background: none;
  color: var(--color-accent);
}

/* Responsiveness */
@media screen and (max-width: 928.98px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-wrapper {
    height: 60px;
    padding: 0 20px;
  }
  
  .live-button {
    font-size: 10px;
    padding: 6px 8px;
    gap: 4px;
  }
  
  .kick-icon {
    width: 12px;
    height: 12px;
  }
  
  .kick-signin-btn {
    display: none; /* Hide on mobile in nav */
  }
  
  .kick-signin-btn.mobile-disabled {
    display: flex;
    margin: 15px 0;
    justify-content: center;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    padding: 12px 20px;
  }
  
  body {
    padding-top: 90px; /* Reduced padding for mobile */
  }
  
  .header-v2 {
    top: 10px;
  }
  
  .header-wrapper {
    width: 100%;
    padding: 0 20px;
    height: 55px;
  }
  
  .header-v2.scrolled .header-wrapper {
    max-width: 100%;
    height: 60px;
  }
}

@media screen and (max-width: 480px) {
  .header-v2 {
    top: 5px;
  }
  
  .header-wrapper {
    width: 100%;
    margin: 0;
    padding: 0 15px;
    height: 50px;
  }
  
  .header-v2.scrolled .header-wrapper {
    margin: 0;
    max-width: 100%;
    height: 55px;
  }

  .header-logo {
    width: 40px;
  }
}

header .logo img {
  width: 50px;
}

header ul li a {
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--color-text-primary);
}

header ul li a:hover,
header ul li a.active {
  color: var(--text-color);
}

header .horizontal-row {
  border: 1px solid var(--color-accent);
  height: 18px;
}

header .btn a {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  border-radius: 9999px;
  background-color: var(--color-bg-primary);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-primary);
}

header span i {
  cursor: pointer;
  font-size: 14px;
  color: var(--text-color);
  border: 2px solid var(--text-color);
  padding: 2.7px 6px;
}

.heroSection img.mainImage {
  max-width: 500px;
  width: 100%;
  margin: auto;
}

/* Hero Logo Container */
.hero-logo-container {
  position: relative;
  display: inline-block;
  margin: 80px 0 20px 0;
}

.hero-main-logo {
  max-width: 400px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(204, 0, 0, 0.4));
  transition: all 0.3s ease;
}

.hero-main-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 15px 40px rgba(204, 0, 0, 0.6));
}

.hero-container {
  position: relative;
  display: inline-block;
  margin: 160px 0 40px 0;
}

.hero-title {
  font-size: 60px;
  font-weight: 900;
  color: var(--color-text-primary);
  text-transform: uppercase;
  letter-spacing: 6px;
  margin: 0;
  text-shadow: 0 0 20px rgba(204, 0, 0, 0.3);
  background: linear-gradient(45deg, var(--color-text-primary) 30%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 2;
}

.floating-logos {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 150px;
  pointer-events: none;
}

.floating-logo {
  position: absolute;
  width: 40px;
  height: auto;
  opacity: 0.6;
  filter: brightness(1.2);
}

.floating-logo.logo-1 {
  top: -20px;
  left: 20px;
  animation: float1 4s ease-in-out infinite;
}

.floating-logo.logo-2 {
  top: -20px;
  right: 20px;
  animation: float2 4.5s ease-in-out infinite;
}

.floating-logo.logo-3 {
  bottom: -20px;
  left: 50px;
  animation: float3 3.5s ease-in-out infinite;
}

.floating-logo.logo-4 {
  bottom: -20px;
  right: 50px;
  animation: float4 5s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-10px, -15px) rotate(10deg);
  }
}

@keyframes float2 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(10px, -15px) rotate(-10deg);
  }
}

@keyframes float3 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-15px, 10px) rotate(15deg);
  }
}

@keyframes float4 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(15px, 10px) rotate(-15deg);
  }
}

/* Removed old hero-image-container and glow-circle styles */

.heroSection p {
  color: var(--color-text-secondary);
  text-align: center;
  letter-spacing: 2px;
  font-size: 14px;
}

.heroSection p.minLight {
  margin-top: 10px !important;
  margin-bottom: 20px;
}

.heroSection p.minLight span {
  color: var(--text-color);
}
.heroSection .flexBtn .btn a {
  text-decoration: none;
  display: inline-block;
}

.heroSection .flexBtn .btn.redBtn a {
  background: var(--color-accent) !important;
  color: var(--color-bg-primary);
}

.heroSection .flexBtn {
  margin-bottom: 50px;
  gap: 20px;
}

.heroSection .flexBtn .btn {
  margin: 0 10px;
}

.bounce .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  justify-content: center;
}

/* Ensure 4 cards side by side on larger screens */
@media screen and (min-width: 1200px) {
  .bounce .row .box {
    flex: 0 1 calc(25% - 20px);
    max-width: calc(25% - 20px);
  }
}

/* 2 cards per row on medium screens */
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .bounce .row .box {
    flex: 0 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
    margin-bottom: 20px;
  }
}

.bounce .row .box {
  max-width: none;
  width: 100%;
  flex: 1;
  min-width: 280px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
  border-radius: 24px !important;
  border: none !important;
  background: linear-gradient(145deg, rgba(20, 20, 25, 0.95) 0%, rgba(35, 35, 45, 0.9) 100%) !important;
  padding: 0;
  margin: 0 10px;
  text-align: left;
  backdrop-filter: blur(15px);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bounce .row .box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.15);
}

/* Modern Card Styling */
.modern-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 25px 25px 20px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.modern-card .site-logo h3 {
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 5px 0;
  letter-spacing: -0.5px;
}

.modern-card .site-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-weight: 500;
}

.modern-card .featured-badge {
  background: linear-gradient(135deg, #FFFFFF, #FFFFFF);
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.modern-card .benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding: 25px;
}

.modern-card .benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.modern-card .benefit-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.modern-card .benefit-item i {
  color: #FFFFFF;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.modern-card .benefit-item span {
  font-size: 12px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.3px;
}

.modern-card .promo-section {
  padding: 0 25px 20px 25px;
}

.modern-card .promo-code {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
}

.modern-card .code-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.modern-card .code-value {
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 1px;
  flex-grow: 1;
}

.modern-card .copy-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.modern-card .copy-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.modern-card .card-actions {
  padding: 0 25px 25px 25px;
}

.modern-card .claim-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.modern-card .claim-btn.primary {
  background: linear-gradient(135deg, #FFFFFF, #FFFFFF);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

.modern-card .claim-btn.primary:hover {
  background: linear-gradient(135deg, #FFFFFF, #FFFFFF);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.modern-card .claim-btn.secondary {
  background: linear-gradient(135deg, #FFFFFF, #FFFFFF);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

.modern-card .claim-btn.secondary:hover {
  background: linear-gradient(135deg, #FFFFFF, #FFFFFF);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.modern-card .claim-btn i {
  font-size: 16px;
}

/* Stake-specific card styling */
.modern-card .featured-badge.stake-us {
  background: linear-gradient(135deg, #FFFFFF, #FFFFFF);
  color: #FFFFFF;
}

.modern-card .featured-badge.stake-com {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000000;
}

.modern-card .claim-btn.stake-us {
  background: linear-gradient(135deg, #FFFFFF, #FFFFFF);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

.modern-card .claim-btn.stake-us:hover {
  background: linear-gradient(135deg, #FFFFFF, #FFFFFF);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.modern-card .claim-btn.stake-com {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000000;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

.modern-card .claim-btn.stake-com:hover {
  background: linear-gradient(135deg, #FFCC00, #FF9500);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media screen and (max-width: 767px) {
  .bounce .row {
    flex-direction: column;
    margin: 0;
  }
  
  .bounce .row .box {
    flex: none;
    max-width: 100%;
    margin: 10px 15px;
    min-width: auto;
  }
  
  .modern-card .benefits-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px;
  }
  
  .modern-card .card-header,
  .modern-card .promo-section,
  .modern-card .card-actions {
    padding-left: 20px;
    padding-right: 20px;
  }
}
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.bounce .row .box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-secondary));
  opacity: 0.8;
}

.bounce .row .box:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 0, 0, 0.5);
}

.bounce .row .box img {
  padding-bottom: 12px;
  max-width: 140px;
  width: 100%;
  object-fit: contain !important;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
  transition: transform 0.2s ease;
}

.bounce .row .box:hover img {
  transform: scale(1.02);
}

.underlineTextLogo {
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
}

.underlineTextLogo .underline {
  width: 100%;
  height: 2px;
  flex: 1;
  background: var(--color-accent);
}

.underlineTextLogo .gem {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  color: #FFFFFF;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.underlineTextLogo a {
  gap: 5px;
}

.underlineTextLogo p {
  color: var(--text-color);
  font-weight: 900;
  letter-spacing: 0.2px;
  font-style: italic;
  text-transform: uppercase;
}

.bounce .row .box .checkBox {
  background: rgba(0, 0, 0, 0.8);
  line-height: 1;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  margin-bottom: 18px;
  overflow: hidden;
}

.bounce .row .box .checkBox .boxes {
  padding: 12px 16px;
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid rgba(204, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.bounce .row .box .checkBox .boxes:hover {
  background: rgba(0, 0, 0, 0.15);
  color: #ffffff;
}

.bounce .row .box .checkBox .boxes i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent) 0%, rgba(204, 0, 0, 0.8) 100%);
  font-size: 10px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(204, 0, 0, 0.4);
}

.bounce .row .box .checkBox .boxes span {
  flex: 1; /* Allow text to take remaining space */
  text-align: left; /* Align text to left */
}

.bounce .row .box .checkBox .boxes:nth-child(3) i {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFFFFF 100%);
  color: #000000;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
}

.bounce .row .box .checkBox .boxes:nth-child(3) {
  border-bottom: none;
}

.bounce .row .box .copyBox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.5rem;
  background: rgba(204, 0, 0, 0.08);
  padding: 12px 18px;
  border-radius: 14px;
  border: 2px dashed rgba(204, 0, 0, 0.3);
  cursor: pointer;
  margin-bottom: 16px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  position: relative;
  will-change: transform;
}



.bounce .row .box .copyBox:hover {
  background: rgba(204, 0, 0, 0.12);
  border-color: rgba(204, 0, 0, 0.5);
  transform: translateY(-1px);
}

.bounce .row .box .copyBox.copied {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.5);
  animation: copyPulse 0.3s ease;
}

@keyframes copyPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.bounce .row .box .copyBox i {
  color: var(--color-accent);
  font-size: 1rem;
  transition: color 0.2s ease;
  position: relative;
  z-index: 2;
}

.bounce .row .box .copyBox.copied i {
  color: #22c55e;
}

.bounce .row .box .copyBox:hover i {
  color: #ffffff;
}

.bounce .row .box .copyBox.copied i::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}

.bounce .row .box .copyBox p {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: 1.5px;
  position: relative;
  z-index: 2;
  transition: color 0.2s ease;
}

.bounce .row .box .copyBox.copied p {
  color: #22c55e;
}

.bounce .row .box .infoBtnGroup {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.bounce .row .box .infoBtnGroup .btn a {
  background: var(--color-accent) !important; /* Changed to red */
  color: var(--color-bg-primary) !important;
  box-shadow: inset 0 -5px 0 #00000033 !important;
  letter-spacing: 1px;
  padding: 20px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 900;
  display: inline-block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease; /* Added transition for smooth animation */
}

.bounce .row .box .infoBtnGroup .btn a:hover {
  transform: translateY(3px); /* Push down effect on hover */
}

.bounce .row .box .infoBtnGroup a.info i {
  box-shadow: inset 0 -5px 0 #00000033 !important;
  background: var(--color-state-info);
  padding: 20px;
  border-radius: 12px;
  cursor: pointer;
  width: 100%;
  font-weight: 900;

  font-size: 1.125rem;
  line-height: 1.75rem;
}

/* CODE FOR LEADERBOARD PAGE */
.swiperSection .boxContent h4 {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 32px;
  color: var(--color-text-primary);
}

.swiperSection .boxContent .copyReward {
  background: #FFFFFF49 !important;
  padding-top: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 0.5rem;
  border: 1px solid var(--color-bg-primary);
  width: 300px;
  margin: auto;
  margin-top: 6px;
  /* transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4,0,.2,1); */
}

.swiperSection .boxContent .copyReward i,
.swiperSection .boxContent .copyReward p {
  color: var(--color-text-secondary) !important;
}

.swiperSection .boxContent .copyReward p {
  font-weight: 700;
}

.swiperSection .boxContent h6 {
  color: var(--color-text-secondary) !important;
  letter-spacing: 0.025em;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-top: 1rem;
}

.swiperSection .boxContent h6 span {
  color: var(--text-color);
}

.swiperContent {
  margin-top: 40px;
}

.swiperContent .paymentBtn {
  box-shadow: 0px 4px 4px 0px #0000001a;
  backdrop-filter: blur(25px);
  border-radius: 50px;
  max-width: 1100px;
  margin: 20px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 0px 4px;
  flex-wrap: wrap;
  background: rgba(10, 10, 10, 0.5) !important;
  width: 650px;
}

.swiperContent .paymentBtn button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.3s;
  height: 76px;

  position: relative;
}

.swiperContent .paymentBtn button img {
  width: 110px;
}

.swiperContent .gf-btn-active::after {
  content: "";
  width: 45px;
  height: 6px;
  background: var(--color-accent);
  display: block;
  position: absolute;
  left: 0;
  transition: all 0.2s ease;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.swiperContent .paymentLogo {
  width: 100px;
  height: auto;
}

.swiperContent .gf-btn-active {
  border-bottom: 2px solid var(--color-bg-primary);
}

.swiperContent .gallery {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.swiperContent .gf-column {
  display: none;
  padding: 20px;
  width: 100%;
  text-align: center;
}

/* Show the selected gallery */

.swiperContent .gf-column.show {
  display: block;
}

/* CODE FOR MODEL */

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}

.modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 920px !important;
  background: var(--color-bg-primary) !important;
  border-radius: 15px !important;
  border: 2px solid var(--color-accent) !important;
  padding: 30px;
  color: var(--color-text-primary);
  width: 100%;
  z-index: 30;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.modal-header h2 img {
  position: absolute;
  width: 100px;
  transform: translate(-50%, -50%);
  left: 50%;
  top: -16px;
}

.modal-header .close-btn {
  position: absolute;
  top: -5px;
  right: -5px;
  margin: -10px;
  width: 40px;
  height: 40px;
  background: var(--color-bg-primary);
  border-radius: 100px;
  cursor: pointer;
  font-size: 26px;
  color: var(--color-text-primary);
  border: 2px solid var(--color-accent);
}

.modal-header .close-btn:hover {
  background-color: var(--color-accent);
}

.modal-content {
  line-height: 1.6;
}

.modal-content h1 {
  position: relative;
  text-transform: uppercase;
  font-size: 35px;
  font-weight: 900;
  text-align: center;
  color: var(--color-text-primary);
  margin-bottom: 40px;
}

.modal-content h1::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 5px;
  background: var(--color-accent);
  border-radius: 10px;
}

.modal-content p {
  padding: 18px;
  border-radius: 12px;
  border: 2px solid var(--color-accent);
  background: var(--color-bg-primary);
  margin-bottom: 20px;

  color: var(--color-text-secondary);
  font-size: 14px;
}

.modal-content p span {
  display: inline-block;
  font-weight: 700;
  margin-right: 0.5rem;
  color: var(--color-text-primary);
}

.modal-content p span span {
  color: var(--color-accent);
}

#modalOverlay2 .modal-content p {
  padding: 0px;
  border-radius: 0px;
  border: none;
  background: none;
  margin-bottom: 5px;

  color: var(--color-text-primary);
  font-size: 14px;
}
#modalOverlay2,
#modalOverlay1 {
  padding: 0px 10px;
}
#modalOverlay2 .modal {
  padding: 30px 30px 50px 30px;
}
#modalOverlay2 .modal-content ul {
  padding: 0px 0px 0px 26px;
}
#modalOverlay2 .modal-content ul li {
  list-style: disc !important;
}
.modal-content .btn a {
  box-shadow: inset 0 -5px 0 #00000033 !important;
  padding: 16px;
  border-radius: 12px;
  cursor: pointer;
  background: var(--color-accent) !important;
  color: var(--color-bg-primary) !important;
  width: 100%;
  display: inline-block;
  text-align: center;
  font-weight: 700;
}

.modal-content .btn a:hover {
  box-shadow: inset 0 5px 0 #00000033 !important;
}

.open-modal-btn {
  background: var(--color-accent) !important;
  border: 2px solid var(--color-bg-primary) !important;
  gap: 5px;
  min-width: 150px;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  color: var(--color-text-primary) !important;
}

.modelButtons {
  margin-top: 20px;
  flex-wrap: wrap;
}

.modelButtons p {
  background: rgba(10, 10, 10, 0.5) !important;
  border: 2px solid var(--color-accent) !important;
  gap: 5px;
  min-width: 150px;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  color: var(--color-text-primary) !important;
}

.gallery .headingIcons {
  gap: 6px;
}

.gallery .headingIcons img {
  width: 28px;
}
.gallery .headingIcons h1 {
  display: inline;
  font-size: 2rem;
  color: var(--color-text-primary) !important;
  font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji,
    Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 900;
  text-align: center;
}

.gallery .mainHeading {
  color: var(--color-text-secondary) !important;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.gallery .gridRow {
  margin-top: 40px;
  flex-wrap: wrap;
}

.gallery .gridRow .box {
  margin-bottom: 30px;
  box-shadow: 0 10px 40px var(--color-accent);
  border-radius: 15px !important;
  border: 2px solid var(--color-accent) !important;
  background: rgba(10, 10, 10, 0.5) !important;
  padding: 2rem;
  max-width: 370px;
  flex-basis: 280px;
  flex-grow: 1;
  width: 100%;
  height: 370px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.gallery .gridRow .box .imgNumberBox {
  position: relative;
  margin-bottom: 20px !important;
}

.gallery .gridRow .box .imgNumberBox {
  width: 101px;
  margin: auto;
}

.gallery .gridRow .box .imgNumberBox img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border: 2px solid rgba(204, 0, 0, 0.17);
  padding: 6px;
}

.gallery .gridRow .box .imgNumberBox .boxNumber {
  display: flex;
  align-items: center;
  justify-content: center;
  left: 50%;
}

.gallery .gridRow .box .imgNumberBox .boxNumber i {
  position: absolute;
  text-shadow: 0 4px 8px var(--color-bg-primary);
  bottom: -7px;
  font-size: 33px;
}

.gallery .gridRow .box .imgNumberBox .boxNumber p {
  position: absolute;
  z-index: 2;
  color: var(--color-bg-primary);
  font-weight: 800;
  font-size: 16px;
  bottom: 0px;
}

.gallery .gridRow .box-1 .imgNumberBox .boxNumber i {
  color: #e5e5e5;
}

.gallery .gridRow .box .mainHeading {
  color: var(--color-text-primary);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
  gap: 5px;
}
.gallery .gridRow .box .mainHeading img {
  width: 30px;
}

.gallery .gridRow .box .mainPara {
  color: var(--color-accent);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 10px;
}

.gallery .gridRow .box .imgprice {
  gap: 6px;
  margin-bottom: 20px;
}

.gallery .gridRow .box .imgprice img {
  width: 22px;
}

.gallery .gridRow .box .imgprice p {
  font-size: 19px;
  color: var(--color-text-primary) !important;
  font-weight: 600;
}

.gallery .gridRow .box .priceBtn {
  background: linear-gradient(195deg, var(--color-accent), transparent);
  border-radius: 10px;
  padding: 10px;
  margin-top: 8px;
  width: 190px;
  margin: auto;
}

.gallery .gridRow .box .priceBtn img {
  width: 24px;
}

.gallery .gridRow .box .priceBtn p {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-state-success) !important;
}

.gallery .gridRow .box-2 {
  margin-bottom: 100px;
}

.gallery .gridRow .box-2 .imgNumberBox .boxNumber i {
  color: #FFFFFF;
}

.gallery .gridRow .box-3 .imgNumberBox .boxNumber i {
  color: #e98332;
}

.gallery .leaderBoardTable table {
  max-width: 9900px;
  margin: auto;
  margin-bottom: 40px;
  margin-top: 50px;
}

.gallery #customers {
  border-collapse: collapse;
  border-radius: 10px !important;
  width: 100%;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.gallery #customers td,
#customers th {
  border-bottom: 1px solid var(--color-accent);

  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 2rem;
  padding-right: 2rem;
  color: var(--color-text-primary);
  text-align: left;
}

/* .gallery #customers tr.endChild td,
.gallery #customers tr.endChild th{
    border: none !important;
}  */

/* #customers tr:nth-child(even){ */
.gallery #customers td {
  font-size: 16px;
  font-weight: 600;
  line-height: 19.2px;
  color: var(--color-text-secondary);
  background-color: rgba(204, 0, 0, 0.1);
  position: relative;
  z-index: 9;
}

.gallery #customers tr td:nth-child(1) {
  width: 25px !important;
  font-size: 16px;
  font-weight: 600 !important;
  line-height: 19.2px;
  position: relative;
  z-index: 9;
}

.gallery #customers tr td:nth-child(3) {
  font-size: 16px;
  font-weight: 600;
  line-height: 19.2px;
  color: var(--text-color);
}

.gallery #customers tr td:nth-child(4) {
  font-size: 16px;
  font-weight: 900;
  line-height: 19.2px;
  color: var(--color-state-success) !important;
}

.gallery #customers th {
  font-size: 16px;
  font-weight: 700;
  line-height: 19.2px;
  text-transform: uppercase;

  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.gallery #customers th:nth-child(1) {
  border-radius: 20px 0px 0px 0px !important;
}
.gallery #customers tr:nth-child(2) th,
.gallery #customers tr:nth-child(3) th,
.gallery #customers tr:nth-child(4) th,
.gallery #customers tr:nth-child(5) th,
.gallery #customers tr:nth-child(6) th,
.gallery #customers tr:nth-child(7) th,
.gallery #customers tr:nth-child(8) th {
  border-radius: 0px 0px 0px 0px !important;
  background-color: rgba(204, 0, 0, 0.1);
}

.gallery #customers th:nth-child(4) {
  border-radius: 0px 20px 0px 0px !important;
}

.gallery #customers tr:nth-child(1) {
  background-color: var(--color-bg-primary);
  border: none !important;
  backdrop-filter: blur(10px);
}

.gallery #customers img {
  width: 28px;
  height: 28px;
  line-height: 28px;
  border-radius: 50%;
}

.gallery #customers tr td:nth-child(2) .d-flex {
  gap: 4px;
}

.gallery #customers tr td:nth-child(3) .d-flex,
.gallery #customers tr td:nth-child(4) .d-flex {
  gap: 4px;
}

.gallery #customers tr td:nth-child(3) .d-flex img,
.gallery #customers tr td:nth-child(4) .d-flex img {
  width: 24px;
  height: 24px;
}

.timeWatch {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: -8px !important;
  position: relative;
}

.gallery .timeWatch .special-icon {
  font-size: 77px;
  position: absolute;
  color: #122347;
  z-index: 0;
  top: 0;
  background: -webkit-linear-gradient(#FFFFFF45, var(--text-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px #FFFFFF1a;
}

.gallery .timeWatch .stopWatch {
  position: relative;
  font-size: 24px;
  top: 5px;
  color: var(--text-color);
}

.gallery .timeSection .underlineHaeding {
  margin-top: 20px;
}

.gallery .timeSection .underlineHaeding .underline {
  border: 2px solid var(--color-accent);
  width: 100%;
}

.gallery .timeSection .underlineHaeding h1 {
  max-width: 258px;
  width: 100%;
  color: var(--color-text-primary);
}

.gallery .count-down .container {
  padding: 20px 10px 10px 10px;
}

.gallery .count-down .row .countdown,
.gallery .count-down .row .countdown .counter {
  gap: 20px;
  display: flex;
  justify-content: center;
}

.gallery .count-down .row .countdown .counter {
  gap: 2px;
  flex-direction: column;
}

.gallery .count-down .row .countdown span {
  color: var(--text-color) !important;
  font-weight: 800;
  font-size: 18px;
}

.gallery .count-down .row .countdown .label {
  font-size: 12px;
  color: var(--color-text-secondary) !important;
}

.gallery .count-down .row .countdown span,
.gallery .count-down .row .countdown .label {
  font-weight: 600;
  line-height: 16.93px;
  font-family: var(--secondary-font);
  display: inline-block;
}

.gallery .lastPara p {
  color: var(--color-text-secondary) !important;
}

.gallery .lastPara p span {
  margin-left: 4px;
  color: var(--color-text-primary);
}

.gallery .btnPrivious a {
  font-weight: 700;
  color: var(--color-text-primary);
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
  padding-left: 3rem;
  padding-right: 3rem;
  border-radius: 8px;
  display: inline-block;
  margin-top: 0.5rem;
  cursor: pointer;
  background-color: var(--color-accent);
}

.leaderBoardBox .row {
  padding: 1.5rem 0;
  gap: 15px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.leaderBoardBox .col-1 {
  flex-basis: 320px;
  flex-grow: 1;
}

.leaderBoardBox h1 {
  font-weight: 800;
  font-size: 28px;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.leaderBoardBox p {
  margin-bottom: 20px !important;
  max-width: 450px;
  color: var(--color-text-secondary);
  font-size: 14px;
  margin: 0 auto;
  text-align: center;
}

.leaderBoardBox .row .bxo {
  max-width: 600px;
  margin: auto;
}

.leaderBoardBox .row .bxo .iconsBox {
  max-width: 400px;
  margin: auto;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px !important;
  flex-wrap: wrap;
  justify-content: center;
}

.leaderBoardBox .row .bxo .iconsBox img {
  max-width: 80px;
  width: 100%;
  transition: transform 0.2s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  border-radius: 8px;
}

.leaderBoardBox .row .bxo .iconsBox img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 6px 12px rgba(204, 0, 0, 0.4));
}

.leaderBoardBox .row .bxo .iconsBox a {
  flex-basis: 90px;
}

.leaderBoardBox .row .bxo .btn a {
  letter-spacing: 0.5px;
  font-size: 14px !important;
  font-weight: 600;
  background: var(--color-accent);
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  color: #ffffff;
  text-transform: uppercase;
  transition: all 0.2s ease;
}



.leaderBoardBox .row .bxo .btn a:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
}


.giveaway .numbering {
  color: var(--color-text-primary) !important;
  border-radius: 30px;
  border: 2px solid var(--color-accent);
  background: rgba(10, 10, 10, 0.5);
  margin-bottom: 50px;
  margin-top: 30px;
  /* min-height: 170px; */
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.giveaway .numbering h1 {
  color: var(--color-text-primary);
  font-size: 40px;
}

.giveaway .numbering h1 i {
  font-size: 50px;
  margin-right: 30px;
}

.giveaway .numbering h1 span {
  font-size: 40px;
  padding: 30px;
  background: rgba(10, 10, 10, 0.5);
  border-radius: 12px;
  line-height: 0.5;
  font-size: 40px;
  border: 2px solid var(--color-accent);
  font-weight: 800;
  margin: 0px 6px;
  display: inline-block;
}

.videosGrid .btn a {
  font-weight: 700;
  padding-top: 16px;
  padding-bottom: 16px;
  padding: 16px 32px;
  color: var(--color-bg-primary);
  border-radius: 8px;
  background-color: var(--color-accent);
  display: inline-block;
}

.videosGrid .btn a:hover {
  background-color: var(--color-accent-hover);
}


/* Modern Footer Design */
footer {
  margin-top: 80px;
  position: relative;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.95) 0%, 
    rgba(26, 11, 38, 0.9) 50%,
    rgba(45, 27, 105, 0.8) 100%);
  border-top: 2px solid rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 0, 0, 0.8) 20%, 
    rgba(255, 255, 255, 0.6) 50%,
    rgba(0, 0, 0, 0.8) 80%, 
    transparent 100%);
  animation: footerGlow 3s ease-in-out infinite alternate;
}

@keyframes footerGlow {
  0% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

footer .footer-compact {
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px 40px;
  position: relative;
}

footer .footer-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}

footer .footer-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-self: start;
}

footer .footer-links a {
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}

footer .footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-secondary));
  transition: width 0.3s ease;
}

footer .footer-links a:hover {
  color: var(--color-text-primary);
}

footer .footer-links a:hover::after {
  width: 100%;
}

footer .footer-brand {
  justify-self: center;
  text-align: center;
}

footer .footer-brand h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 4px;
  background: linear-gradient(135deg, 
    var(--color-accent) 0%, 
    var(--color-accent-secondary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
}

footer .footer-brand p {
  color: var(--color-text-tertiary);
  font-size: 11px;
  font-weight: 500;
  opacity: 0.7;
}

footer .social-icons {
  display: flex;
  gap: 20px;
  justify-self: end;
}

footer .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, 
    rgba(45, 27, 105, 0.4) 0%, 
    rgba(26, 11, 38, 0.6) 100%);
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--color-accent);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

footer .social-icons a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    transparent, 
    rgba(0, 0, 0, 0.4), 
    transparent);
  transition: left 0.5s ease;
}

footer .social-icons a:hover::before {
  left: 100%;
}

footer .social-icons a:hover {
  background: linear-gradient(135deg, 
    var(--color-accent) 0%, 
    var(--color-accent-secondary) 100%);
  color: var(--color-bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 0, 0, 0.5);
}

footer .social-icons i {
  font-size: 16px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

footer .social-icons a:hover i {
  transform: scale(1.05);
}

footer .footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  position: relative;
  margin-top: 15px;
}

footer .footer-bottom::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--color-accent) 30%, 
    var(--color-accent-secondary) 50%,
    var(--color-accent) 70%, 
    transparent);
  border-radius: 1px;
}

footer .disclaimer {
  color: var(--color-text-tertiary);
  font-size: 11px;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto 12px;
  opacity: 0.7;
}

footer .copyright {
  color: var(--color-text-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  footer .footer-compact {
    padding: 25px 20px;
    margin: 0 15px;
  }

  footer .footer-main {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  footer .footer-links {
    justify-self: center;
    order: 2;
    gap: 20px;
  }

  footer .footer-brand {
    order: 1;
  }

  footer .social-icons {
    justify-self: center;
    order: 3;
    gap: 12px;
  }
}

@media screen and (max-width: 480px) {
  footer .footer-compact {
    padding: 20px 15px;
    margin: 0 10px;
  }

  footer .footer-links {
    gap: 15px;
  }

  footer .footer-links a {
    font-size: 13px;
  }

  footer .social-icons a {
    width: 32px;
    height: 32px;
  }

  footer .social-icons i {
    font-size: 14px;
  }

  footer .footer-brand h3 {
    font-size: 16px;
  }

  footer .footer-brand p {
    font-size: 10px;
  }

  footer .disclaimer {
    font-size: 10px;
  }

  footer .copyright {
    font-size: 11px;
  }
}

@media screen and (max-width: 576px) {
  footer {
    padding: 25px 10px;
  }

  footer .footer-compact {
    padding: 20px 15px;
    border-radius: 12px;
  }

  footer .footer-links {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }

  footer .footer-links a {
    font-size: 14px;
  }

  footer .social-icons a {
    width: 40px;
    height: 40px;
  }

  footer .social-icons i {
    font-size: 18px;
  }

  footer .disclaimer {
    font-size: 12px;
  }

  footer .copyright {
    font-size: 12px;
  }
}

html {
  scroll-behavior: smooth;
}

/* Scroll Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.animate {
  opacity: 1;
  transform: scale(1);
}

.stagger-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-item.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for sequential animations */
.stagger-item:nth-child(1) { transition-delay: 0.1s; }
.stagger-item:nth-child(2) { transition-delay: 0.2s; }
.stagger-item:nth-child(3) { transition-delay: 0.3s; }
.stagger-item:nth-child(4) { transition-delay: 0.4s; }
.stagger-item:nth-child(5) { transition-delay: 0.5s; }
.stagger-item:nth-child(6) { transition-delay: 0.6s; }

@media screen and (min-width: 928.99px) {
  .pc {
    display: none;
  }
}

@media screen and (max-width: 928.98px) {
  .mobile {
    display: none;
  }

  .bounce .row {
    justify-content: center;
  }
  .swiperContent .gf-column {
    padding: 20px 5px;
  }
  .giveaway .numbering h1 span {
    font-size: 20px !important;
    padding: 12px;
    border-radius: 6px;
    margin: 0px 1px;
    display: inline-block;
    margin-bottom: 5px;
  }
  .giveaway .numbering h1 i {
    font-size: 20px;
    margin-right: 5px;
  }
  .giveaway .numbering {
    border-radius: 20px;
    margin-bottom: 50px;
    margin-top: 30px;
    padding: 20px;
  }
}

@media screen and (max-width: 698.98px) {
  .gallery .headingIcons h1 {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .container {
    padding: 30px 10px;
  }

  .container-fluid {
    padding: 10px 10px;
  }
  footer .footer-sections {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
  }

  footer .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  footer .social-icons {
    justify-content: center;
  }
  .swiperContent .paymentBtn {
    padding: 15px 5px;
  }
  .swiperContent .paymentBtn button {
    height: 55px;
  }

  .leaderBoardBox .row {
    padding: 1rem 0.5rem;
    gap: 12px;
  }
  
  .leaderBoardBox h1 {
    font-size: 24px;
  }
  
  .leaderBoardBox p {
    font-size: 13px;
  }
  
  .leaderBoardBox .row .bxo .btn a {
    padding: 8px 16px;
    font-size: 12px !important;
  }
  
  .leaderBoardBox .row .bxo .iconsBox {
    gap: 15px;
  }
  
  .leaderBoardBox .row .bxo .iconsBox img {
    max-width: 60px;
  }
  .giveaway .numbering {
    border-radius: 20px;
    margin-bottom: 50px;
    margin-top: 30px;
    padding: 20px;
  }

  .main-heading h1 {
    font-size: 40px;
  }
  
  .hero-title {
    font-size: 40px;
    letter-spacing: 3px;
  }
  
  .floating-logos {
    width: 300px;
    height: 120px;
  }
  
  .floating-logo {
    width: 30px;
  }
  
  .floating-logo.logo-1 {
    left: 10px;
  }
  
  .floating-logo.logo-2 {
    right: 10px;
  }
  
  .floating-logo.logo-3 {
    left: 30px;
  }
  
  .floating-logo.logo-4 {
    right: 30px;
  }
  
  .glow-circle {
    width: 100px;
    height: 100px;
  }
  
  .hero-main-logo {
    max-width: 280px;
  }
  
  .hero-logo-container {
    margin: 60px 0 15px 0;
  }
}

/* Glitch logo styles - deprecated */
.glitch-logo {
  display: none;
}

.glitch-logo-letter {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glitch-logo-letter:nth-child(2) {
  color: var(--color-accent);
  animation: glitch-1 2.5s infinite;
  opacity: 0.7;
}

.glitch-logo-letter:nth-child(3) {
  color: var(--color-accent);
  animation: glitch-2 3.5s infinite;
  opacity: 0.7;
}

.glitch-logo-letter:nth-child(1) {
  z-index: 1;
  animation: pulse 3s infinite;
}

@keyframes glitch-1 {
  0% {
    transform: translate(0);
    opacity: 0.7;
  }
  10% {
    transform: translate(-8px, 5px);
    opacity: 0.6;
  }
  20% {
    transform: translate(-8px, -5px);
    opacity: 0.4;
  }
  30% {
    transform: translate(0);
    opacity: 0.7;
  }
  40% {
    transform: translate(5px, 5px);
    opacity: 0.6;
  }
  50% {
    transform: translate(5px, -5px);
    opacity: 0.4;
  }
  60% {
    transform: translate(0);
    opacity: 0.7;
  }
  100% {
    transform: translate(0);
    opacity: 0.7;
  }
}

@keyframes glitch-2 {
  0% {
    transform: translate(0);
    opacity: 0.7;
  }
  15% {
    transform: translate(10px, -10px);
    opacity: 0.5;
  }
  25% {
    transform: translate(-3px, 3px);
    opacity: 0.3;
  }
  35% {
    transform: translate(0);
    opacity: 0.7;
  }
  65% {
    transform: translate(5px, 5px);
    opacity: 0.5;
  }
  75% {
    transform: translate(-8px, -8px);
    opacity: 0.3;
  }
  85% {
    transform: translate(0);
    opacity: 0.7;
  }
  100% {
    transform: translate(0);
    opacity: 0.7;
  }
}

@keyframes pulse {
  0% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
  }
  50% {
    text-shadow: 0 0 30px rgba(255, 255, 255, 1),
      0 0 40px rgba(204, 0, 0, 0.5);
  }
  100% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
  }
}

.heroSection {
  padding-top: 120px;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

/* Hero Text Styles - Replacing Image */
.hero-text-container {
  margin-top: 0;
  margin-bottom: 30px;
  position: relative;
}

.hero-main-title {
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 900;
  color: var(--color-text-primary);
  font-family: var(--heading-family);
  letter-spacing: -0.02em;
  line-height: 0.9;
  margin-bottom: 20px;
  background: linear-gradient(135deg, 
    var(--color-accent) 0%, 
    var(--color-accent-secondary) 50%, 
    var(--color-accent) 100%);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  position: relative;
}

.hero-main-title-image {
  max-width: 100%;
  height: auto;
  max-height: 200px;
  margin-bottom: 20px;
  filter: brightness(1.2) contrast(1.1);
  transition: all 0.3s ease;
}

.hero-gradient-line {
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--color-accent) 20%, 
    var(--color-accent-secondary) 50%, 
    var(--color-accent) 80%, 
    transparent 100%);
  margin: 0 auto;
  border-radius: 2px;
  animation: lineGlow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--color-text-secondary);
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-tertiary);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

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

@keyframes lineGlow {
  0% {
    opacity: 0.6;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  }
}

/* Enhanced Neon Sign Styling for BLACKNATE Title */
.neon-sign {
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 900;
  color: #FFFFFF;
  font-family: var(--heading-family);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 0.8;
  text-align: center;
  margin: 40px 0;
  position: relative;
  
  /* Subtle red glow effect - only 3 layers for readability */
  text-shadow: 
    0 0 8px rgba(0, 0, 0, 0.6),
    0 0 16px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(0, 0, 0, 0.2);
  
  /* Subtle pulsing animation */
  animation: neonPulse 3s ease-in-out infinite alternate;
  
  /* Prevent text selection for better visual effect */
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.neon-sign:hover {
  animation-duration: 1.5s;
  transform: scale(1.01);
}

/* Neon pulse animation */
@keyframes neonPulse {
  0% {
    text-shadow: 
      0 0 8px rgba(0, 0, 0, 0.6),
      0 0 16px rgba(0, 0, 0, 0.4),
      0 0 24px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
  }
  100% {
    text-shadow: 
      0 0 12px rgba(0, 0, 0, 0.8),
      0 0 20px rgba(0, 0, 0, 0.5),
      0 0 32px rgba(0, 0, 0, 0.3);
    opacity: 1;
  }
}

/* Kick Button Styling */
.kickBtn a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px !important;
  border: none !important;
  border-radius: 10px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none !important;
  
  /* Modern solid Kick green design */
  background: #53F06A !important;
  color: #000000 !important;
  box-shadow: 0 4px 8px rgba(83, 240, 106, 0.3) !important;
  text-transform: uppercase;
}

.kickBtn a:hover {
  background: #45D659 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(83, 240, 106, 0.4) !important;
}

.kickBtn a:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(83, 240, 106, 0.3) !important;
}

/* YouTube Button Styling */
.youtubeBtn a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px !important;
  border: none !important;
  border-radius: 10px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none !important;
  
  /* Modern solid YouTube red design */
  background: #FFFFFF !important;
  color: #000000 !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
  text-transform: uppercase;
}

.youtubeBtn a:hover {
  background: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4) !important;
}

.youtubeBtn a:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

/* Button icon styling */
.kickBtn i,
.youtubeBtn i {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.kickBtn:hover i,
.youtubeBtn:hover i {
  transform: scale(1.05);
}

/* Mobile responsive button adjustments */
@media screen and (max-width: 768px) {
  .neon-sign {
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 0.05em;
    margin: 30px 0;
  }
  
  .heroSection {
    padding-top: 90px;
  }

  .heroSection .flexBtn {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .heroSection .flexBtn .btn {
    margin: 0;
    width: 100%;
    max-width: 280px;
  }
  
  .kickBtn a,
  .youtubeBtn a {
    padding: 14px 24px !important;
    font-size: 14px !important;
    gap: 10px;
    width: 100%;
    justify-content: center;
  }
  
  .kickBtn i,
  .youtubeBtn i {
    font-size: 16px;
  }
}

/* ===== MODERN HEADER DESIGN ===== */
.modern-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand-section {
  display: flex;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.02);
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.brand-text {
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}

.nav-section {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 14px;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.nav-link.active {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}

.nav-link.active .nav-indicator {
  width: 100%;
  opacity: 1;
}

.nav-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #FFFFFF, #FFFFFF);
  transition: all 0.3s ease;
  opacity: 0;
}

.nav-link:hover .nav-indicator {
  width: 100%;
  opacity: 1;
}

.nav-link i {
  font-size: 16px;
}

/* Live Status Button */
.live-status-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: none;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.live-status-btn.offline {
  color: rgba(255, 255, 255, 0.6);
}

.live-status-btn.live {
  background: linear-gradient(135deg, #53F06A, #45D659);
  color: #000000;
  border-color: #53F06A;
  box-shadow: 0 0 20px rgba(83, 240, 106, 0.4);
}

.live-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.live-status-btn.live .live-indicator {
  background: #FFFFFF;
  animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

.platform-icon {
  width: 18px;
  height: 18px;
}

.status-text {
  font-size: 12px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 8px;
  transition: all 0.3s ease;
  z-index: 10002;
  position: relative;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn.active {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-line {
  width: 24px;
  height: 3px;
  background: #FFFFFF;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.mobile-menu-btn.active .menu-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active .menu-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-btn.active .menu-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  padding: 100px 20px 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  overflow-y: auto;
  padding-top: calc(70px + 30px);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 60px;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(5px);
}

.mobile-nav-link i {
  width: 24px;
  height: 24px;
  text-align: center;
  color: #FFFFFF;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-live-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 60px;
  margin-top: 10px;
}

.mobile-live-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.mobile-live-btn.live {
  background: linear-gradient(135deg, #53F06A, #45D659);
  color: #000000;
  border-color: #53F06A;
}

.mobile-live-btn .platform-icon {
  width: 20px;
  height: 20px;
}

/* Body scroll lock when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Header Responsive */
@media screen and (max-width: 768px) {
  .nav-section,
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-nav {
    display: block;
  }
  
  .header-container {
    padding: 0 15px;
    height: 60px;
    position: relative;
    z-index: 10002;
  }
  
  .brand-text {
    font-size: 20px;
  }
  
  .logo-img {
    width: 35px;
    height: 35px;
  }
  
  .modern-header {
    position: fixed;
    z-index: 10002;
  }
}

/* Additional mobile fixes for very small screens */
@media screen and (max-width: 480px) {
  .mobile-nav-content {
    padding: 80px 15px 20px 15px;
    gap: 15px;
  }
  
  .mobile-nav-link {
    padding: 16px 18px;
    font-size: 15px;
    min-height: 56px;
  }
  
  .mobile-live-btn {
    padding: 16px 18px;
    font-size: 13px;
    min-height: 56px;
  }
  
  .header-container {
    height: 56px;
    padding: 0 12px;
  }
  
  .brand-text {
    font-size: 18px;
  }
  
  .logo-img {
    width: 32px;
    height: 32px;
  }
  
  .mobile-menu-btn {
    min-width: 40px;
    min-height: 40px;
    padding: 10px;
  }
  
  .menu-line {
    width: 22px;
    height: 2px;
  }
}

/* Touch improvements */
@media (hover: none) and (pointer: coarse) {
  .mobile-nav-link:hover,
  .mobile-nav-link:active {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: none;
  }
  
  .mobile-live-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: none;
  }
  
  .mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.15);
  }
}

/* ===== COMPACT FOOTER DESIGN ===== */
.compact-footer {
  background: #000000;
  border-top: 1px solid #333333;
  padding: 30px 0;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-brand-name {
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: -0.5px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #FFFFFF;
}

.footer-social {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
  
  .footer-links {
    gap: 20px;
  }
  
  .footer-social {
    gap: 12px;
  }
  
  .social-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .compact-footer {
    padding: 25px 0;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}

/* ===== CLEAN STAKE SECTION STYLING ===== */
.stake-section {
  padding: 60px 0;
  background: #000000;
}

.stake-section .main-heading {
  margin-bottom: 40px;
}

.stake-section .main-heading h1 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
  text-align: center;
}

.stake-section .main-heading p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  text-align: center;
}

.stake-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.stake-card {
  background: #000000;
  border: 1px solid #333333;
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
}

.stake-card:hover {
  border-color: #666666;
  transform: translateY(-2px);
}

.stake-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #333333;
}

.stake-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stake-logo-img {
  width: 80px;
  height: auto;
  filter: brightness(0) invert(1);
}

.stake-header h3 {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.stake-tag {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.stake-features {
  margin-bottom: 15px;
}

.feature {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature:last-child {
  border-bottom: none;
}

.promo-code-section {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.promo-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
}

.promo-code {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  font-family: monospace;
  flex: 1;
}

.copy-button {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #FFFFFF;
  padding: 6px 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
  position: relative;
  overflow: hidden;
}

.copy-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.copy-button:active {
  transform: scale(0.95);
}

.copy-button.copied {
  background: rgba(76, 175, 80, 0.3);
  border-color: rgba(76, 175, 80, 0.6);
  color: #4CAF50;
  animation: copySuccess 0.6s ease;
}

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

.copy-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.copy-button.clicked::after {
  width: 100px;
  height: 100px;
  opacity: 0;
}

.stake-button {
  display: block;
  width: 100%;
  background: #FFFFFF;
  color: #000000;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
}

.stake-button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

/* Stake Section Responsive */
@media screen and (max-width: 768px) {
  .stake-section {
    padding: 40px 0;
  }

  .stake-cards {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 15px;
  }

  .stake-card {
    padding: 15px;
  }

  .stake-header h3 {
    font-size: 16px;
  }
}

/* ===== CLEAN VIDEOS SECTION STYLING ===== */
.videosGrid {
  padding: 60px 0;
  background: #000000;
}

.videosGrid .main-heading {
  margin-bottom: 40px;
}

.videosGrid .main-heading h1 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
  text-align: center;
}

.videosGrid .main-heading p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  text-align: center;
}

.videoContent {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.video-card {
  display: block;
  text-decoration: none;
  background: #000000;
  border: 1px solid #333333;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.video-card:hover {
  border-color: #666666;
  transform: translateY(-2px);
}

.video-thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #111111;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.play-overlay i {
  color: #000000;
  font-size: 18px;
  margin-left: 2px;
}

.video-card:hover .play-overlay {
  opacity: 1;
}

.video-card:hover .video-thumbnail img {
  opacity: 0.8;
}

.video-info {
  padding: 15px;
}

.video-title {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 8px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin: 0;
  font-weight: 500;
}

/* Videos Section Responsive */
@media screen and (max-width: 768px) {
  .videosGrid {
    padding: 40px 0;
  }

  .videoContent {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 15px;
  }

  .video-info {
    padding: 12px;
  }

  .video-title {
    font-size: 13px;
  }

  .video-date {
    font-size: 11px;
  }
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===== CONTACT SECTION STYLING ===== */
.contact-section {
  padding: 80px 0;
}

.contact-section .main-heading {
  margin-bottom: 50px;
}

.contact-section .main-heading h1 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #FFFFFF, #FFFFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-section .main-heading p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-weight: 500;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-card {
  background: linear-gradient(145deg, rgba(20, 25, 35, 0.95) 0%, rgba(35, 40, 55, 0.9) 100%);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-card.discord-card::before {
  background: linear-gradient(90deg, #5865F2, #4752C4);
}

.contact-card.email-card::before {
  background: linear-gradient(90deg, #FFFFFF, #FFFFFF);
}

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

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.contact-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  font-size: 36px;
  transition: all 0.3s ease;
}

.discord-card .contact-icon {
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.2), rgba(71, 82, 196, 0.1));
  color: #5865F2;
  border: 1px solid rgba(88, 101, 242, 0.3);
}

.email-card .contact-icon {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-card:hover .contact-icon {
  transform: scale(1.1);
}

.contact-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.contact-value {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  font-weight: 500;
  word-break: break-all;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-btn::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;
}

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

.discord-btn {
  background: linear-gradient(135deg, #5865F2, #4752C4);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.discord-btn:hover {
  background: linear-gradient(135deg, #4752C4, #3c45a3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(88, 101, 242, 0.6);
}

.email-btn {
  background: linear-gradient(135deg, #FFFFFF, #FFFFFF);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

.email-btn:hover {
  background: linear-gradient(135deg, #FFFFFF, #FFFFFF);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.6);
}

/* Contact Section Responsive */
@media screen and (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .contact-card {
    padding: 30px 20px;
    margin: 0 10px;
  }

  .contact-section .main-heading h1 {
    font-size: 2.5rem;
  }

  .contact-section .main-heading p {
    font-size: 1rem;
  }

  .contact-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }

  .contact-btn {
    padding: 12px 24px;
    font-size: 13px;
  }
}

.nav-area .live-button.live {
  background: linear-gradient(135deg, 
    rgba(34, 197, 94, 0.9) 0%, 
    rgba(16, 185, 129, 0.8) 100%);
  border-color: rgba(34, 197, 94, 0.4);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.nav-area .live-button.live::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  animation: shimmer-live 2s infinite;
}

.nav-area .live-button.offline {
  background: linear-gradient(135deg, 
    rgba(45, 27, 105, 0.8) 0%, 
    rgba(26, 11, 38, 0.9) 100%);
  border-color: rgba(0, 0, 0, 0.3);
  color: var(--color-text-secondary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-area .live-button.live:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
  border-color: rgba(34, 197, 94, 0.6);
}

.nav-area .live-button.offline:hover {
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.2) 0%, 
    rgba(45, 27, 105, 0.9) 100%);
  border-color: rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.nav-area .kick-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(1.2);
}

/* Mobile Live Button */
.mobile-live-btn {
  margin-top: 15px;
  width: fit-content;
  align-self: center;
}

.overlay-content .live-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.overlay-content .live-button.live {
  background: linear-gradient(135deg, 
    rgba(34, 197, 94, 0.9) 0%, 
    rgba(16, 185, 129, 0.8) 100%);
  border-color: rgba(34, 197, 94, 0.4);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.overlay-content .live-button.live::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  animation: shimmer-live 2s infinite;
}

.overlay-content .live-button.offline {
  background: linear-gradient(135deg, 
    rgba(45, 27, 105, 0.8) 0%, 
    rgba(26, 11, 38, 0.9) 100%);
  border-color: rgba(0, 0, 0, 0.3);
  color: var(--color-text-secondary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.overlay-content .live-button.live:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
  border-color: rgba(34, 197, 94, 0.6);
}

.overlay-content .live-button.offline:hover {
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.2) 0%, 
    rgba(45, 27, 105, 0.9) 100%);
  border-color: rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
