/*
Theme Name: NimSushi
Theme URI: https://sushicafe.com
Author: NSK
Author URI: https://sushicafe.com
Description: A dark neon anime card game website theme for Discord and WhatsApp bots. Features animated hero, card showcase, leaderboard, membership plans, and full auth pages.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sushicafe
Tags: dark, anime, gaming, card-game, discord, neon, one-column, custom-menu, custom-logo, featured-images, full-width-template, theme-options
*/

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

/* ==================== CSS VARIABLES ==================== */
:root {
  --bg-primary: #050810;
  --bg-secondary: #0a0f1e;
  --bg-card: #0d1428;
  --bg-glass: rgba(13, 20, 40, 0.85);
  --accent-gold: #f5c518;
  --accent-cyan: #00d4ff;
  --accent-purple: #8b5cf6;
  --accent-pink: #ff2d78;
  --accent-green: #00ff88;
  --text-primary: #e8eaf6;
  --text-secondary: #8892b0;
  --text-muted: #4a5568;
  --border-glow: rgba(0, 212, 255, 0.3);
  --border-gold: rgba(245, 197, 24, 0.4);
  --shadow-neon: 0 0 20px rgba(0, 212, 255, 0.4), 0 0 60px rgba(0, 212, 255, 0.1);
  --shadow-gold: 0 0 20px rgba(245, 197, 24, 0.4), 0 0 60px rgba(245, 197, 24, 0.1);
  --shadow-purple: 0 0 20px rgba(139, 92, 246, 0.4), 0 0 60px rgba(139, 92, 246, 0.1);
  --font-display: 'Montserrat', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --nav-height: 70px;
  --radius: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== RESET & BASE ==================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(255, 45, 120, 0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 60%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 10%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 45%, rgba(0, 212, 255, 0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 65% 85%, rgba(139, 92, 246, 0.3) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-cyan);
  transition: var(--transition);
}

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

/* WordPress admin bar fix */
.admin-bar .navbar {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .navbar {
    top: 46px;
  }
}

/* ==================== NAVIGATION ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(5, 8, 16, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 0 2rem;
  z-index: 9999;
  transition: var(--transition);
  justify-content: space-between;
  /* logo/nav on left, auth on right */
}

.nav-right-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

.nav-auth-btn-wrap {
  flex-shrink: 0;
}

.navbar.scrolled {
  border-bottom-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-neon);
}

.nav-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-primary);
  line-height: 1.1;
}

.nav-logo .logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: var(--accent-cyan);
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
}

/* WordPress nav menu */
.main-navigation {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation ul li a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  color: var(--text-secondary);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: none;
  /* No longer all caps */
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}

.main-navigation ul li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-cyan);
  transition: var(--transition);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--accent-cyan);
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item>a,
.main-navigation ul li.current_page_item>a {
  color: var(--text-primary);
}

.main-navigation ul li a:hover::after,
.main-navigation ul li.current-menu-item>a::after,
.main-navigation ul li.current_page_item>a::after {
  width: 60%;
}

.main-navigation ul li.current-menu-item>a,
.main-navigation ul li.current_page_item>a {
  color: var(--accent-cyan);
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.mobile-auth-actions {
  display: none;
}

/* Single Login/Register button */
.nav-auth-btn-wrap {
  margin-left: 0.5rem;
  flex-shrink: 0;
}

.btn-auth-single {
  display: inline-flex;
  align-items: center;
  padding: 9px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid #ffffff;
  /* White stroke */
  color: #fff;
  transition: var(--transition);
}

.btn-auth-single:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
  transform: translateY(-1px);
}

/* Mobile hamburger — 3 red dots in a circle */
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.15);
  border: 2px solid rgba(220, 38, 38, 0.5);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: row;
  padding: 0;
  transition: var(--transition);
  flex-shrink: 0;
}

.hamburger:hover {
  background: rgba(220, 38, 38, 0.3);
  border-color: #dc2626;
}

.hamburger .dot {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ef4444;
  transition: var(--transition);
  flex-shrink: 0;
}

.hamburger.open {
  background: rgba(220, 38, 38, 0.4);
}

.hamburger.open .dot:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: none;
  /* No longer all caps */
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  line-height: 1;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::before {
  opacity: 1;
}

.btn:hover {
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
  color: #fff;
}

.btn-primary {
  background: linear-gradient(135deg, #dc2626, #9b1c1c);
  color: #fff;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6);
  color: #fff;
}

.btn-gold {
  background: linear-gradient(135deg, #f5c518, #e6a800);
  color: #000;
  font-weight: 900;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 197, 24, 0.6);
  color: #000;
}

.btn-danger {
  background: linear-gradient(135deg, #ff2d78, #c4006b);
  color: #fff;
}

.btn-discord {
  width: 100%;
  background: #5865F2;
  color: #fff;
  justify-content: center;
  padding: 12px;
  font-size: 0.9rem;
}

.btn-discord:hover {
  background: #4752c4;
  transform: translateY(-1px);
  color: #fff;
}

.btn-block {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 0.95rem;
}

.btn-join {
  background: #2a2a2a;
  /* Darker grey */
  color: #fff !important;
  font-weight: 800;
  padding: 14px 36px;
  border-radius: 50px;
  border: 1.5px solid #ffffff;
  /* White stroke */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-join:hover {
  background: #ffffff;
  color: #000000 !important;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

/* Removed WhatsApp SVG margin */

/* ==================== PAGE LAYOUT ==================== */
.site {
  position: relative;
  z-index: 1;
}

.site-content {
  padding-top: var(--nav-height);
  min-height: 100vh;
}

/* ==================== HERO ==================== */
.hero {
  min-height: calc(100vh - var(--nav-height));
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(5, 8, 16, 0.75), rgba(5, 8, 16, 0.75)),
    url('wp-content/assets/header/background.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 4rem 6vw;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5), 0 15px 40px rgba(0, 0, 0, 0.4);
  /* Inner & Outer shadow */
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  z-index: 1;
  animation: fadeInUp 0.9s ease both;
}

/* Removed split hero elements */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 8px var(--accent-green);
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  color: #ffffff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 480px;
  margin: 1.2rem 0 2rem;
  font-weight: 400;
  text-shadow: 0 0 18px rgba(180, 40, 40, 0.55);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Sticked equally for PC */
  gap: 1.5rem;
  margin-top: 4rem;
  animation: fadeInUp 0.9s ease 0.4s both;
  width: 100%;
}

.stat-item {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-4px);
  background: rgba(22, 30, 54, 0.8);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.1);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-cyan);
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ==================== SECTION DIVIDER ==================== */
.section-divider {
  height: 1px;
  margin: 0 auto;
  width: 80%;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.12) 30%, rgba(255, 255, 255, 0.12) 70%, transparent 100%);
}

/* ==================== SECTION COMMONS ==================== */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  text-transform: capitalize;
}

.section-desc {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
  font-size: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  /* More space for a clean look */
}

/* ==================== CARD SHOWCASE (marquee) ==================== */
.cards-showcase {
  padding: 5rem 0;
  overflow: hidden;
}

.cards-showcase .section-header {
  padding: 0 2rem;
}

/* Collection marquee */
.collection-marquee-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}

.collection-marquee-wrap::before,
.collection-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 220px;
  /* Wider fade */
  z-index: 2;
  pointer-events: none;
}

.collection-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary) 0%, transparent 100%);
}

.collection-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary) 0%, transparent 100%);
}

.collection-marquee {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 2rem 0;
  /* Prevents clipping on hover */
  animation: marquee-rtl 35s linear infinite;
}

.collection-marquee:hover {
  animation-play-state: paused;
}

.anime-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  width: 200px;
  flex-shrink: 0;
}

.anime-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: inherit;
}

.anime-card:hover {
  transform: translateY(-6px);
  background: rgba(22, 30, 54, 0.8);
  /* Slightly lighter version of var(--bg-card) */
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.card-rarity {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 3px 8px;
  border-radius: 100px;
  text-transform: uppercase;
}

.rarity-legendary {
  background: rgba(245, 197, 24, 0.2);
  color: var(--accent-gold);
  border: 1px solid rgba(245, 197, 24, 0.4);
}

.rarity-epic {
  background: rgba(139, 92, 246, 0.2);
  color: var(--accent-purple);
  border: 1px solid rgba(139, 92, 246, 0.4);
}

.rarity-rare {
  background: rgba(0, 212, 255, 0.15);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.rarity-common {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-emoji {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.card-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.card-series {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.card-power {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-gold);
}

/* ==================== STATS SECTION ==================== */
.stats-section {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* ==================== FEATURES ==================== */
.features {
  padding: 5rem 0;
  background: rgba(13, 20, 40, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  justify-items: center;
  max-width: 1000px;
  margin: 3rem auto 0;
}

/* Features no longer using marquee */
.features-marquee-wrap,
.features-marquee {
  display: none;
}

@keyframes marquee-rtl {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  width: 100%;
  /* Fill grid column */
  max-width: 320px;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-4px);
  background: rgba(22, 30, 54, 0.8);
  /* Slightly lighter */
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.icon-cyan {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.icon-purple {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.icon-gold {
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.2);
}

.icon-pink {
  background: rgba(255, 45, 120, 0.1);
  border: 1px solid rgba(255, 45, 120, 0.2);
}

.icon-green {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.2);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==================== COMMUNITY SECTION ==================== */
.community-cta {
  padding: 6rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.community-card {
  background: #2a2a2a;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem 2rem;
  width: 100%;
  max-width: 400px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.hide-desktop {
  display: none !important;
}

.community-card * {
  color: #ffffff;
  transition: all 0.4s ease;
}

.community-avatar-wrap {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.community-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-wa-logo {
  margin-bottom: 0.5rem;
}

.community-wa-label {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.community-desc {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.community-btn {
  background: var(--accent-cyan);
  color: #000;
  width: 100%;
  justify-content: center;
  font-weight: 800;
}

.community-card:hover {
  background: #ffffff;
}

.community-card:hover * {
  color: #000000 !important;
}

.community-card:hover .community-avatar-wrap {
  border-color: #000;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.community-card:hover .community-wa-logo svg {
  fill: #000 !important;
}

.community-card:hover .community-btn {
  background: #000;
  color: #fff !important;
}

/* ==================== LEADERBOARD ==================== */
.leaderboard-page {
  padding: 3rem 2rem 5rem;
  max-width: 900px;
  margin: 0 auto;
}

.leaderboard-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.leaderboard-tabs {
  display: flex;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 6px;
  margin: 2rem auto;
  max-width: 400px;
}

.tab-btn {
  flex: 1;
  padding: 10px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 7px;
  transition: var(--transition);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  color: #fff;
}

.leaderboard-table {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
}

.lb-row {
  display: grid;
  grid-template-columns: 60px 1fr auto auto auto;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
  gap: 1rem;
}

.lb-row:last-child {
  border-bottom: none;
}

.lb-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.lb-row.header {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.2);
  cursor: default;
}

.lb-row.header:hover {
  background: rgba(0, 0, 0, 0.2);
}

.lb-row.top1 {
  background: rgba(245, 197, 24, 0.06);
  border-left: 3px solid var(--accent-gold);
}

.lb-row.top2 {
  background: rgba(192, 192, 192, 0.04);
  border-left: 3px solid #c0c0c0;
}

.lb-row.top3 {
  background: rgba(205, 127, 50, 0.04);
  border-left: 3px solid #cd7f32;
}

.lb-rank {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
}

.rank-1 {
  color: var(--accent-gold);
  text-shadow: 0 0 12px rgba(245, 197, 24, 0.6);
}

.rank-2 {
  color: #c0c0c0;
}

.rank-3 {
  color: #cd7f32;
}

.lb-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lb-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.lb-username {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.lb-title-tag {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.lb-cards {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-cyan);
  text-align: center;
}

.lb-wins {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-green);
  text-align: center;
}

.lb-score {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--accent-gold);
  text-align: right;
}

/* ==================== ABOUT ==================== */
.about-page {
  padding: 3rem 2rem 5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-text h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.about-text h1 span {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about-visual {
  background: var(--bg-card);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(139, 92, 246, 0.1), transparent, transparent);
  border-radius: inherit;
  z-index: 0;
}

.bot-display {
  position: relative;
  z-index: 1;
  font-size: 5rem;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.bot-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: 3px;
}

.bot-status {
  font-size: 0.8rem;
  color: var(--accent-green);
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin-top: 0.5rem;
}

.about-commands {
  margin-top: 5rem;
}

.commands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.cmd-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 1.25rem;
  transition: var(--transition);
}

.cmd-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateX(4px);
}

.cmd-tag {
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.cmd-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ==================== MEMBERSHIP ==================== */
.membership-page {
  padding: 3rem 2rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.plan-card:hover {
  transform: translateY(-6px);
}

.plan-card.popular {
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.1);
}

.plan-card.elite {
  border-color: rgba(245, 197, 24, 0.4);
  box-shadow: 0 0 40px rgba(245, 197, 24, 0.1);
}

.popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.elite-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #f5c518, #e6a800);
  color: #000;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.plan-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.plan-name.free {
  color: var(--text-secondary);
}

.plan-name.pro {
  color: var(--accent-cyan);
}

.plan-name.elite {
  color: var(--accent-gold);
}

.plan-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  margin: 1rem 0 0.25rem;
}

.plan-price sup {
  font-size: 1.2rem;
  vertical-align: super;
}

.plan-period {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.plan-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 1.5rem 0;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 0;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.plan-features .check {
  color: var(--accent-green);
  font-size: 1rem;
}

.plan-features .cross {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ==================== AUTH FORMS ==================== */
.auth-page {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-container {
  width: 100%;
  max-width: 460px;
}

.auth-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

/* Removed .auth-card::before top gradient line */

.auth-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-logo span {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.auth-logo h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text-primary);
}

.auth-logo p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.form-check input {
  margin-top: 2px;
  accent-color: var(--accent-cyan);
  cursor: pointer;
}

.form-check a {
  color: var(--accent-cyan);
  text-decoration: none;
}

.form-check a:hover {
  text-decoration: underline;
}

.form-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.form-divider span {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.auth-footer a {
  color: var(--accent-cyan);
  text-decoration: none;
  font-weight: 700;
}

.auth-footer a:hover {
  text-decoration: underline;
}

/* ==================== TERMS ==================== */
.terms-page {
  padding: 3rem 2rem 5rem;
  max-width: 780px;
  margin: 0 auto;
}

.terms-page h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.terms-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
}

.terms-section {
  margin-bottom: 2.5rem;
}

.terms-section h2 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-cyan);
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--accent-cyan);
}

.terms-section p,
.terms-section li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.terms-section ul {
  list-style: none;
  padding: 0;
}

.terms-section ul li::before {
  content: '▸ ';
  color: var(--accent-cyan);
}

/* ==================== FOOTER ==================== */
.site-footer {
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
}

.footer-col ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-col ul a:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
  color: var(--accent-cyan);
}

/* ==================== ALERTS ==================== */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.alert-error {
  background: rgba(255, 45, 120, 0.1);
  border: 1px solid rgba(255, 45, 120, 0.3);
  color: #ff6b9d;
}

.alert-success {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: var(--accent-green);
}

/* WordPress core classes */
.alignleft {
  float: left;
  margin-right: 1.5rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site {
  animation: fadeInUp 0.5s ease;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--accent-cyan);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ==================== UTILITIES ==================== */
.text-cyan {
  color: var(--accent-cyan);
}

.text-gold {
  color: var(--accent-gold);
}

.text-purple {
  color: var(--accent-purple);
}

.text-pink {
  color: var(--accent-pink);
}

.text-green {
  color: var(--accent-green);
}

.text-muted {
  color: var(--text-muted);
}

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

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.hidden {
  display: none !important;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .navbar {
    padding: 0 1rem;
  }

  .main-navigation {
    display: none;
  }

  .hamburger {
    display: flex !important;
    position: absolute !important;
    left: 1.5rem !important;
  }

  .nav-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .nav-auth-btn-wrap {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .navbar {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    /* No header bg or blur */
    border-bottom: none !important;
    box-shadow: none !important;
  }

  .site-content {
    padding-top: 0 !important;
  }

  /* No logo in mobile */
  .nav-logo {
    display: none !important;
  }

  /* Hamburger repositioned to left */
  .hamburger {
    left: 1rem !important;
    z-index: 10001;
  }

  /* Mobile Navigation Drawer from LEFT */
  .main-navigation {
    display: flex !important;
    position: fixed;
    top: 0;
    left: -100% !important;
    /* Menu from left as requested */
    right: auto !important;
    width: 100%;
    max-width: 100%;
    height: 100dvh;
    background: rgba(5, 8, 16, 1);
    flex-direction: column;
    padding: 6rem 2rem;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 9999;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-navigation.open {
    left: 0 !important;
    right: auto !important;
  }

  .main-navigation ul {
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 2rem;
  }

  .main-navigation ul li a {
    font-size: 1.1rem;
    color: #fff;
    padding: 10px 0;
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  /* Login/Register inside Menu */
  .mobile-menu-auth {
    display: flex !important;
    width: 100%;
    margin-top: auto;
    padding-bottom: 2rem;
  }

  .hide-desktop {
    display: flex !important;
  }

  .btn-auth-mobile {
    width: 100%;
    justify-content: center;
    background: #fff;
    color: #000 !important;
    font-weight: 800;
    padding: 14px;
    border-radius: var(--radius);
    text-align: center;
    text-decoration: none;
  }

  /* Hero Section - Brighter Background */
  .hero {
    background: linear-gradient(rgba(5, 8, 16, 0.7), rgba(5, 8, 16, 0.7)), url('wp-content/assets/header/mobile_background.jpg') center/cover no-repeat !important;
    color: #ffffff !important;
    text-align: center;
    padding: 10rem 1.5rem 4rem;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-left {
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .hero-title {
    color: #ffffff !important;
    font-size: 2.4rem !important;
    margin-bottom: 1.5rem !important;
    text-shadow: none !important;
  }

  .hero-subtitle {
    color: #cccccc !important;
    margin: 0 auto 2.5rem !important;
    font-size: 1rem !important;
    text-shadow: none !important;
    line-height: 1.5;
  }

  .hero-actions {
    justify-content: center !important;
    width: 100% !important;
  }

  .btn-join {
    width: auto !important;
    max-width: none !important;
    padding: 14px 28px !important;
    background: #ef4444 !important;
    /* Lighter red */
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
    /* White stroke */
    margin: 0 auto;
    transition: all 0.3s ease !important;
  }

  .btn-join:hover {
    background: #ffffff !important;
    color: #000000 !important;
  }

  /* Restore Stats Colors for Mobile */
  .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
    margin-top: 3rem !important;
  }

  .stat-item {
    background: var(--bg-card) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    color: var(--text-primary) !important;
  }

  .stat-value {
    color: var(--accent-cyan) !important;
  }

  /* Features Section */
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 0 1rem !important;
  }

  /* Community Section adjustments */
  .community-card {
    padding: 2.5rem 1.5rem !important;
  }

  .community-wa-label {
    font-size: 1rem !important;
  }

  /* Footer adjustments */
  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem !important;
  }

  .hero-stats {
    grid-template-columns: 1fr !important;
  }
}