* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-color: #1db857;
  --primary-hover: #17a047;
  --dark-bg: #0a0a0a;
  --darker-bg: #050505;
  --card-bg: #121212;
  --text-primary: #ffffff;
  --text-secondary: #e0e0e0;
  --border-color: #252525;
}
.logo-link {
  text-decoration: none;
  color: inherit;
}

html {
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
  "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #000000;
  color: var(--text-primary);
  line-height: 1.6;
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 900px;
  background: linear-gradient(180deg, 
    #0d5e2f 0%,
    #0b4f27 12%,
    #0a4523 20%,
    #083a1e 28%,
    #06321a 38%,
    #052915 48%,
    #041f10 58%,
    #03160b 68%,
    #020d07 78%,
    #010703 88%,
    #000000 100%
  );
  clip-path: ellipse(100% 100% at 50% 0%);
  z-index: 0;
  pointer-events: none;
  animation: gradientPulse 8s ease-in-out infinite alternate;
}

@keyframes gradientPulse {
  0% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
  }
}

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  flex-direction: column;
  gap: 30px;
}

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.loader-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  animation: bounceRotate 2s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(29, 184, 87, 0.6));
}

@keyframes bounceRotate {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-20px) rotate(10deg) scale(1.1);
  }
  50% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  75% {
    transform: translateY(-10px) rotate(-10deg) scale(1.05);
  }
}

.loader-dots {
  display: flex;
  gap: 12px;
  align-items: center;
}

.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary-color);
  animation: dotBounce 1.4s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(29, 184, 87, 0.5);
}

.dot:nth-child(1) {
  animation-delay: 0s;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotBounce {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.3);
    opacity: 1;
  }
}

.loader-messages {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-text {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  animation: fadeInOut 0.5s ease-in-out;
  text-shadow: 0 0 10px rgba(29, 184, 87, 0.3);
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.loader-progress {
  width: 300px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.loader-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), #2dd475);
  border-radius: 10px;
  width: 0%;
  transition: width 0.3s ease;
  box-shadow: 0 0 20px rgba(29, 184, 87, 0.6);
  position: relative;
  overflow: hidden;
}

.loader-progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.page-content {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in, visibility 0.5s ease-in;
  position: relative;
  z-index: 1;
}

.page-content.visible {
  opacity: 1;
  visibility: visible;
}

#cursorCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(to bottom, #050505 0%, #0a0a0a 50%, #0d0d0d 100%);
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float-orb 20s ease-in-out infinite;
  will-change: transform, opacity;
}
.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(29, 184, 87, 0.3) 0%, rgba(29, 184, 87, 0) 70%);
  top: -250px;
  right: -150px;
  animation-duration: 25s;
}
.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(29, 184, 87, 0.25) 0%, rgba(23, 160, 71, 0) 70%);
  bottom: -200px;
  left: -100px;
  animation-duration: 30s;
  animation-delay: -5s;
}
.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(29, 184, 87, 0.2) 0%, rgba(29, 184, 87, 0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 35s;
  animation-delay: -10s;
}
@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -50px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.9); }
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(29, 184, 87, 0.03) 1px, transparent 1px),
  linear-gradient(90deg, rgba(29, 184, 87, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

.bubble {
  position: fixed;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 184, 87, 0.15) 0%, rgba(29, 184, 87, 0.05) 50%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  animation: float-bubble linear infinite;
}
@keyframes float-bubble {
  0%   { transform: translateY(100vh) translateX(0) scale(1); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-100vh) translateX(var(--float-x)) scale(1.2); opacity: 0; }
}
.bubble:nth-child(1) { width: 80px; height: 80px; left: 10%; animation-duration: 25s; --float-x: 50px; }
.bubble:nth-child(2) { width: 120px; height: 120px; left: 25%; animation-duration: 30s; --float-x: -30px; }
.bubble:nth-child(3) { width: 60px; height: 60px; left: 50%; animation-duration: 20s; --float-x: 70px; }
.bubble:nth-child(4) { width: 100px; height: 100px; left: 70%; animation-duration: 28s; --float-x: -60px; }
.bubble:nth-child(5) { width: 90px; height: 90px; left: 85%; animation-duration: 22s; --float-x: 40px; }
.bubble:nth-child(6) { width: 70px; height: 70px; left: 40%; animation-duration: 26s; --float-x: -45px; }

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

.navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  z-index: 1000;
  padding: 0 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
  top: 24px;
  max-width: 850px;
  padding: 0 12px;
}
.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
  background: rgba(18, 18, 18, 0.45);
  backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  animation: slideDown 0.6s ease both;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled .nav-pill {
  padding: 10px 24px;
}
@keyframes slideDown {
  from { transform: translateY(-120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* Left section with logo and links */
.nav-left-section {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: space-between;
}

/* logo + brand */
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.logo-img {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.logo-link:hover .logo-img {
  transform: rotate(360deg);
}
.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
  transition: color 0.4s ease;
}
.navbar.scrolled .logo-text {
  color: var(--primary-color);
}

/* desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  position: relative;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s;
}
.nav-links a:hover {
  color: var(--primary-color);
}
.nav-links a:hover::after {
  width: 100%;
}

.promy-plus-link {
  color: #ffd700 !important;
  font-weight: 600 !important;
  position: relative;
  animation: plusGlow 2s ease-in-out infinite;
}

.promy-plus-link::after {
  background: #ffd700 !important;
}

.promy-plus-link:hover {
  color: #ffed4e !important;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@keyframes plusGlow {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}

/* User Section */
.nav-user-section {
  display: flex;
  align-items: center;
  margin-left: auto;
  padding-left: 1rem;
}

.nav-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #17a047 100%);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(29, 184, 87, 0.3);
}

.nav-login-btn:hover {
  background: linear-gradient(135deg, #17a047 0%, #158f43 100%);
  box-shadow: 0 6px 20px rgba(29, 184, 87, 0.5);
  transform: translateY(-2px);
}

.nav-login-btn svg {
  flex-shrink: 0;
}

.nav-user-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #161616bd;
  background: var(--card-bg);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  overflow: hidden;
  display: block;
}

.nav-user-avatar:hover {
  border-color: #2dd475;
  box-shadow: 0 0 15px rgba(29, 184, 87, 0.5);
  transform: scale(1.05);
}

.nav-user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dropdown-menu-right {
  position: absolute;
  top: 100%;
  left: auto;
  right: 0;
  transform: translateX(0) translateY(-10px);
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  z-index: 1001;
  margin-top: 8px;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.8rem 0;
}

.nav-user-dropdown:hover .dropdown-menu-right,
.nav-user-dropdown.active .dropdown-menu-right {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) translateY(0);
}

.user-dropdown-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.2rem;
  background: rgba(29, 184, 87, 0.05);
  border-radius: 8px 8px 0 0;
}

.dropdown-user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  object-fit: cover;
}

.dropdown-user-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  min-width: 0;
}

.dropdown-username {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dropdown-user-id {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.2rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
}

.dropdown-item svg {
  flex-shrink: 0;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  vertical-align: middle;
  display: inline-block;
}

.dropdown-item:hover {
  background: rgba(29, 184, 87, 0.1);
  color: var(--primary-color);
}

.dropdown-item:hover svg {
  color: var(--primary-color);
}

/* dropdown */
.dropdown {
  position: relative;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.8rem 0;
  min-width: 220px;
  max-width: 280px;
  max-height: 70vh;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  z-index: 1001;
  margin-top: 8px;
}
.dropdown:last-of-type .dropdown-menu {
  left: auto;
  right: 0;
  transform: translateX(0) translateY(-10px);
}
.dropdown:first-of-type .dropdown-menu {
  left: 0;
  transform: translateX(0) translateY(-10px);
}
.dropdown-menu::-webkit-scrollbar {
  width: 6px;
}
.dropdown-menu::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}
.dropdown-menu::-webkit-scrollbar-thumb {
  background: rgba(29, 184, 87, 0.5);
  border-radius: 3px;
}
.dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(29, 184, 87, 0.7);
}
.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown:last-of-type:hover .dropdown-menu,
.dropdown:last-of-type.active .dropdown-menu {
  transform: translateX(0) translateY(0);
}
.dropdown:first-of-type:hover .dropdown-menu,
.dropdown:first-of-type.active .dropdown-menu {
  transform: translateX(0) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.8rem 1.2rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  font-size: 0.95rem;
  font-weight: 400;
}
.dropdown-menu a::after {
  display: none;
}
.dropdown-menu a:hover {
  color: var(--primary-color);
  background: rgba(29, 184, 87, 0.1);
}

.dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0.5rem 0;
}

.dropdown-section-title {
  padding: 0.6rem 1.2rem 0.4rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  pointer-events: none;
}

/* glass CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 1.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: rgba(29, 184, 87, 0.15);
  border: 1px solid rgba(29, 184, 87, 0.35);
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.nav-cta:hover {
  background: rgba(29, 184, 87, 0.25);
  border-color: rgba(29, 184, 87, 0.7);
  box-shadow: 0 0 20px rgba(29, 184, 87, 0.35);
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 8px;
  z-index: 1001;
  position: relative;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* tablet/medium screens */
@media (max-width: 1100px) {
  .navbar {
    max-width: 95%;
  }
  .navbar.scrolled {
    max-width: 700px;
  }
  .nav-pill {
    padding: 16px 28px;
  }
  .nav-links {
    gap: 0.4rem;
  }
  .nav-links a {
    font-size: 0.9rem;
  }
  .dropdown-menu {
    max-height: 60vh;
    max-width: 260px;
  }
}

@media (max-width: 900px) {
  .navbar.scrolled {
    max-width: 90%;
  }
  .dropdown-menu {
    min-width: 200px;
    max-width: 240px;
    font-size: 0.9rem;
    max-height: 55vh;
  }
  .dropdown-menu a {
    padding: 0.7rem 1rem;
  }
}

@media (max-width: 820px) {
  .dropdown-menu {
    max-height: 50vh;
    min-width: 180px;
    max-width: 220px;
  }
  .dropdown-menu a {
    padding: 0.65rem 0.9rem;
    font-size: 0.85rem;
  }
}

/* mobile */
@media (max-width: 768px) {
  .navbar {
    top: 0;
    left: 12px;
    right: 12px;
    transform: none;
    max-width: none;
  }
  .navbar.scrolled {
    top: 12px;
  }
  .nav-pill {
    border-radius: 0;
    padding: 14px 16px;
    background: rgba(18, 18, 18, 0.35);
    backdrop-filter: blur(10px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  }
  .navbar.scrolled .nav-pill {
    border-radius: 16px;
    padding: 10px 16px;
    background: rgba(18, 18, 18, 0.45);
    backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  }
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.2rem;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s;
  }
  .nav-links.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
  .hamburger {
    display: flex;
  }
  .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    background: transparent;
    border: none;
    backdrop-filter: none;
    padding: 0;
    margin: 0;
    transition: max-height 0.3s, opacity 0.3s, visibility 0.3s;
  }
  .dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 0.6rem 0;
    margin-top: 0.6rem;
    margin-left: 1rem;
  }
  .dropdown-menu a {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

}

.btn-primary {
  background: #5865F2;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  position: relative;
  overflow: hidden;
  border: none;
}
.btn-primary:hover {
  background: #4752C4;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
}
.btn-primary:active {
  background: #3c45a5;
  transform: translateY(0);
}
.btn-secondary {
  background: #4E5058;
  color: #dbdee1;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  position: relative;
  overflow: hidden;
  border: none;
}
.btn-secondary:hover {
  background: #6D6F78;
  transform: translateY(-2px);
}
.btn-secondary:active {
  background: #5c5e66;
  transform: translateY(0);
}
.btn-success {
  background: #248046;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  position: relative;
  overflow: hidden;
  border: none;
}
.btn-success:hover {
  background: #1a6334;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(36, 128, 70, 0.4);
}
.btn-danger {
  background: #DA373C;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  position: relative;
  overflow: hidden;
  border: none;
}
.btn-danger:hover {
  background: #A12D30;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(218, 55, 60, 0.4);
}
.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.hero {
  padding: 150px 0 100px;
  position: relative;
  z-index: 2;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-left {
  text-align: left;
}
.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #57e494 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 0.8s ease, textShimmer 3s ease-in-out infinite;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes textShimmer {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}
.hero-subtitle {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  animation: fadeInUp 1.2s ease;
  flex-wrap: wrap;
}
.btn-container {
  position: relative;
  padding: 3px;
  background: linear-gradient(90deg, var(--primary-color), #1db857);
  border-radius: 12px;
  transition: all 0.4s ease;
}
.btn-container::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 12px;
  z-index: -10;
  filter: blur(0);
  transition: filter 0.4s ease;
}
.btn-container:hover::before {
  background: linear-gradient(90deg, var(--primary-color), #1db857);
  filter: blur(12px);
}
.btn-container:active::before {
  filter: blur(2px);
}
.btn-primary,
.btn-secondary {
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  border: none;
  background: var(--primary-color);
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(29, 184, 87, 0.2);
}
.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
  background: var(--primary-hover);
  box-shadow: 0 4px 15px rgba(29, 184, 87, 0.4);
}
.btn-primary:active,
.btn-secondary:active {
  transform: translateY(0);
}
.button {
  --black-700: hsla(0 0% 12% / 1);
  --border_radius: 9999px;
  --transtion: 0.3s ease-in-out;
  --offset: 2px;

  cursor: pointer;
  position: relative;

  display: flex;
  align-items: center;
  gap: 0.5rem;

  transform-origin: center;

  padding: 1rem 2rem;
  background-color: transparent;

  border: none;
  border-radius: var(--border_radius);
  transform: scale(calc(1 + (var(--active, 0) * 0.1)));

  transition: transform var(--transtion);
  text-decoration: none;
}

.button:hover .text_button {
  background-image: linear-gradient(
    90deg,
    hsla(120, 100%, 50%, 1) 0%,
    hsla(120, 100%, 50%, var(--active, 0)) 120%
  )
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  animation: fadeInUp 1.4s ease;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fadeInUpSlow 1.2s ease forwards;
}
.stat-item:nth-child(1) {
  animation-delay: 0.2s;
}
.stat-item:nth-child(2) {
  animation-delay: 0.4s;
}
.stat-item:nth-child(3) {
  animation-delay: 0.6s;
}
@keyframes fadeInUpSlow {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0.3rem;
}
.stat-label {
  color: var(--text-secondary);
  font-size: 0.85rem;
}
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1s ease;
}
.video-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(29, 184, 87, 0.2);
  border: 1px solid rgba(29, 184, 87, 0.3);
  cursor: pointer;
}
.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.video-container:hover .video-thumbnail {
  transform: scale(1.05);
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(29, 184, 87, 0.9);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}
.play-button:hover {
  background: var(--primary-color);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 4px 20px rgba(29, 184, 87, 0.4);
}
.play-button svg {
  width: 30px;
  height: 30px;
  margin-left: 4px;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-left {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  .btn-container {
    width: 100%;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.showcase {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}
.showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.showcase-text {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}
.showcase-text.visible {
  opacity: 1;
  transform: translateX(0);
}
.showcase-image {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
  perspective: 1000px;
}
.showcase-image.visible {
  opacity: 1;
  transform: translateX(0);
}
.showcase-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: rotateY(-8deg) rotateX(2deg);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  object-fit: contain;
}
.showcase-image img:hover {
  transform: rotateY(-8deg) rotateX(2deg) scale(1.02);
  box-shadow: 0 25px 70px rgba(29, 184, 87, 0.2);
}
.showcase-reverse {
  margin-top: 100px;
}
.showcase-reverse .showcase-content {
  grid-template-columns: 1fr 1fr;
}
.showcase-reverse .showcase-text {
  order: 2;
  transform: translateX(50px);
}
.showcase-reverse .showcase-text.visible {
  transform: translateX(0);
}
.showcase-reverse .showcase-image {
  order: 1;
  transform: translateX(-50px);
}
.showcase-reverse .showcase-image.visible {
  transform: translateX(0);
}
.showcase-reverse .showcase-image img {
  transform: rotateY(8deg) rotateX(2deg);
}
.showcase-reverse .showcase-image img:hover {
  transform: rotateY(8deg) rotateX(2deg) scale(1.02);
  box-shadow: 0 25px 70px rgba(29, 184, 87, 0.2);
}

.section-badge {
  display: inline-block;
  background: rgba(29, 184, 87, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.showcase-text h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.showcase-text h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}
.showcase-text p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.showcase-text .disclaimer {
  font-style: italic;
  font-size: 0.9rem;
  border-left: 3px solid var(--primary-color);
  padding-left: 1rem;
  margin-top: 1.5rem;
}

.commands {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.section-description {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}
.commands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.command-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
}
.command-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(29, 184, 87, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.5s;
}
.command-card:hover::before {
  top: -100%;
  left: -100%;
}
.command-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.command-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(29, 184, 87, 0.2);
}
.command-icon {
  width: 50px;
  height: 50px;
  background: rgba(29, 184, 87, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}
.command-card:hover .command-icon {
  transform: rotate(360deg);
}
.command-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}
.command-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
}
.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s ease;
}
.faq-question:hover {
  background: rgba(29, 184, 87, 0.05);
}
.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}
.faq-item:hover .faq-question h3 {
  color: var(--primary-color);
}
.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}
.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.footer {
  background: linear-gradient(180deg, var(--darker-bg) 0%, rgba(10, 10, 10, 0.95) 100%);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 2;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  opacity: 0.3;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(6, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 2fr repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.footer-column h4 {
  color: #ffffff;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-column:first-child h4 {
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #2dd475 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: none;
  letter-spacing: normal;
}
.footer-column p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.footer-column ul {
  list-style: none;
}
.footer-column ul li {
  margin-bottom: 0.6rem;
}
.footer-column ul li a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.9rem;
  position: relative;
}
.footer-column ul li a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}
.footer-column ul li a:hover {
  color: var(--primary-color);
  transform: translateX(3px);
}
.footer-column ul li a:hover::before {
  width: 100%;
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}

/* Upgraded Footer Styles */
.footer-upgraded {
  background: transparent;
  padding: 6rem 0 4rem;
  position: relative;
  z-index: 2;
}

.footer-upgraded .container {
  max-width: 1800px;
  padding: 0 2rem;
}

.footer-floating-box {
  background: rgba(18, 18, 18, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(29, 184, 87, 0.2);
  border-radius: 24px;
  padding: 4rem 5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  overflow: hidden;
}

.footer-floating-box:hover {
  border-color: rgba(29, 184, 87, 0.4);
  box-shadow: 0 12px 48px rgba(29, 184, 87, 0.15);
}

.footer-main-content {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  width: 100%;
  overflow: hidden;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.footer-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  border: none;
}

.footer-brand h3 {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #2dd475 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  font-weight: 700;
}

.footer-brand-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3rem;
  width: 100%;
  overflow: hidden;
}

.footer-link-column {
  min-width: 0;
  overflow: hidden;
}

.footer-link-column h4 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  white-space: normal;
  word-wrap: break-word;
}

.footer-link-column h4 svg {
  flex-shrink: 0;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.footer-link-column:hover h4 svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(29, 184, 87, 0.5));
}

.footer-link-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link-column ul li {
  margin-bottom: 0.85rem;
}

.footer-link-column ul li a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.875rem;
  position: relative;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.footer-link-column ul li a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.footer-link-column ul li a:hover {
  color: var(--primary-color);
  transform: translateX(3px);
}

.footer-link-column ul li a:hover::before {
  width: 100%;
}

/* Custom Icons */
.gg-box {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 22px;
  height: 20px;
  border: 2px solid;
  border-radius: 3px;
}
.gg-box::after,
.gg-box::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  border-radius: 3px;
  height: 2px;
  background: currentColor;
}
.gg-box::before {
  left: 6px;
  width: 6px;
  top: 8px;
}
.gg-box::after {
  width: 22px;
  left: -2px;
  top: 4px;
}

.gg-folder {
  transform: scale(var(--ggs, 1));
}
.gg-folder,
.gg-folder::after {
  box-sizing: border-box;
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
  border: 2px solid;
  border-radius: 3px;
}
.gg-folder::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 4px;
  border-bottom: 0;
  border-top-left-radius: 2px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  top: -5px;
}

.gg-briefcase {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 22px;
  height: 16px;
  border: 2px solid;
  border-radius: 2px;
  margin-top: 1px;
}
.gg-briefcase::after,
.gg-briefcase::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
}
.gg-briefcase::before {
  border: 2px solid;
  border-top-left-radius: 1px;
  border-top-right-radius: 1px;
  left: 4px;
  width: 10px;
  height: 4px;
  border-bottom: 0;
  top: -5px;
}
.gg-briefcase::after {
  width: 18px;
  height: 3px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 1px solid transparent;
  box-shadow:
    0 2px 0,
    inset 16px 74px 0;
  top: 4px;
}

.gg-shield {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 14px;
  height: 4px;
  background: currentColor;
  border-radius: 100px;
  margin-top: -6px;
}
.gg-shield::after,
.gg-shield::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  border-radius: 3px;
  width: 8px;
  height: 16px;
  border: 2px solid;
}
.gg-shield::before {
  border-bottom-left-radius: 40px;
  border-right: 0;
  left: 0;
}
.gg-shield::after {
  border-bottom-right-radius: 40px;
  border-left: 0;
  right: 0;
}

.gg-user {
  display: block;
  transform: scale(var(--ggs, 1));
  box-sizing: border-box;
  width: 12px;
  height: 18px;
}
.gg-user::after,
.gg-user::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  border: 2px solid;
}
.gg-user::before {
  width: 8px;
  height: 8px;
  border-radius: 30px;
  top: 0;
  left: 2px;
}
.gg-user::after {
  width: 12px;
  height: 9px;
  border-bottom: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  top: 9px;
}

.gg-headset {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 18px;
  height: 18px;
  border-top-left-radius: 120px;
  border-top-right-radius: 120px;
  border: 2px solid;
  border-bottom: 0;
}
.gg-headset::after,
.gg-headset::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  border: 2px solid;
  width: 6px;
  height: 8px;
  top: 8px;
}
.gg-headset::before {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  left: -2px;
}
.gg-headset::after {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  left: 10px;
}

.gg-file-document {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 14px;
  height: 16px;
  border: 2px solid;
  border-radius: 1px;
}
.gg-file-document::after,
.gg-file-document::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  border-radius: 3px;
  width: 8px;
  height: 2px;
  background: currentColor;
  left: 1px;
}
.gg-file-document::before {
  top: 3px;
}
.gg-file-document::after {
  top: 7px;
  width: 6px;
}

.gg-community {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 18px;
  height: 18px;
}
.gg-community::after,
.gg-community::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
}
.gg-community::before {
  width: 8px;
  height: 8px;
  top: 0;
  left: 5px;
}
.gg-community::after {
  width: 18px;
  height: 10px;
  border-bottom: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  top: 8px;
  left: 0;
}

/* Discord Button */
.discord-button {
  font-family: inherit;
  font-size: 18px;
  background: linear-gradient(to bottom, #4f4dd9 0%, #2b60aa 100%);
  color: white;
  padding: 0.8em 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 25px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.116);
  transition: all 0.3s;
  text-decoration: none;
  width: fit-content;
  margin-top: 0.5rem;
}

.discord-button:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.144);
}

.discord-button:active {
  transform: scale(0.95);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.discord-button span {
  display: block;
  margin-left: 0.4em;
  transition: all 0.3s;
  font-weight: 600;
}

.discord-button svg {
  width: 23px;
  height: 23px;
  fill: white;
  transition: all 0.3s;
}

.discord-button .svg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0);
  margin-right: 0.5em;
  transition: all 0.3s;
}

.discord-button:hover .svg-wrapper {
  background-color: rgba(255, 255, 255, 0);
}

.discord-button:hover svg {
  transform: rotate(360deg);
}

@media (max-width: 1400px) {
  .footer-links-grid {
    gap: 1.5rem;
  }
  
  .footer-main-content {
    gap: 3.5rem;
  }
}

@media (max-width: 1200px) {
  .footer-main-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .footer-floating-box {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .footer-floating-box {
    padding: 2rem;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-brand-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-main-content {
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-floating-box {
    padding: 1.5rem;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-floating-box {
    padding: 1.25rem;
    border-radius: 16px;
  }
  
  .footer-link-column h4 {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  
  .footer-link-column ul li a {
    font-size: 0.8rem;
  }
  
  .footer-main-content {
    gap: 2rem;
  }
}

.servers-hero {
  padding: 140px 0 40px;
  text-align: left;
}
.servers-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #2dd475 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 0.8s ease, textShimmer 3s ease-in-out infinite;
}
.servers-subtitle {
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 1rem;
}
.servers-hero-meta {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.servers-search-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
#serversSearch {
  flex: 1 1 260px;
  min-width: 0;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: rgba(18, 18, 18, 0.6);
  color: var(--text-primary);
  transition: all 0.3s ease;
  outline: none;
}
#serversSearch:focus {
  border-color: var(--primary-color);
  background: rgba(18, 18, 18, 0.8);
  box-shadow: 0 0 15px rgba(29, 184, 87, 0.15);
}
#serversFilter {
  flex: 0 0 180px;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: rgba(18, 18, 18, 0.6);
  color: var(--text-primary);
  transition: all 0.3s ease;
  outline: none;
  cursor: pointer;
}
#serversFilter:focus {
  border-color: var(--primary-color);
}
.popular-tags {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.popular-tags-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.popular-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.popular-tag {
  padding: 0.4rem 1rem;
  background: rgba(33, 33, 33, 0.582);
  border: 1px solid rgba(92, 92, 92, 0.6);
  border-radius: 8px;
  color: #dbdee1;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: capitalize;
  font-weight: 500;
}
.popular-tag:hover {
  background: rgba(33, 33, 33, 0.719);
  border-color: rgba(92, 92, 92, 0.8);
  color: #ffffff;
  transform: translateY(-0.9px);
}
.popular-tag.active {
  background: rgba(27, 27, 27, 0.603);
  border-color: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(33, 33, 33, 0.5);
}
.servers-list-section {
  padding: 10px 0 80px;
}
.servers-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.server-card {
  position: relative;
  display: flex;
  background: var(--card-bg);
  border-radius: 14px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.server-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 20px rgba(29, 184, 87, 0.1);
  border-color: rgba(29, 184, 87, 0.3);
}
.server-card-accent {
  width: 6px;
  flex-shrink: 0;
}
.server-card-main {
  flex: 1;
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.server-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1rem;
}
.server-card-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.server-card-avatar img.server-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.server-card-placeholder {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
}
.server-card-header-text {
  flex: 1;
  min-width: 0;
}
.server-card-title {
  font-size: 1.3rem;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
  word-wrap: break-word;
}
.server-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.server-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.server-tag {
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  background: #2b2d31;
  border: 1px solid #3f4147;
  color: #dbdee1;
  white-space: nowrap;
  line-height: 1;
  font-weight: 500;
  transition: all 0.2s ease;
}
.server-tag-premium {
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.5);
  color: #ffd700;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.15);
}
.server-tag-bump {
  background: rgba(36, 128, 70, 0.2);
  border-color: rgba(36, 128, 70, 0.6);
  color: #3ba55d;
}
.server-tag-trending {
  background: rgba(237, 66, 69, 0.2);
  border-color: rgba(237, 66, 69, 0.6);
  color: #ed4245;
}
.server-tag-custom {
  background: #1f1f1f5d;
  border: 1.5px solid;
}
.server-tag:hover {
  background: #35373c;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.server-join-btn {
  white-space: nowrap;
  padding: 0.6rem 1.25rem;
}
.server-card-description-wrapper {
  margin-bottom: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.server-card-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  background: #1616169f;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}
.server-card-description strong {
  color: var(--text-primary);
  font-weight: 700;
}
.server-card-description em {
  font-style: italic;
}
.server-card-description u {
  text-decoration: underline;
}
.server-card-description del {
  text-decoration: line-through;
  opacity: 0.7;
}
.server-card-description .spoiler {
  background: #202225;
  color: transparent;
  border-radius: 3px;
  padding: 0 2px;
  cursor: pointer;
  transition: all 0.1s;
}
.server-card-description .spoiler:hover {
  background: #2f3136;
  color: var(--text-primary);
}
.server-card-description .inline-code {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  border-radius: 3px;
  padding: 2px 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.85em;
  color: #eb459e;
}
.server-card-description .code-block {
  display: block;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 0.5rem;
  margin: 0.5rem 0;
  font-family: 'Courier New', monospace;
  font-size: 0.85em;
  overflow-x: auto;
  white-space: pre;
  color: var(--text-primary);
}
.read-more-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0;
  text-decoration: none;
  font-weight: 500;
}
.read-more-btn:hover {
  color: var(--primary-hover);
  text-decoration: none;
}
.server-card-footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.75rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid var(--border-color);
  position: relative;
}
.server-card-bump-section {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.server-card-tags-divider {
  width: 100%;
  height: 1px;
  background: var(--border-color);
  margin: 0.25rem 0;
}
.server-card-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.75rem 0;
}
.server-meta-label {
  font-weight: 500;
}
.server-meta-id {
  opacity: 0.7;
  font-size: 0.8rem;
}
.servers-empty,
.servers-loading,
.servers-error {
  margin-top: 2rem;
  text-align: center;
  color: var(--text-secondary);
  grid-column: 1 / -1;
}
.servers-empty h2 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.servers-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 2rem 0;
}

.pagination-btn {
  padding: 0.7rem 1.5rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}

.pagination-btn:hover:not(:disabled) {
  background: #1aa74f;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-info {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
  min-width: 150px;
  text-align: center;
}

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

@media (max-width: 1024px) {
  .servers-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .server-card-avatar {
    width: 56px;
    height: 56px;
  }
  .server-card-placeholder {
    font-size: 1.5rem;
  }
  .server-card-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  #cursorCanvas {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.2rem;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s;
  }
  .nav-links.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  .stat-item {
    opacity: 1 ;
    transform: translateY(0) ;
    animation: none ;
  }
  .showcase-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .showcase-image {
    order: -1;
  }
  .showcase-image img {
    transform: none;
  }
  .showcase-image img:hover {
    transform: scale(1.02);
  }
  .showcase-reverse .showcase-content {
    grid-template-columns: 1fr;
  }
  .showcase-reverse .showcase-text {
    order: 1;
  }
  .showcase-reverse .showcase-image {
    order: 2;
  }
  .showcase-reverse .showcase-image img {
    transform: none;
  }
  .showcase-reverse .showcase-image img:hover {
    transform: scale(1.02);
  }
  .section-title {
    font-size: 2rem;
  }
  .commands-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .servers-hero {
    padding-top: 120px;
  }
  .servers-list {
    grid-template-columns: 1fr;
  }
  .server-card-header {
    flex-wrap: wrap;
  }
  .server-join-btn {
    width: 100%;
    margin-top: 0.5rem;
  }
  .server-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .popular-tags {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .servers-pagination {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .pagination-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }
  .pagination-info {
    min-width: 100%;
    order: 3;
  }
}

.server-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}
.server-modal-card {
  position: relative;
  display: flex;
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.server-modal-accent {
  width: 8px;
  flex-shrink: 0;
  border-radius: 16px 0 0 16px;
}
.server-modal-main {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.server-modal-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.server-modal-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--border-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.server-modal-avatar img.server-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.server-modal-placeholder {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}
.server-modal-header-text {
  flex: 1;
  min-width: 0;
}
.server-modal-title {
  font-size: 1.8rem;
  margin: 0;
  line-height: 1.3;
  word-wrap: break-word;
}
.server-modal-description-wrapper {
  margin-bottom: 1.5rem;
  flex: 1;
}
.server-modal-description-wrapper h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}
.server-modal-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}
.server-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.server-modal-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.server-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-color);
}
.server-modal-header h2 {
  font-size: 1.5rem;
  margin: 0;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  z-index: 10;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}
.server-modal-content {
  padding: 2rem;
}
.server-modal-banner {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}
.server-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.server-modal-description {
  margin-bottom: 2rem;
}
.server-description-formatted {
  background: #1616169f;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem;
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.6;
  white-space: pre-wrap;
  word-wrap: break-word;
  margin: 0;
}
.server-description-formatted strong {
  color: var(--text-primary);
  font-weight: 700;
}
.server-description-formatted em {
  font-style: italic;
}
.server-description-formatted u {
  text-decoration: underline;
}
.server-description-formatted del {
  text-decoration: line-through;
  opacity: 0.7;
}
.server-description-formatted .spoiler {
  background: #202225;
  color: transparent;
  border-radius: 3px;
  padding: 0 2px;
  cursor: pointer;
  transition: all 0.1s;
}
.server-description-formatted .spoiler:hover {
  background: #2f3136;
  color: var(--text-primary);
}
.server-description-formatted .inline-code {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  border-radius: 3px;
  padding: 2px 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.85em;
  color: #eb459e;
}
.server-description-formatted .code-block {
  display: block;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 0.5rem;
  margin: 0.5rem 0;
  font-family: 'Courier New', monospace;
  font-size: 0.85em;
  overflow-x: auto;
  white-space: pre;
  color: var(--text-primary);
}
.server-modal-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}
.server-modal-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.server-modal-stats .stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}
.server-modal-stats .stat-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}
.server-modal-stats .stat-value.stat-loaded {
  color: var(--text-primary);
  animation: statFadeIn 0.5s ease forwards;
}
@keyframes statFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .server-modal-card {
    margin: 10px;
    max-height: calc(100vh - 20px);
    flex-direction: column;
  }
  .server-modal-accent {
    width: 100%;
    height: 8px;
    border-radius: 16px 16px 0 0;
  }
  .server-modal-main {
    padding: 1.5rem;
  }
  .server-modal-header {
    flex-wrap: wrap;
  }
  .server-modal-avatar {
    width: 64px;
    height: 64px;
  }
  .server-modal-placeholder {
    font-size: 1.5rem;
  }
  .server-modal-title {
    font-size: 1.5rem;
  }
}

.promo-scroll-section {
  padding: 40px 0;
  background: linear-gradient(90deg, 
    rgba(29, 184, 87, 0.05) 0%,
    rgba(29, 184, 87, 0.1) 50%,
    rgba(29, 184, 87, 0.05) 100%
  );
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(29, 184, 87, 0.1);
  border-bottom: 1px solid rgba(29, 184, 87, 0.1);
}
.promo-scroll-wrapper {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}
.promo-scroll-track {
  display: flex;
  gap: 80px;
  animation: scrollPromo 30s linear infinite;
  width: max-content;
}
.promo-text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.promo-text:hover {
  opacity: 1;
}
@keyframes scrollPromo {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .promo-scroll-section {
    padding: 30px 0;
  }
  .promo-text {
    font-size: 1.5rem;
  }
  .promo-scroll-track {
    gap: 50px;
  }
}

.servers-scroll-section {
  padding: 180px 0 100px 0;
  position: relative;
  z-index: 2;
}
.servers-scroll-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.servers-scroll-section .section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}
.servers-scroll-wrapper {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
  padding: 20px 0;
}
.servers-scroll-track {
  display: flex;
  gap: 30px;
  animation: scrollServers 60s linear infinite;
  width: max-content;
}
.server-scroll-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 15px 20px;
  min-width: 280px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.server-scroll-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(29, 184, 87, 0.2);
  border-color: var(--primary-color);
}
.server-scroll-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border-color);
}
.server-scroll-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.server-scroll-info {
  flex: 1;
  min-width: 0;
}
.server-scroll-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.server-premium-badge {
  background: linear-gradient(135deg, #fad71067, #fae31967);
  color: #f8ea2c;
  padding: 3px 8px;
  border-radius: 6px;
  border: #f8eb2cb9;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@keyframes scrollServers {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .server-scroll-card {
    min-width: 240px;
    padding: 12px 16px;
  }
  .server-scroll-icon,
  .server-scroll-placeholder {
    width: 40px;
    height: 40px;
  }
  .server-scroll-name {
    font-size: 0.9rem;
  }
}

.reviews-section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, transparent 0%, rgba(29, 184, 87, 0.02) 50%, transparent 100%);
}
.reviews-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.reviews-section .section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.review-card:hover::before {
  transform: scaleX(1);
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(29, 184, 87, 0.15);
  border-color: rgba(29, 184, 87, 0.3);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}
.review-user-info {
  flex: 1;
  min-width: 0;
}
.review-username {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.review-date {
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.review-stars {
  font-size: 1.3rem;
  color: #1db857;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 0.5rem;
}
.review-text {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
  text-align: left;
  font-style: normal;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
}
.review-loading {
  color: var(--text-secondary);
  text-align: center;
  padding: 2rem;
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.comparison-section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
.comparison-section .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.comparison-section .section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}
.comparison-table-wrapper {
  overflow-x: auto;
  margin: 2rem auto;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  max-width: 900px;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
}
.comparison-table thead {
  background: rgba(29, 184, 87, 0.05);
  border-bottom: 2px solid var(--primary-color);
}
.comparison-table th {
  padding: 1rem 1.5rem;
  text-align: center;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}
.comparison-table .feature-col {
  text-align: left;
  min-width: 180px;
}
.comparison-table .promy-col {
  background: rgba(29, 184, 87, 0.08);
  min-width: 120px;
}
.comparison-table .others-col {
  min-width: 120px;
}
.promy-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.table-logo {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.comparison-table tbody tr {
  border-bottom: 1px solid var(--border-color);
  transition: background 0.2s ease;
}
.comparison-table tbody tr:hover {
  background: rgba(29, 184, 87, 0.03);
}
.comparison-table td {
  padding: 0.9rem 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}
.comparison-table .feature-name {
  text-align: left;
  color: var(--text-primary);
  font-weight: 500;
}
.comparison-table .promy-value {
  background: rgba(29, 184, 87, 0.05);
  font-weight: 600;
}
.comparison-table .check {
  font-size: 1.3rem;
  font-weight: 700;
}
.comparison-table .cross {
  font-size: 1.3rem;
  font-weight: 700;
}
.comparison-table .limited {
  color: #f59e0b;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}
.comparison-cta {
  text-align: center;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .comparison-table th,
  .comparison-table td {
    padding: 1rem;
    font-size: 0.9rem;
  }
  .comparison-table .feature-col {
    min-width: 150px;
  }
  .comparison-table .promy-col,
  .comparison-table .others-col {
    min-width: 100px;
  }
  .table-logo {
    width: 20px;
    height: 20px;
  }
  .promy-header {
    flex-direction: column;
    gap: 5px;
  }
}