:root {
  /* LUXURY DESERT HERITAGE COLOR PALETTE - BURGUNDY & GOLD THEME */
  --emerald-dark: #003366; /* Dark Burgundy */
  --emerald: #004080; /* Rich Burgundy */
  --emerald-light: #C5A059; /* Luxury Gold accent */
  --gold-dark: #b8860b; 
  --gold: #D4AF37; /* Luxury Gold */
  --gold-light: #e6c863;
  --gold-glow: rgba(212, 175, 55, 0.15);
  --charcoal-dark: #12090b; /* Balanced Black */
  --charcoal-light: #111827; /* Warm dark gray / black burgundy */
  --silk: #ffffff; /* Sandy Beige */
  --silk-warm: #ffffff; /* Sandy Beige warm variant */
  --text-muted: #6b7280;
  --font-logo: 'Noto Kufi Arabic', 'Cairo', sans-serif;
  --font-display: 'Aref Ruqaa', 'Amiri', serif;
  --font-body: 'Noto Naskh Arabic', 'Amiri', serif;
  --transition: all 0.3s ease-in-out;
  --shadow-sm: 0 4px 15px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 30px rgba(0,51,102,0.08);
  --shadow-lg: 0 15px 40px rgba(0,0,0,0.15);
  --border-radius: 12px;
}

/* =========================================
   1. BASE & RESET
   ========================================= */
*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  background-color: var(--silk);
  background-image: url("data:image/svg+xml,%3Csvg width='220' height='220' viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='50%25' y='50%25' font-size='16' fill='%23C5A059' fill-opacity='0.025' font-family='Aref Ruqaa' text-anchor='middle' transform='rotate(-28 110 110)'%3E%D9%81%D8%B1%D8%B3%D8%A7%D9%86%20%D8%A7%D9%84%D8%B4%D8%B9%D8%B1%20%D8%A7%D9%84%D8%AE%D9%84%D9%8A%D8%AC%D9%8A%3C/text%3E%3C/svg%3E");
  color: #12090b;
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.85;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: normal; }
a { color: var(--emerald-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; }
.section-padding { padding: 80px 0; }
.text-gold { color: var(--gold) !important; }

/* =========================================
   2. HERO SECTION
   ========================================= */
.hero-section {
  position: relative;
  background-color: #005b96; /* Solid Blue */
  padding: 0;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.hero-pattern-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(212,175,55,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212,175,55,0.1) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0 L52 28 L80 40 L52 52 L40 80 L28 52 L0 40 L28 28 Z M40 10 L49 31 L70 40 L49 49 L40 70 L31 49 L10 40 L31 31 Z' fill='none' stroke='%23d4af37' stroke-opacity='0.08' stroke-width='0.8'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.hero-top-bar {
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  padding: 8px 0;
  font-size: 0.85rem;
  color: rgba(212,175,55,0.8);
  font-family: var(--font-body);
  position: relative;
  z-index: 10;
}
.hero-navbar {
  background: transparent;
  border-bottom: 1px solid rgba(212,175,55,0.15);
  padding: 15px 0;
  position: relative;
  z-index: 10;
  transition: background 0.4s;
}
.hero-navbar.scrolled {
  background: rgba(26, 21, 18, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 5;
  padding: 60px 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--gold);
  text-shadow: 0 0 40px rgba(212,175,55,0.4), 2px 2px 8px rgba(0,0,0,0.5);
  margin-bottom: 10px;
  animation: fadeInDown 0.8s ease-out;
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(250,248,245,0.85);
  max-width: 750px;
  margin: 0 auto 40px;
  line-height: 1.9;
  animation: fadeInUp 0.9s ease-out 0.2s both;
}
.hero-stats-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(212,175,55,0.2);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  position: relative;
  z-index: 5;
}
.hero-stat-item {
  flex: 1;
  min-width: 150px;
  padding: 25px 20px;
  text-align: center;
  border-left: 1px solid rgba(212,175,55,0.15);
  transition: background 0.3s;
}
.hero-stat-item:last-child { border-left: none; }
.hero-stat-item:hover { background: rgba(212,175,55,0.08); }
.hero-stat-num {
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 5px;
  display: block;
}

/* =========================================
   3. NAVIGATION
   ========================================= */
.forsan-navbar {
  background-color: var(--charcoal-dark);
  border-bottom: 3px double var(--gold);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='30' viewBox='0 0 120 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 15 Q30 0 60 15 T120 15 M0 15 Q30 30 60 15 T120 15' fill='none' stroke='%23d4af37' stroke-opacity='0.05' stroke-width='0.6'/%3E%3C/svg%3E");
  position: relative;
}
.forsan-navbar::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 4px;
  background-image: linear-gradient(45deg, var(--gold) 25%, transparent 25%), linear-gradient(-45deg, var(--gold) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, var(--gold) 75%), linear-gradient(-45deg, transparent 75%, var(--gold) 75%);
  background-size: 8px 8px;
  opacity: 0.6;
}
.forsan-navbar .navbar-brand span {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}
.forsan-navbar .nav-link {
  color: var(--silk) !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 14px !important;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}
.forsan-navbar .nav-link:hover,
.forsan-navbar .nav-link.active { color: var(--gold) !important; }
.forsan-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background-color: var(--gold);
  transition: var(--transition);
}
.forsan-navbar .nav-link:hover::after,
.forsan-navbar .nav-link.active::after { width: 80%; }
.search-input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(212,175,55,0.4);
  color: #fff;
  border-radius: 30px;
  padding: 8px 20px;
  width: 200px;
  transition: width 0.4s, background 0.3s;
}
.search-input:focus {
  width: 280px;
  background: rgba(255,255,255,0.12) !important;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.3);
  color: #fff !important;
  outline: none;
}
.search-input::placeholder { color: rgba(255,255,255,0.55); }
.search-results-dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0; right: 0;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(212,175,55,0.3);
  z-index: 9999;
  max-height: 400px;
  overflow-y: auto;
  display: none;
  box-shadow: var(--shadow-lg);
}
.search-item {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--charcoal-dark);
  transition: background 0.2s;
}
.search-item:hover { background: var(--silk-warm); color: var(--emerald-dark); }
.search-item:last-child { border-bottom: none; }

/* =========================================
   4. BUTTONS
   ========================================= */
.btn-gold {
  background: var(--emerald) !important;
  color: var(--gold) !important;
  border: 2px solid var(--gold) !important;
  font-family: var(--font-body);
  font-weight: 700;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.btn-gold:hover {
  background: var(--emerald-dark) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,51,102,0.45);
}
.btn-outline-gold {
  background: var(--silk) !important;
  color: var(--emerald) !important;
  border: 2px solid var(--gold) !important;
  font-family: var(--font-body);
  font-weight: 700;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.btn-outline-gold:hover {
  background: var(--emerald) !important;
  color: var(--gold) !important;
}
.btn-emerald {
  background: var(--emerald-dark);
  color: #fff !important;
  border: 1px solid var(--emerald);
  transition: var(--transition);
}
.btn-emerald:hover { background: var(--emerald); box-shadow: var(--shadow-sm); transform: translateY(-2px); }

/* =========================================
   5. CARDS & CONTAINERS
   ========================================= */
.forsan-card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212,175,55,0.15);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.forsan-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(212,175,55,0.4);
}
.card-gold-accent { border-right: 5px solid var(--gold); }
.transition-hover { transition: all 0.3s ease; }
.transition-hover:hover {
  transform: translateX(-5px);
  background: var(--silk-warm) !important;
  box-shadow: var(--shadow-sm);
}

/* =========================================
   6. SECTION HEADERS
   ========================================= */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--emerald-dark);
  margin-bottom: 12px;
}
.section-header.light h2 { color: var(--gold); }
.section-divider {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 12px auto 0;
  border-radius: 3px;
}

/* =========================================
   7. WHY JOIN SECTION
   ========================================= */
.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(212,175,55,0.15);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  transform: scaleX(0);
  transition: transform 0.4s;
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gold-glow);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.2rem;
  color: var(--gold);
  border: 2px solid rgba(212,175,55,0.2);
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--gold); color: #fff; border-color: var(--gold); }

/* =========================================
   8. MAP SECTION
   ========================================= */
.map-country-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,175,55,0.3);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.map-country-btn:hover,
.map-country-btn.active {
  background: var(--gold);
  color: var(--charcoal-dark);
  border-color: var(--gold);
  font-weight: 700;
}
.map-poet-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 10px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  text-decoration: none;
  color: #fff;
}
.map-poet-card:hover { background: rgba(212,175,55,0.15); color: var(--gold); border-color: var(--gold); }

/* =========================================
   9. REGISTRATION CTA
   ========================================= */
.cta-register {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta-register::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231a1a1a' fill-opacity='0.04'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10S0 14.5 0 20s4.5 10 10 10 10-4.5 10-10zm10 0c0 5.5 4.5 10 10 10s10-4.5 10-10-4.5-10-10-10-10 4.5-10 10z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* =========================================
   10. CALENDAR & FACE TO FACE
   ========================================= */
.calendar-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(212,175,55,0.15);
  align-items: flex-start;
  transition: var(--transition);
}
.calendar-item:last-child { border-bottom: none; }
.calendar-item:hover { padding-right: 8px; }
.calendar-date-badge {
  background: var(--emerald-dark);
  color: var(--gold);
  min-width: 55px;
  height: 55px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.calendar-date-badge .day { font-size: 1.3rem; line-height: 1; }

/* Face to Face */
.face-to-face-arena {
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--charcoal-light) 100%);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.face-to-face-arena::before {
  content: 'VS';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  color: rgba(212,175,55,0.08);
  font-weight: 900;
  font-family: Arial, sans-serif;
  pointer-events: none;
}
.fighter-card {
  text-align: center;
  flex: 1;
}
.fighter-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  object-fit: cover;
  margin: 0 auto 10px;
  display: block;
  box-shadow: 0 0 20px rgba(212,175,55,0.3);
}
.vs-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--charcoal-dark);
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(212,175,55,0.4);
}

/* =========================================
   11. STATS SECTION
   ========================================= */
.stat-tab-btn {
  background: transparent;
  border: 2px solid rgba(212,175,55,0.3);
  color: var(--text-muted);
  padding: 10px 24px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.stat-tab-btn.active,
.stat-tab-btn:hover {
  background: var(--gold);
  color: var(--charcoal-dark);
  border-color: var(--gold);
}
.stat-rank-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 18px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(212,175,55,0.12);
  margin-bottom: 10px;
  transition: var(--transition);
}
.stat-rank-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); transform: translateX(-4px); }
.rank-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--silk-warm);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  flex-shrink: 0;
}
.rank-num.gold-rank { background: var(--gold); color: var(--charcoal-dark); }
.rank-num.silver-rank { background: #C0C0C0; color: #fff; }
.rank-num.bronze-rank { background: #CD7F32; color: #fff; }

/* =========================================
   12. POEMS SECTION (NABATI & FUSHA)
   ========================================= */
.poem-card {
  position: relative;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  border: none;
  box-shadow: none;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 1;
  padding: 12px;
}
.poem-card::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background: #ffffff;
  filter: url(#wavy2);
  box-shadow: 2px 3px 20px rgba(0, 0, 0, 0.4), 0 0 60px #8a4d0f inset;
  z-index: -1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: none;
}
.poem-card:hover {
  transform: translateY(-8px);
}
.poem-card:hover::before {
  box-shadow: 4px 8px 25px rgba(0, 0, 0, 0.5), 0 0 60px #8a4d0f inset;
}
.poem-card-header {
  padding: 20px 20px 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px dashed rgba(138, 77, 15, 0.15);
}
.poem-card-header img {
  width: 55px; height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.poem-card-body {
  padding: 15px 20px;
  flex: 1;
}
.poem-card-body p {
  color: #1a0f05 !important;
}
.poem-card-footer {
  padding: 12px 20px 20px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px dashed rgba(138, 77, 15, 0.15);
}
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #ffd700, #b8860b);
  color: #fff;
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.poem-type-label {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 700;
}
.type-nabati { background: rgba(139,90,43,0.12); color: var(--emerald); }
.type-fusha { background: rgba(212,175,55,0.12); color: var(--gold-dark); }

/* =========================================
   13. RACES SECTION
   ========================================= */
.race-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.race-card-poets {
  background: linear-gradient(135deg, var(--charcoal-light) 0%, var(--emerald-dark) 100%);
  border: 1px solid rgba(212,175,55,0.2);
}
.race-card-poems {
  background: linear-gradient(135deg, #7a5a10 0%, var(--gold-dark) 100%);
  border: 1px solid rgba(212,175,55,0.3);
}
.race-leaderboard-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  border-radius: 10px;
  transition: var(--transition);
  margin-bottom: 8px;
}
.race-leaderboard-item:hover { background: rgba(255,255,255,0.08); }
.race-leaderboard-item img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(212,175,55,0.4); }
.countdown-display {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(212,175,55,0.5);
}
.countdown-unit {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-top: 4px;
}

/* =========================================
   14. VIDEO LIBRARY
   ========================================= */
.video-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}
.video-thumb-img {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}
.video-thumb:hover .video-thumb-img { transform: scale(1.05); }
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  transition: background 0.3s;
}
.video-thumb:hover .video-play-btn { background: rgba(0,0,0,0.6); }
.video-play-btn i { font-size: 3rem; color: #fff; opacity: 0.9; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }

/* =========================================
   15. POET OF THE WEEK
   ========================================= */
.pow-card {
  background: linear-gradient(135deg, var(--silk) 0%, #fff 50%, var(--silk-warm) 100%);
  border: 2px solid var(--gold);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pow-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.pow-avatar {
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 6px solid var(--gold);
  object-fit: cover;
  margin: 0 auto 20px;
  display: block;
  box-shadow: 0 0 40px rgba(212,175,55,0.35), 0 15px 40px rgba(0,0,0,0.1);
  position: relative;
}
.pow-poems-tabs .nav-link {
  color: var(--text-muted);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 30px;
  padding: 6px 16px;
  margin: 0 4px;
  font-size: 0.85rem;
  transition: var(--transition);
}
.pow-poems-tabs .nav-link.active {
  background: var(--gold);
  color: var(--charcoal-dark);
  border-color: var(--gold);
  font-weight: 700;
}

/* =========================================
   16. AWARDS / MEDALS
   ========================================= */
.award-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #fff;
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.award-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.award-header {
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.award-icon-wrap {
  width: 70px; height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}
.award-knight { background: linear-gradient(135deg, #1a1a2e, #2d2d60); }
.award-knight .award-icon-wrap { background: rgba(212,175,55,0.15); color: var(--gold); }
.award-poem { background: linear-gradient(135deg, #7a5a10, var(--gold-dark)); }
.award-poem .award-icon-wrap { background: rgba(255,255,255,0.15); color: #fff; }
.award-audience { background: linear-gradient(135deg, #0d3b71, #1a6bbf); }
.award-audience .award-icon-wrap { background: rgba(255,255,255,0.15); color: #fff; }
.award-culture { background: linear-gradient(135deg, #3d0a0a, #7a1515); }
.award-culture .award-icon-wrap { background: rgba(255,255,255,0.15); color: #fff; }
.award-body { padding: 0 25px 25px; }
.award-poet-img {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  object-fit: cover;
}

/* =========================================
   17. FEATURED POETS
   ========================================= */
.featured-poet-card {
  text-align: center;
  padding: 20px 15px;
  border-radius: 16px;
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
}
.featured-poet-card:hover {
  background: #fff;
  border-color: rgba(212,175,55,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.featured-poet-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--emerald);
  margin-bottom: 12px;
  transition: border-color 0.3s;
}
.featured-poet-card:hover .featured-poet-avatar { border-color: var(--gold); }

/* =========================================
   18. COMMUNITY TICKER
   ========================================= */
.community-ticker {
  background: var(--emerald-dark);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 18px 0;
  overflow: hidden;
}
.ticker-label {
  background: var(--gold);
  color: var(--charcoal-dark);
  padding: 8px 20px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-track {
  display: flex;
  gap: 30px;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-poet-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--silk);
  text-decoration: none;
  transition: color 0.3s;
  flex-shrink: 0;
}
.ticker-poet-item:hover { color: var(--gold); }
.ticker-poet-item img {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}

/* =========================================
   19. FORMS
   ========================================= */
.form-control, .form-select, .forsan-input {
  background-color: var(--silk);
  border: 1px solid rgba(139,90,43,0.2);
  border-radius: 8px;
  padding: 12px 15px;
  font-family: var(--font-body);
  color: var(--charcoal-dark);
  transition: var(--transition);
  width: 100%;
}
.form-control:focus, .form-select:focus, .forsan-input:focus {
  background-color: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 0.25rem var(--gold-glow);
  outline: none;
}
.login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--charcoal-dark) 100%);
}
.login-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  padding: 40px;
  width: 100%;
  max-width: 450px;
  border-top: 5px solid var(--gold);
}

/* =========================================
   20. POET PROFILE PAGE
   ========================================= */
.poet-cover {
  height: 300px;
  background: linear-gradient(135deg, var(--emerald-dark), var(--charcoal-light));
  position: relative;
  overflow: hidden;
}
.poet-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.poet-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.7) 100%);
}
.poet-header-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 30px;
  margin-top: -80px;
  position: relative;
  z-index: 10;
  border: 1px solid rgba(212,175,55,0.2);
}
.poet-avatar-wrap {
  position: relative;
  display: inline-block;
}
.poet-avatar-main {
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 5px solid var(--gold);
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(212,175,55,0.35);
}
.verified-badge {
  position: absolute;
  bottom: 8px; left: 8px;
  background: #1d9bf0;
  border-radius: 50%;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  border: 2px solid #fff;
}
.gold-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--charcoal-dark);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-body);
}
.poet-stat-box {
  text-align: center;
  padding: 15px 10px;
  border-radius: 10px;
  background: var(--silk-warm);
  border: 1px solid rgba(212,175,55,0.1);
  transition: var(--transition);
}
.poet-stat-box:hover { border-color: var(--gold); background: var(--gold-glow); }
.poet-stat-num { font-size: 1.6rem; font-weight: 800; color: var(--emerald-dark); font-family: var(--font-body); display: block; }
.poet-stat-label { font-size: 0.75rem; color: var(--text-muted); }

/* Timeline */
.poet-timeline { padding: 0; list-style: none; }
.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  right: 28px; top: 30px; bottom: -25px;
  width: 2px;
  background: rgba(212,175,55,0.2);
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--gold-glow);
  flex-shrink: 0;
  margin-top: 6px;
}
.timeline-year-badge {
  background: var(--emerald-dark);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-body);
  display: inline-block;
  margin-bottom: 5px;
}

/* Portfolio Tabs */
.portfolio-tabs .nav-link {
  color: var(--text-muted);
  border: none;
  border-bottom: 3px solid transparent;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-weight: 600;
  transition: var(--transition);
  background: transparent;
}
.portfolio-tabs .nav-link:hover { color: var(--emerald-dark); }
.portfolio-tabs .nav-link.active {
  color: var(--emerald-dark) !important;
  border-color: var(--gold) !important;
  background: #fff;
}
.portfolio-tabs { border-bottom: 2px solid rgba(212,175,55,0.2) !important; }

/* Poet Media Cards */
.poet-media-card {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}
.poet-media-card:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.media-type-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-family: var(--font-body);
  backdrop-filter: blur(4px);
}
.view-count-badge {
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-family: var(--font-body);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; gap: 5px;
}

/* Social Links */
.social-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.1);
  text-decoration: none;
  color: #fff;
}
.social-link-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); color: #fff; }
.sl-facebook { background: #1877F2; }
.sl-instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.sl-snapchat { background: #FFFC00; color: #000 !important; }
.sl-snapchat:hover { color: #000 !important; }
.sl-youtube { background: #FF0000; }
.sl-twitter { background: #000; }
.sl-linkedin { background: #0A66C2; }
.sl-whatsapp { background: #25D366; }
.sl-phone { background: var(--emerald-dark); }

/* Gallery */
.poet-gallery-img {
  width: 100%; aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s;
  cursor: pointer;
  border: 2px solid transparent;
}
.poet-gallery-img:hover { transform: scale(1.04); border-color: var(--gold); }

/* Interaction Bar */
.interaction-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 15px 0;
}
.interact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid;
}
.interact-btn-like { border-color: #e0245e; color: #e0245e; background: rgba(224,36,94,0.06); }
.interact-btn-like:hover, .interact-btn-like.active { background: #e0245e; color: #fff; }
.interact-btn-love { border-color: #f4212e; color: #f4212e; background: rgba(244,33,46,0.06); }
.interact-btn-love:hover, .interact-btn-love.active { background: #f4212e; color: #fff; }
.interact-btn-share { border-color: var(--emerald); color: var(--emerald); background: rgba(22,110,84,0.06); }
.interact-btn-share:hover { background: var(--emerald); color: #fff; }
.interact-btn-pdf { border-color: var(--gold-dark); color: var(--gold-dark); background: rgba(184,150,46,0.06); }
.interact-btn-pdf:hover { background: var(--gold-dark); color: #fff; }

/* News Sidebar */
.news-sidebar-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(212,175,55,0.1);
  transition: var(--transition);
}
.news-sidebar-item:last-child { border-bottom: none; }
.news-sidebar-item:hover { padding-right: 8px; }

/* =========================================
   21. ADMIN PANEL
   ========================================= */
.admin-sidebar {
  background: var(--charcoal-dark);
  min-height: 100vh;
  color: #fff;
  padding-top: 20px;
  box-shadow: inset -5px 0 15px rgba(0,0,0,0.2);
}
.admin-sidebar a {
  color: rgba(255,255,255,0.7);
  padding: 12px 20px;
  display: block;
  font-family: var(--font-body);
  border-right: 3px solid transparent;
  transition: var(--transition);
}
.admin-sidebar a:hover, .admin-sidebar a.active {
  color: var(--gold);
  background: rgba(255,255,255,0.05);
  border-right-color: var(--gold);
}
.admin-header {
  background: #fff;
  padding: 15px 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--gold);
}
.admin-stat-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border-bottom: 4px solid var(--emerald);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-stat-card h3 {
  margin: 0;
  font-size: 2rem;
  color: var(--charcoal-dark);
  font-family: var(--font-body);
}
.table-custom { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-sm); }
.table-custom thead { background: var(--emerald-dark); color: var(--gold); font-family: var(--font-body); }
.table-custom th, .table-custom td { padding: 15px; vertical-align: middle; }
.table-custom tbody tr:hover { background-color: var(--silk-warm); }

/* =========================================
   22. FOOTER
   ========================================= */
.forsan-footer {
  background-color: var(--charcoal-dark);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 25px;
  border-top: 5px double var(--gold) !important;
  font-family: var(--font-body);
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='30' viewBox='0 0 120 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 15 Q30 0 60 15 T120 15 M0 15 Q30 30 60 15 T120 15' fill='none' stroke='%23d4af37' stroke-opacity='0.05' stroke-width='0.6'/%3E%3C/svg%3E");
  position: relative;
}
.forsan-footer::before {
  content: "";
  position: absolute;
  top: -4px; left: 0; right: 0;
  height: 4px;
  background-image: linear-gradient(45deg, var(--gold) 25%, transparent 25%), linear-gradient(-45deg, var(--gold) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, var(--gold) 75%), linear-gradient(-45deg, transparent 75%, var(--gold) 75%);
  background-size: 8px 8px;
  opacity: 0.6;
}
.forsan-footer h5 { color: var(--gold); font-family: var(--font-display); margin-bottom: 20px; }
.forsan-footer a { color: rgba(255,255,255,0.6); text-decoration: none; transition: var(--transition); }
.forsan-footer a:hover { color: var(--gold); padding-right: 5px; }
.social-icon-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  background: rgba(212,175,55,0.1);
  border-radius: 50%;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.3);
  transition: all 0.3s ease;
}
.social-icon-footer:hover { background: var(--gold); color: var(--charcoal-dark); transform: translateY(-3px); }
.footer-links a:hover { color: var(--gold) !important; padding-right: 8px; transition: all 0.3s ease; }

/* =========================================
   23. ANIMATIONS
   ========================================= */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse {
  0%   { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212,175,55,0.7); }
  70%  { transform: scale(1); box-shadow: 0 0 0 10px rgba(212,175,55,0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}
.pulse-gold { animation: pulse 2s infinite; }
.gold-shimmer {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* Pulser animation for stats & highlights */
.pulser {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal-dark);
}
.pulser::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--gold-light);
  border-radius: 50%;
  z-index: -1;
  animation: pulse-custom-anim 1000ms cubic-bezier(0.9, 0.7, 0.5, 0.9) infinite;
}
@keyframes pulse-custom-anim {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    transform: scale(1.6);
  }
}

/* Grower animation/effect for buttons */
.grower.animated {
  animation-name: grow;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes grow {
  0% {
    transform: scaleX(1);
    background: var(--emerald-dark);
  }
  25% {
    background: var(--emerald);
  }
  50% {
    background: var(--gold-dark);
  }
  75% {
    background: var(--gold);
    transform: scaleX(1.15);
  }
  100% {
    background: var(--emerald-dark);
  }
}
.grower {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  color: #fff !important;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
.grower:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 8px 25px rgba(212,175,55,0.4) !important;
}

/* News Custom Grid 70/30 */
.news-grid-custom {
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 30px;
}
@media (max-width: 991px) {
  .news-grid-custom {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   24. MISC UTILITIES
   ========================================= */
.badge-verified {
  background: var(--gold);
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  box-shadow: 0 2px 5px rgba(212,175,55,0.3);
}
.modal-header .btn-close { margin: -0.5rem auto -0.5rem -0.5rem; }
.rating-stars { color: #ffc107; font-size: 1.1rem; }
.live-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #ff4444;
  display: inline-block;
  animation: pulse 1.5s infinite;
  margin-left: 6px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--silk); }
::-webkit-scrollbar-thumb { background: var(--emerald); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* =========================================
   25. RESPONSIVE
   ========================================= */
@media (max-width: 991px) {
  .hero-stat-item { min-width: 120px; padding: 18px 12px; }
  .hero-stat-num { font-size: 1.7rem; }
  .poet-header-card { margin-top: -50px; }
  .poet-cover { height: 220px; }
  .section-padding { padding: 55px 0; }
}
@media (max-width: 576px) {
  .hero-stats-bar { flex-wrap: wrap; }
  .hero-stat-item { flex: 1 1 45%; }
  .pow-card { padding: 30px 20px; }
  .pow-avatar { width: 120px; height: 120px; }
}

/* Premium Unified Icon Badge */
.premium-icon-badge {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--emerald-dark) !important;
  border: 2px solid var(--gold) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(91, 14, 45, 0.15);
  transition: all 0.3s ease;
}
.premium-icon-badge i {
  color: var(--gold) !important;
  font-size: 3rem !important;
  transition: all 0.3s ease;
}
.premium-icon-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}
.premium-icon-badge:hover i {
  transform: rotate(5deg);
}

