/* ========================================
   SUBLABELS SECTION
   ======================================== */

.sublabels-section {
  padding: 5rem 2rem;
  position: relative;
  background: var(--dark);
}

.sublabels-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.sublabels-section .section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.8),
    0 4px 16px rgba(0, 0, 0, 0.6);
}

.sublabels-section .section-description {
  font-size: 1.1rem;
  color: var(--light-grey);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.8),
    0 4px 16px rgba(0, 0, 0, 0.6);
}

.sublabels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.sublabel-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  box-shadow: 
    0 25px 70px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 0 rgba(0, 0, 0, 0.2);
}

.sublabel-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  z-index: 1;
  pointer-events: none;
}

.sublabel-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.3);
}

.sublabel-header {
  padding: 2rem 1.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.sublabel-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  flex-shrink: 0;
  transition: transform 0.3s ease;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.3);
  overflow: hidden; 
}

.sublabel-card:hover .sublabel-icon {
  transform: rotate(5deg) scale(1.1);
}

.sublabel-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  border-radius: 8px;
  display: block;
}

.sublabel-info h3 {
  font-size: 1.2rem;
  color: var(--light);
  text-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.8),
    0 4px 16px rgba(0, 0, 0, 0.6);
}

.sublabel-content {
  padding: 0 1.5rem 1.5rem;
  position: relative;
  z-index: 2;
}

.sublabel-description {
  color: var(--light-grey);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.sublabel-discord-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: rgba(88, 101, 242, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 15px;
  border: 1px solid rgba(88, 101, 242, 0.3);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.sublabel-discord-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.sublabel-discord-link:hover::before {
  left: 100%;
}

.sublabel-discord-link:hover {
  background: rgba(88, 101, 242, 0.3);
  border-color: rgba(88, 101, 242, 0.6);
}

.sublabel-discord-icon {
  width: 40px;
  height: 40px;
  background: rgba(88, 101, 242, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(88, 101, 242, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 
    0 4px 15px rgba(88, 101, 242, 0.4),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.3);
}

.sublabel-discord-icon i {
  color: white;
  font-size: 1.2rem;
}

.sublabel-discord-info {
  flex: 1;
  position: relative;
  z-index: 1;
}

.sublabel-discord-count {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--light);
  display: block;
  margin-bottom: 0.1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.sublabel-discord-label {
  font-size: 0.8rem;
  color: var(--light-grey);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.sublabel-actions {
  display: flex;
  gap: 0.8rem;
}

.sublabel-btn {
  flex: 1;
  padding: 0.8rem;
  border-radius: 15px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.sublabel-btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: var(--light);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.sublabel-btn-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -150%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.15) 30%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.sublabel-btn-primary:hover::before {
  opacity: 1;
  animation: lightMove 2.5s ease-in-out infinite;
}

.sublabel-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.4);
}

.sublabel-btn-secondary {
  background: rgba(88, 101, 242, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: var(--text);
  border: 1px solid rgba(88, 101, 242, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.sublabel-btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.sublabel-btn-secondary:hover::before {
  left: 100%;
}

.sublabel-btn-secondary:hover {
  background: rgba(88, 101, 242, 0.3);
  border-color: rgba(88, 101, 242, 0.6);
  color: #c0d0ff;
  transform: translateY(-2px);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  padding: 0 5%;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero-video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, var(--dark), transparent);
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  z-index: 3;
  transform: translateZ(0);
  padding: 50px 60px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px) saturate(120%);
  -webkit-backdrop-filter: blur(15px) saturate(120%); 
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 25px 70px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 0 rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: visible;
  margin-bottom: 0;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  filter: url(#liquid-glass-filter);
  -webkit-filter: url(#liquid-glass-filter);
  z-index: -1;
  pointer-events: none;
  border-radius: 40px;
}

.hero-content p span {
  font-family: 'KUV', sans-serif;
}

.hero-content::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.06) 0%, transparent 30%),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.04) 0%, transparent 35%);
  animation: liquidFlow 25s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero-content h1,
.hero-content h2,
.hero-content p {
  text-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.8),
    0 4px 16px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 1;
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 2rem 0;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 3rem;
  animation: scroll 40s linear infinite;
  align-items: center;
  will-change: transform;
  width: max-content;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.affiliate-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: all 0.3s ease;
  user-select: none;
  -webkit-user-drag: none;
  flex-shrink: 0;
}

.affiliate-logo:hover {
  opacity: 1;
}

.full-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 2; 
  pointer-events: auto;
}

.video-credits {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 3;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.video-credits span {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.mute-control {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999999;
  width: 56px;
  height: 56px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  pointer-events: auto;
  outline: none;
}

.mute-control:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.mute-control:active {
  transform: translateY(0);
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.3);
}

.mute-icon {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.mute-control:hover .mute-icon {
  transform: scale(1.1);
}

.mute-control.muted {
  background: rgba(255, 100, 100, 0.15);
  border-color: rgba(255, 100, 100, 0.3);
}

.mute-control.muted:hover {
  background: rgba(255, 100, 100, 0.22);
  border-color: rgba(255, 100, 100, 0.4);
}

.mute-control.icon-change .mute-icon {
  animation: iconPulse 0.3s ease;
}


/* ========================================
   GENERAL SECTIONS
   ======================================== */

.section {
  padding: 5rem 5%;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.8),
    0 4px 16px rgba(0, 0, 0, 0.6);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  background: var(--text);
  height: 3px;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.entertainments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.discord-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes liquidFlow {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(5%, -5%) rotate(90deg);
  }
  50% {
    transform: translate(-5%, 5%) rotate(180deg);
  }
  75% {
    transform: translate(5%, 5%) rotate(270deg);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-25%);
  }
}

@keyframes lightMove {
  0%, 100% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(0%, 0%);
  }
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

@keyframes discordFloat {
  0% {
    transform: translateZ(0px) rotateY(0deg) rotateX(0deg);
  }
  50% {
    transform: translateZ(30px) rotateY(-5deg) rotateX(2deg);
  }
  100% {
    transform: translateZ(0px) rotateY(0deg) rotateX(0deg);
  }
}

/* ========================================
   MEDIA QUERIES - SUBLABELS
   ======================================== */

@media (max-width: 768px) {
  .sublabels-section .section-title {
    font-size: 2rem;
  }

  .sublabels-grid {
    grid-template-columns: 1fr;
  }

  .sublabel-card {
    border-radius: 20px;
  }

  .sublabel-discord-link,
  .sublabel-btn {
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .sublabel-card {
    border-radius: 18px;
  }

  .sublabel-header {
    padding: 1.5rem 1.2rem 0.8rem;
  }

  .sublabel-content {
    padding: 0 1.2rem 1.2rem;
  }
}

@media (max-width: 360px) {
  .sublabels-section {
    padding: 4rem 1rem;
  }

  .sublabel-card {
    border-radius: 15px;
  }

  .sublabel-icon {
    width: 45px;
    height: 45px;
  }

  .sublabel-icon img {
    width: 28px;
    height: 28px;
  }
}

/* ========================================
   MEDIA QUERIES - HERO
   ======================================== */

@media (max-width: 768px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  
  .hero-content {
    padding: 30px 35px;
    margin-bottom: 2rem;
    max-width: 90%;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .affiliate-logo {
    height: 50px;
  }

  .carousel-track {
    gap: 2.5rem;
  }

  .carousel-container {
    padding: 1.5rem 0;
    margin-top: 1.5rem;
  }

  .video-credits {
    bottom: 20px;
    left: 20px;
    font-size: 12px;
  }

  .mute-control {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .mute-icon {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 40px;
    padding-left: 4%;
    padding-right: 4%;
  }
  
  .hero-content {
    padding: 25px 30px;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }

  .hero-content h2 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .affiliate-logo {
    height: 45px;
  }

  .carousel-track {
    gap: 2rem;
  }

  .carousel-container {
    padding: 1.2rem 0;
    margin-top: 1.2rem;
  }

  .video-credits {
    bottom: 15px;
    left: 15px;
    font-size: 11px;
  }

  .mute-control {
    bottom: 15px;
    right: 15px;
    width: 46px;
    height: 46px;
  }

  .mute-icon {
    font-size: 16px;
  }
}

@media (max-width: 360px) {
  .hero {
    padding: 90px 3% 30px 3%;
  }

  .hero-content {
    max-width: 100%;
    padding: 20px 25px;
    margin-bottom: 1rem;
    border-radius: 25px;
  }

  .hero-content h2 {
    font-size: 1.3rem;
  }

  .hero-content p {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .carousel-container {
    padding: 1rem 0;
    margin-top: 1rem;
  }

  .affiliate-logo {
    height: 38px;
  }

  .carousel-track {
    gap: 1.5rem;
  }

  .video-credits {
    bottom: 12px;
    left: 12px;
    font-size: 10px;
  }

  .mute-control {
    bottom: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
  }

  .mute-icon {
    font-size: 15px;
  }
}

    /* ========================================
       DISCORD SECTION - FIXED
       ======================================== */

    .discord-section {
      z-index: 5;
      background-color: var(--dark);
      position: relative;
      overflow: hidden;
      padding: 5rem 5%;
      width: 100%;
    }

    .discord-section::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 30%,
        var(--dark) 100%
      );
      z-index: 0;
      pointer-events: none;
    }

    .section {
      position: relative;
    }

    .section-header {
      text-align: center;
      margin-bottom: 3rem;
      position: relative;
      z-index: 2;
    }

    .section-title {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 1rem;
      background: white;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 4px 16px rgba(0, 0, 0, 0.6);
    }

    .section-description {
      font-size: 1.1rem;
      color: var(--light-grey);
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
      text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 4px 16px rgba(0, 0, 0, 0.6);
    }

    .discord-widget {
      width: 100%;
      max-width: 100%;
      background: rgba(255, 255, 255, 0.04);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border-radius: 15px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      position: relative;
      margin: 0;
      z-index: 2;
    }

    .discord-widget::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
      z-index: 0;
      pointer-events: none;
    }

    .discord-header {
      background: rgba(88, 101, 242, 0.15);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border-bottom: 1px solid rgba(88, 101, 242, 0.3);
      padding: 1.5rem 2rem;
      display: flex;
      align-items: center;
      position: relative;
      z-index: 1;
      box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
    }

    .discord-logo {
      width: 35px;
      height: 35px;
      margin-right: 1.2rem;
      position: relative;
      z-index: 1;
    }

    .discord-server-info {
      flex-grow: 1;
      position: relative;
      z-index: 1;
    }

    .discord-server-name {
      font-weight: 600;
      margin-bottom: 0.4rem;
      font-size: 1.3rem;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }

    .discord-server-status {
      font-size: 0.95rem;
      opacity: 0.9;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }

    .discord-members {
      padding: 2rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.5rem;
    }

    .discord-member {
      display: flex;
      align-items: center;
      padding: 0.8rem;
      border-radius: 15px;
      background: rgba(255, 255, 255, 0.02);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.05);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .discord-member:hover {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(255, 255, 255, 0.12);
      box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
      transform: translateY(-2px);
    }

    .member-avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      margin-right: 1.2rem;
      object-fit: cover;
      border: 2px solid rgba(255, 255, 255, 0.15);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    }

    .discord-member:hover .member-avatar {
      transform: scale(1.1) rotate(5deg);
      border-color: rgba(255, 255, 255, 0.3);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    }

    .member-info {
      flex-grow: 1;
    }

    .member-name {
      font-weight: 600;
      font-size: 1.05rem;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
      margin-bottom: 0.3rem;
    }

    .member-status {
      font-size: 0.9rem;
      color: var(--light-grey);
      display: flex;
      align-items: center;
    }

    .status-indicator {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      margin-right: 0.6rem;
      box-shadow: 0 0 8px currentColor;
    }

    .status-online {
      background-color: #3ba55c;
    }

    .status-idle {
      background-color: #faa61a;
    }

    .status-dnd {
      background-color: #ed4245;
    }

    .discord-join {
      padding: 2rem;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .discord-join-btn {
      display: inline-block;
      padding: 1rem 2.5rem;
      background: rgba(88, 101, 242, 0.2);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      color: white;
      text-decoration: none;
      border-radius: 20px;
      font-weight: 600;
      font-size: 1.05rem;
      border: 1px solid rgba(88, 101, 242, 0.4);
      transition: all 0.3s ease;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .discord-join-btn::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -150%;
      width: 200%;
      height: 200%;
      background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.15) 30%,
        transparent 70%
      );
      opacity: 0;
      transition: opacity 0.6s ease;
      pointer-events: none;
    }

    .discord-join-btn:hover::before {
      opacity: 1;
      animation: lightMove 2.5s ease-in-out infinite;
    }

    .discord-join-btn:hover {
      background: rgba(88, 101, 242, 0.3);
      border-color: rgba(88, 101, 242, 0.6);
      transform: translateY(-3px);
    }

    .discord-join-btn:active {
      transform: translateY(-1px);
    }

    @keyframes lightMove {
      0%, 100% {
        transform: translate(-50%, -50%);
      }
      50% {
        transform: translate(0%, 0%);
      }
    }

    .fade-in {
      animation: fadeIn 0.8s ease;
    }

    .fade-in-delay-1 {
      animation: fadeIn 0.8s ease 0.2s both;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ========================================
       MEDIA QUERIES
       ======================================== */

    @media (max-width: 1200px) {
      .discord-members {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .section-title {
        font-size: 2.5rem;
      }

      .discord-widget {
        border-radius: 25px;
      }

      .discord-members {
        grid-template-columns: 1fr;
        padding: 1.5rem;
      }

      .discord-header {
        padding: 1.2rem 1.5rem;
      }
    }

    @media (max-width: 480px) {
      .section-title {
        font-size: 2rem;
      }

      .section-description {
        font-size: 1rem;
      }

      .discord-member {
        padding: 0.6rem;
        border-radius: 12px;
      }
      
      .member-avatar {
        width: 44px;
        height: 44px;
      }
      
      .discord-server-name {
        font-size: 1.1rem;
      }
      
      .discord-widget {
        border-radius: 20px;
      }

      .discord-members {
        padding: 1.2rem;
      }
    }