/*
 * This is a manifest file that'll be compiled into application.css
 * UNIFIED CSS SYSTEM - Top Views 2.0 Bigg Boss App
 * Updated: Yellow to White Color Scheme Only
 */

/* ============================================ */
/* 1. BASE & RESET */
/* ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(135deg, #0a0a1a 0%, #120c1f 100%);
  color: white;
  font-family: 'Poppins', Arial, sans-serif;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

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

/* ============================================ */
/* 2. LAYOUT */
/* ============================================ */

.page-wrapper {
  display: flex;
  gap: 20px;
  padding: 30px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  min-height: 100vh;
  flex-wrap: wrap;
}

/* ---------- Side Ads ---------- */
.side-ad {
  width: 160px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ad-box.skyscraper {
  width: 160px;
  height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #37105f, #6e1fb7);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px;
  position: sticky;
  top: 100px;
  overflow: hidden;
}

.ad-box.skyscraper .ad-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.ad-box.skyscraper .ad-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.5);
  padding: 20px;
}

.ad-box.skyscraper .ad-placeholder i {
  font-size: 32px;
  color: rgba(255, 255, 255, 0.4);
}

.ad-box.skyscraper .ad-placeholder span {
  font-size: 0.8rem;
  color: #888;
}

.test-ad-label {
  text-align: center;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
  opacity: 0.7;
}

.main-content {
  flex: 1;
  background: rgba(6, 3, 18, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  min-width: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* ============================================ */
/* 2a. MOBILE ADS - BOTTOM & TOP */
/* ============================================ */

.mobile-ad-container {
  display: none;
  width: 100%;
  padding: 10px 15px;
  margin: 10px 0;
}

.mobile-ad-container .ad-box {
  background: #1e293b;
  border: 2px dashed #334155;
  border-radius: 10px;
  padding: 15px 20px;
  text-align: center;
  color: #94a3b8;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 60px;
  width: 100%;
}

.mobile-ad-container .ad-box .ad-size {
  font-size: 10px;
  color: #64748b;
  background: rgba(255,255,255,0.05);
  padding: 2px 12px;
  border-radius: 12px;
}

.mobile-ad-container .ad-box i {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.3);
}

.mobile-ad-top {
  display: none;
  margin-bottom: 15px;
}

.mobile-ad-bottom {
  display: none;
  margin-top: 15px;
}

/* ============================================ */
/* 3. HEADER / NAVBAR */
/* ============================================ */

.top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  background: rgba(5, 2, 15, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  min-height: 90px;
  flex-wrap: nowrap;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 25%;
  flex-shrink: 0;
}

.logo-text-link h2 {
  font-size: 1.3rem;
  background: linear-gradient(135deg, #ffffff, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
  font-weight: 800;
  margin: 0;
  letter-spacing: 1px;
}

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

.desktop-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  letter-spacing: 0.5px;
}

.desktop-nav a:hover, 
.desktop-nav a.active { 
  color: #ffffff; 
}

.desktop-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #a78bfa, #ffffff);
}

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

.header-actions i {
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s;
  color: rgba(255, 255, 255, 0.6);
}

.header-actions i:hover { 
  color: #ffffff; 
}

.main-vote-btn {
  background: linear-gradient(90deg, #7b2fff, #a78bfa);
  padding: 10px 22px;
  border-radius: 40px;
  font-weight: bold;
  display: inline-block;
  color: white !important;
  text-decoration: none;
  font-size: 0.9rem;
}

.main-vote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(123, 47, 255, 0.4);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 5px 8px;
  transition: color 0.3s;
  z-index: 1001;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-menu-toggle:hover {
  color: #ffffff;
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100%;
  background: linear-gradient(180deg, #0a0a1a 0%, #1a0a2e 100%);
  z-index: 1000;
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 2, 15, 0.5);
  flex-shrink: 0;
}

.mobile-nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-logo {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.mobile-nav-logo span {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.mobile-nav-close {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: rgba(255, 255, 255, 0.7);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-nav-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transform: rotate(90deg);
}

.mobile-nav-links {
  flex: 1;
  padding: 15px 20px;
  overflow-y: auto;
}

.mobile-nav-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: 12px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-bottom: 4px;
  border: 1px solid transparent;
}

.mobile-nav-links a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

.mobile-nav-links a.active {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.12);
}

.mobile-nav-links a i {
  width: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  flex-shrink: 0;
}

.mobile-nav-footer {
  padding: 15px 20px 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  background: rgba(5, 2, 15, 0.3);
}

.mobile-vote-btn {
  background: linear-gradient(90deg, #7b2fff, #a78bfa);
  color: white !important;
  justify-content: center;
  padding: 14px 20px;
  font-size: 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
  margin-bottom: 12px;
  width: 100%;
  text-align: center;
}

.mobile-vote-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 20px rgba(123, 47, 255, 0.4);
}

.mobile-social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icon {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.1rem;
  transition: all 0.3s;
  padding: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social-icon:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

/* ============================================ */
/* 4. PAGE HERO */
/* ============================================ */

.page-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 30px;
  padding: 40px 30px;
  margin: 20px 30px 30px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.95);
  max-width: 600px;
  margin: 0 auto 30px;
}

.page-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.page-stats .stat {
  background: rgba(255,255,255,0.15);
  padding: 10px 50px;
  border-radius: 60px;
  backdrop-filter: blur(10px);
}

.page-stats .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
}

.page-stats .stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================ */
/* 5. FILTERS SECTION */
/* ============================================ */

.filters-section {
  background: rgba(26, 26, 46, 0.9);
  border-radius: 20px;
  padding: 20px;
  margin: 0 30px 30px 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.filters-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
}

.filter-group {
  flex: 1;
  min-width: 160px;
}

.filter-group label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.filter-select, .search-input {
  width: 100%;
  padding: 10px 14px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: white;
  font-size: 0.9rem;
}

.search-group {
  flex: 2;
  min-width: 200px;
  position: relative;
}

.search-group i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
}

.search-input {
  padding-left: 42px;
}

/* ============================================ */
/* 6. UNIVERSAL GRID SYSTEM */
/* ============================================ */

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 0 30px 30px 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 30px 30px 30px;
}

/* ============================================ */
/* 7. CARD BASE STYLES */
/* ============================================ */

.contestant-card, .review-card, .poll-card {
  background: rgba(26, 26, 46, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contestant-card:hover, .review-card:hover, .poll-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-image-round {
  width: 120px;
  height: 120px;
  margin: 20px auto 10px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.card-image-round img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-icon {
  font-size: 60px;
  color: rgba(255, 255, 255, 0.8);
}

.card-content {
  padding: 0 15px 15px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 4px;
  font-weight: 700;
}

.card-subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-style: italic;
  margin-bottom: 8px;
}

.card-stats {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 8px auto;
  background: rgba(255, 255, 255, 0.06);
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-btn {
  display: inline-block;
  background: linear-gradient(90deg, #6f27ff, #a78bfa);
  border: none;
  padding: 10px 16px;
  color: #fff;
  border-radius: 40px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  margin-top: auto;
}

.card-btn.disabled {
  background: #555;
  cursor: not-allowed;
  opacity: 0.6;
}

.card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: bold;
  z-index: 10;
}

.card-badge.active { background: #4CAF50; color: white; }
.card-badge.eliminated { background: #f44336; color: white; }

.review-image {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, #2a2a4a, #1a1a3e);
}

.review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.review-card:hover .review-image img { transform: scale(1.05); }

.review-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 0, 0, 0.85);
  padding: 6px 14px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: bold;
  color: white;
  opacity: 0;
  transition: all 0.3s;
  white-space: nowrap;
}

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

.review-trending {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 5;
}

.review-content {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.review-category {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  align-self: flex-start;
}

.review-title {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  line-height: 1.4;
}

.review-card:hover .review-title { 
  color: #a78bfa; 
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

.review-meta i { 
  color: rgba(255, 255, 255, 0.4); 
  margin-right: 4px; 
}

.poll-card-inner {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.poll-status {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.poll-status.active { background: #4CAF50; color: white; }
.poll-status.completed { background: #666; color: white; }

.poll-icon-wrapper {
  margin-bottom: 15px;
}

.poll-icon-wrapper i {
  font-size: 48px;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-bottom: 8px;
}

.poll-type-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.poll-votes {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.poll-progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}

.poll-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #a78bfa, #7b2fff);
  border-radius: 10px;
  transition: width 0.5s ease;
}

.poll-action { margin-top: auto; }

.poll-vote-btn, .poll-results-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 40px;
  font-weight: bold;
  font-size: 0.8rem;
  transition: all 0.3s;
  width: 100%;
  justify-content: center;
}

.poll-vote-btn {
  background: linear-gradient(90deg, #6f27ff, #a78bfa);
  color: white;
}

.poll-results-btn {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.poll-card:hover .poll-vote-btn,
.poll-card:hover .poll-results-btn {
  transform: translateY(-2px);
}

/* ============================================ */
/* 8. HOME PAGE STYLES */
/* ============================================ */

.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr 250px;
  gap: 30px;
  padding: 40px 30px;
  background-image: url("/assets/hero-bg-9c9db3b5.png");
  background-repeat: repeat;
  background-size: auto 450px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-left h4 { 
  color: rgba(255, 255, 255, 0.6); 
  margin-bottom: 15px; 
  font-size: 0.9rem; 
  font-weight: 600; 
  letter-spacing: 2px; 
  text-transform: uppercase; 
}

.hero-left h1 { 
  font-size: 3rem; 
  line-height: 1.2; 
  margin-bottom: 20px; 
  font-weight: 800; 
}

.hero-left h1 span {
  background: linear-gradient(135deg, #ffffff, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-left p { 
  color: rgba(255, 255, 255, 0.7); 
  font-size: 1rem; 
  line-height: 1.6; 
  margin-bottom: 25px; 
  max-width: 90%; 
}

.hero-btn {
  background: linear-gradient(90deg, #7026ff, #a78bfa);
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: bold;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn:hover { 
  transform: scale(1.02); 
  box-shadow: 0 8px 25px rgba(112, 38, 255, 0.4); 
  color: white; 
}

.hero-left small { 
  display: block; 
  margin-top: 15px; 
  font-size: 0.75rem; 
}

.hero-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-center img { 
  /*max-width: 380px; */
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.05)); 
}

.hero-right { display: flex; flex-direction: column; gap: 15px; }

.info-card {
  display: flex;
  gap: 15px;
  align-items: center;
  background: rgba(11, 8, 27, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 15px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.info-card:hover { 
  border-color: rgba(255, 255, 255, 0.15); 
  transform: translateX(-5px); 
}

.info-card i { 
  color: rgba(255, 255, 255, 0.5); 
  font-size: 22px; 
  width: 30px; 
  text-align: center; 
}

.info-card h5 { 
  color: #ffffff; 
  font-size: 0.9rem; 
  margin-bottom: 4px; 
  font-weight: 700; 
}

.info-card p { 
  font-size: 0.75rem; 
  color: rgba(255, 255, 255, 0.4); 
  margin: 0; 
}

.banner-ad {
  margin: 20px 30px;
  min-height: 90px;
  border-radius: 12px;
  background: linear-gradient(90deg, #3d1065, #7823d1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ad-content {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.ad-content i { 
  font-size: 24px; 
  color: rgba(255, 255, 255, 0.4); 
}

.ad-content span { 
  font-weight: 600; 
}

.ad-content p { 
  color: rgba(255, 255, 255, 0.4); 
  font-size: 0.8rem; 
  margin: 0; 
}

.section-box { 
  padding: 20px 30px; 
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 10px;
}

.section-header h2 { 
  color: #ffffff; 
  font-size: 1.4rem; 
  font-weight: 700; 
  display: flex; 
  align-items: center; 
  gap: 10px; 
}

.section-header h2 i { 
  color: rgba(255, 255, 255, 0.3); 
}

.section-header a { 
  color: rgba(255, 255, 255, 0.5); 
  font-weight: 500; 
  text-decoration: none; 
  transition: all 0.3s; 
}

.section-header a:hover { 
  color: #ffffff; 
}

/* ============================================ */
/* 9. COMMUNITY & SOCIAL */
/* ============================================ */

.community-box {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 20px;
  padding: 40px;
  margin: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.community-text h2 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.community-text p { 
  color: rgba(255, 255, 255, 0.6); 
  font-size: 0.95rem; 
}

.social-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.3s;
  text-decoration: none;
  color: white;
}

.social-btn:hover { 
  transform: translateY(-2px); 
  color: white; 
}

.youtube-btn { background: #FF0000; }
.youtube-btn:hover { background: #cc0000; }
.twitter-btn { background: #1DA1F2; }
.twitter-btn:hover { background: #1a91da; }
.facebook-btn { background: #4267B2; }
.facebook-btn:hover { background: #3a5a9e; }
.instagram-btn { background: linear-gradient(45deg, #f09433, #d62976, #962fbf, #4f5bd5); }
.instagram-btn:hover { opacity: 0.9; }

/* ============================================ */
/* 10. POLL SHOW PAGE STYLES */
/* ============================================ */

.vote-container { max-width: 1000px; margin: 0 auto; padding: 20px; }
.vote-nav { margin-bottom: 30px; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 40px;
}

.back-link:hover { 
  background: rgba(255, 255, 255, 0.1); 
  transform: translateX(-5px); 
  color: #ffffff;
}

.vote-card {
  background: rgba(26, 26, 46, 0.9);
  border-radius: 24px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 30px;
}

.vote-header { 
  text-align: left; 
  margin-bottom: 30px; 
  padding-bottom: 20px; 
  border-bottom: 1px solid rgba(255,255,255,0.06); 
}

.poll-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.poll-title { 
  font-size: 1.8rem; 
  font-weight: 800; 
  color: #ffffff; 
  margin-bottom: 12px; 
  text-align: left; 
}

.poll-dates { 
  display: flex; 
  justify-content: flex-start; 
  gap: 20px; 
  flex-wrap: wrap; 
  margin-bottom: 15px; 
}

.date-badge, .vote-count-badge { 
  display: inline-flex; 
  align-items: center; 
  gap: 6px; 
  color: rgba(255, 255, 255, 0.4); 
  font-size: 0.75rem; 
}

.date-badge i, .vote-count-badge i { 
  color: rgba(255, 255, 255, 0.3); 
}

.poll-description { 
  color: rgba(255, 255, 255, 0.7); 
  font-size: 0.95rem; 
  line-height: 1.6; 
  text-align: left; 
  margin-bottom: 15px;
}

.poll-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.poll-option-box {
  background: rgba(10, 10, 20, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
}

.poll-option-box:hover { 
  border-color: rgba(255, 255, 255, 0.2); 
  transform: translateY(-3px); 
  background: rgba(20, 20, 40, 0.8); 
}

.poll-option-box.has-checked { 
  border-color: #a78bfa; 
  background: rgba(167, 139, 250, 0.1); 
}

.poll-option-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.poll-option-img { width: 100%; height: 100%; object-fit: cover; }

.poll-option-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(255, 255, 255, 0.6);
}

.poll-option-radio-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}

.poll-option-radio { 
  width: 18px; 
  height: 18px; 
  cursor: pointer; 
  accent-color: #a78bfa; 
}

.poll-option-name { 
  font-size: 1rem; 
  font-weight: 700; 
  color: white; 
  cursor: pointer; 
  margin: 0; 
}

.poll-option-nickname { 
  display: block; 
  font-size: 0.7rem; 
  color: rgba(255, 255, 255, 0.4); 
  font-style: italic; 
}

.vote-actions { 
  display: flex; 
  gap: 15px; 
  justify-content: flex-start; 
  margin-top: 10px; 
}

.vote-submit-btn {
  background: linear-gradient(95deg, #a78bfa, #7b2fff);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: bold;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vote-submit-btn:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 5px 15px rgba(167, 139, 250, 0.3); 
}

.cancel-btn {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  padding: 12px 28px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cancel-btn:hover { 
  background: rgba(255, 255, 255, 0.12); 
  color: #ffffff; 
}

.daily-limit-message, .poll-closed-message, .already-voted-section {
  text-align: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  margin-top: 20px;
}

.limit-icon, .closed-icon, .voted-icon { font-size: 64px; margin-bottom: 20px; }
.limit-icon { color: #ff9800; }
.closed-icon { color: #ff9800; }
.voted-icon { color: #4CAF50; }

.daily-limit-message h3, .poll-closed-message h3, .already-voted-section h3 { 
  color: #ffffff; 
  font-size: 1.5rem; 
  margin-bottom: 10px; 
}

.next-vote-timer {
  background: rgba(0, 0, 0, 0.3);
  padding: 12px 20px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  font-size: 0.9rem;
}

.next-vote-timer i { color: #ff9800; }
.next-vote-timer strong { color: #ffffff; font-size: 1.1rem; margin-left: 5px; }

.message-actions { margin-top: 20px; }

.results-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(95deg, #a78bfa, #7b2fff);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: bold;
}

.results-btn:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 5px 15px rgba(167, 139, 250, 0.3); 
}

.related-polls {
  background: rgba(26, 26, 46, 0.7);
  border-radius: 20px;
  padding: 20px;
  margin-top: 20px;
}

.related-polls h3 { 
  color: #ffffff; 
  font-size: 1.1rem; 
  margin-bottom: 15px; 
  display: flex; 
  align-items: center; 
  gap: 8px; 
}

.related-polls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
}

.related-poll-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(26, 26, 46, 0.7);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.related-poll-card:hover { 
  transform: translateX(5px); 
  border-color: rgba(255, 255, 255, 0.12); 
}

.related-poll-icon {
  width: 45px;
  height: 45px;
  background: rgba(26, 26, 46, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.3);
}

.related-poll-info h4 { 
  color: #ffffff; 
  font-size: 0.9rem; 
  margin-bottom: 4px; 
}

.related-poll-info p { 
  color: rgba(255, 255, 255, 0.4); 
  font-size: 0.75rem; 
  margin-bottom: 4px; 
}

.related-poll-votes { 
  font-size: 0.65rem; 
  color: rgba(255, 255, 255, 0.4); 
  display: flex; 
  align-items: center; 
  gap: 4px; 
}

/* ============================================ */
/* 11. RESULTS PAGE STYLES */
/* ============================================ */

.results-nav { margin-bottom: 30px; }

.results-header {
  background: rgba(26, 26, 46, 0.9);
  border-radius: 24px;
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.results-title { 
  font-size: 1.8rem; 
  font-weight: 800; 
  color: #ffffff; 
  margin-bottom: 15px; 
}

.results-info { 
  display: flex; 
  justify-content: center; 
  gap: 20px; 
  flex-wrap: wrap; 
  margin-bottom: 15px; 
}

.results-description { 
  color: rgba(255, 255, 255, 0.7); 
  font-size: 0.9rem; 
  line-height: 1.6; 
  max-width: 700px; 
  margin: 10px auto 0; 
}

.results-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.summary-card {
  background: rgba(26, 26, 46, 0.85);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.summary-card:hover { 
  transform: translateY(-3px); 
  border-color: rgba(255, 255, 255, 0.12); 
}

.summary-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.winner-icon { background: rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.5); }
.votes-icon { background: rgba(76, 175, 80, 0.15); color: #4CAF50; }
.margin-icon { background: rgba(33, 150, 243, 0.15); color: #2196F3; }

.summary-info h4 { 
  color: rgba(255, 255, 255, 0.4); 
  font-size: 0.7rem; 
  margin-bottom: 5px; 
  text-transform: uppercase; 
}

.summary-info p { 
  color: white; 
  font-size: 1.1rem; 
  font-weight: bold; 
}

.results-chart {
  background: rgba(26, 26, 46, 0.85);
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.results-chart h3 { 
  color: #ffffff; 
  font-size: 1.1rem; 
  margin-bottom: 20px; 
  display: flex; 
  align-items: center; 
  gap: 8px; 
}

.result-card {
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(10, 10, 20, 0.5);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.result-card.winner-card { 
  background: rgba(167, 139, 250, 0.08); 
  border: 1px solid rgba(167, 139, 250, 0.2); 
}

.result-header { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  flex-wrap: wrap; 
  gap: 15px; 
  margin-bottom: 12px; 
}

.contestant-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

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

.avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.6);
}

.contestant-name { 
  font-size: 1rem; 
  font-weight: 700; 
  color: white; 
}
.contestant-nickname { 
  font-size: 0.7rem; 
  color: rgba(255, 255, 255, 0.4); 
  font-style: italic; 
}

.vote-count { 
  font-size: 1.2rem; 
  color: rgba(255, 255, 255, 0.8); 
}

.winner-badge {
  background: linear-gradient(95deg, #a78bfa, #7b2fff);
  color: #ffffff;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.progress-fill.winner-fill { 
  background: linear-gradient(90deg, #a78bfa, #7b2fff); 
}

.results-actions { 
  display: flex; 
  justify-content: center; 
  gap: 15px; 
  flex-wrap: wrap; 
  margin-top: 10px; 
}

.action-btn {
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: bold;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vote-btn { 
  background: linear-gradient(95deg, #a78bfa, #7b2fff); 
  color: #ffffff; 
}
.polls-btn { 
  background: rgba(255, 255, 255, 0.06); 
  color: rgba(255, 255, 255, 0.7); 
}
.share-btn { 
  background: rgba(25, 135, 84, 0.8); 
  color: #ffffff; 
}

/* ============================================ */
/* 12. MODAL, ALERT & TOAST */
/* ============================================ */

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active { display: flex; }

.modal-content {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.modal-header { 
  padding: 20px; 
  border-bottom: 1px solid rgba(255,255,255,0.06); 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}

.modal-header h3 { 
  color: #ffffff; 
  margin: 0; 
}

.close-modal { 
  background: none; 
  border: none; 
  font-size: 28px; 
  cursor: pointer; 
  color: rgba(255, 255, 255, 0.4); 
}

.close-modal:hover {
  color: #ffffff;
}

.modal-body { padding: 30px 20px; text-align: center; }
.modal-body h4 { 
  color: #ffffff; 
  font-size: 1.3rem; 
  margin: 10px 0; 
}
.modal-warning { 
  color: #ff9800; 
  font-size: 0.85rem; 
  margin-top: 15px; 
}

.modal-footer { 
  padding: 20px; 
  border-top: 1px solid rgba(255,255,255,0.06); 
  display: flex; 
  gap: 15px; 
  justify-content: center; 
}

.btn-cancel, .btn-confirm { 
  padding: 10px 25px; 
  border-radius: 40px; 
  border: none; 
  cursor: pointer; 
  font-weight: bold; 
}

.btn-cancel { 
  background: rgba(255, 255, 255, 0.08); 
  color: rgba(255, 255, 255, 0.7); 
}

.btn-cancel:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.btn-confirm { 
  background: linear-gradient(95deg, #a78bfa, #7b2fff); 
  color: #ffffff; 
}

.btn-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(167, 139, 250, 0.3);
}

.toast-message {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 12px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1100;
  transition: transform 0.3s;
}

.toast-message.show { transform: translateX(-50%) translateY(0); }
.toast-message.error { background: #f44336; color: white; }
.toast-message.success { background: #4CAF50; color: white; }

.custom-alert {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.custom-alert.hidden { display: none; }

.custom-alert-box {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 24px;
  padding: 35px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.15);
  animation: alertFadeIn 0.3s ease;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

@keyframes alertFadeIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.alert-icon-wrapper { margin-bottom: 15px; }
.alert-icon { font-size: 60px; display: inline-block; line-height: 1; }

.custom-alert-box h3 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.custom-alert-box p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 16px;
}

.alert-btn {
  background: linear-gradient(90deg, #a78bfa, #7b2fff);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.alert-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(167, 139, 250, 0.3);
}

.alert-btn:active { transform: scale(0.95); }

/* ============================================ */
/* 13. VOTING RULES, PAGINATION, EMPTY STATE */
/* ============================================ */

.voting-rules {
  background: rgba(26, 26, 46, 0.8);
  border-radius: 20px;
  padding: 30px;
  margin: 0 30px 30px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.voting-rules h3 { 
  color: #ffffff; 
  margin-bottom: 20px; 
}

.rules-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
  gap: 20px; 
}

.rule-item i { 
  font-size: 28px; 
  color: rgba(255, 255, 255, 0.3); 
  margin-bottom: 10px; 
  display: block; 
}

.rule-item p { 
  color: rgba(255, 255, 255, 0.6); 
  font-size: 0.9rem; 
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 30px 30px 30px;
}

.pagination a, .pagination span {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(26, 26, 46, 0.8);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.pagination a:hover, .pagination .active { 
  background: linear-gradient(95deg, #a78bfa, #7b2fff);
  color: #ffffff; 
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
  background: rgba(26, 26, 46, 0.6);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.empty-state i { 
  font-size: 64px; 
  color: rgba(255, 255, 255, 0.15); 
  margin-bottom: 20px; 
  display: block; 
}

.empty-state h3 { 
  font-size: 1.5rem; 
  margin-bottom: 10px; 
  color: #ffffff;
}

.empty-state p { 
  color: rgba(255, 255, 255, 0.5); 
}

.empty-state-note { 
  margin-top: 15px; 
  color: rgba(255, 255, 255, 0.3); 
  font-size: 0.8rem; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 6px; 
}

.empty-state-note i { 
  color: rgba(255, 255, 255, 0.2); 
}

.no-results-message {
  text-align: center;
  padding: 60px 40px;
  background: rgba(26, 26, 46, 0.7);
  border-radius: 20px;
  margin: 40px 30px;
  border: 1px dashed rgba(255, 255, 255, 0.06);
}

.no-results-message i { 
  font-size: 64px; 
  color: rgba(255, 255, 255, 0.1); 
  margin-bottom: 20px; 
  display: block; 
}

.no-results-message h3 { 
  font-size: 1.5rem; 
  color: #ffffff; 
  margin-bottom: 10px; 
}

.reset-filters-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #6f27ff, #a78bfa);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 40px;
  margin-top: 20px;
  cursor: pointer;
  font-weight: bold;
}

/* ============================================ */
/* 14. FOOTER */
/* ============================================ */

.footer {
  padding: 50px 40px 30px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  background: rgba(5, 2, 15, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 50px;
  width: 100%;
}

.footer-logo {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 25%;
  margin-bottom: 15px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

.footer-col h4 {
  color: #ffffff;
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #a78bfa, #7b2fff);
  border-radius: 2px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

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

.footer-social-icon:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.5);
  padding: 15px 40px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  width: 100%;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
  margin: 0;
}

/* ============================================ */
/* 15. NOTICE BOX */
/* ============================================ */

.notice-box {
  background: rgba(26, 26, 46, 0.85);
  border-radius: 20px;
  padding: 25px 35px;
  margin: 0 30px 30px 30px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.notice-box:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(26, 26, 46, 0.95);
  transform: translateY(-2px);
}

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

.notice-content i {
  font-size: 2.2rem;
  color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.notice-box:hover .notice-content i {
  background: rgba(255, 255, 255, 0.06);
  transform: scale(1.05);
  color: rgba(255, 255, 255, 0.4);
}

.notice-text {
  flex: 1;
}

.notice-text h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.notice-text p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  line-height: 1.4;
}

.suggest-poll-btn {
  background: linear-gradient(90deg, #6f27ff, #a78bfa);
  border: none;
  color: white;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: bold;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.suggest-poll-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(111, 39, 255, 0.4);
  filter: brightness(1.05);
}

/* ============================================ */
/* 16. RESPONSIVE BREAKPOINTS */
/* ============================================ */

/* Tablet & Mobile */
@media (max-width: 992px) {
  .desktop-nav { display: none !important; }
  .header-actions { display: none !important; }
  .mobile-menu-toggle { display: flex !important; }
  .side-ad { display: none !important; }
  .mobile-ad-container { display: block !important; }
  .mobile-ad-top { display: block !important; }
  .mobile-ad-bottom { display: block !important; }
  
  .top-header {
    padding: 10px 20px;
    min-height: 70px;
    flex-wrap: nowrap !important;
    gap: 10px;
  }
  
  .logo { width: 55px; height: 55px; }
  .logo-text-link h2 { font-size: 1.1rem; }
  .mobile-menu-toggle { font-size: 1.6rem; }
  
  .page-wrapper {
    padding: 15px;
    gap: 0;
    flex-direction: column;
  }
  
  .main-content { margin: 0; border-radius: 12px; }
  
  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
    margin: 15px;
    padding: 30px 20px;
  }
  
  .hero-center { order: -1; }
  .hero-center img { max-width: 280px; }
  .hero-left p { max-width: 100%; }
  .info-card { justify-content: center; }
  
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  
  .community-box { 
    flex-direction: column; 
    text-align: center; 
    margin: 20px; 
  }
  
  .section-box { padding: 15px; margin: 15px; }
  .banner-ad { margin: 15px; }
  
  .results-summary { grid-template-columns: 1fr; }
  .footer { grid-template-columns: repeat(2, 1fr); gap: 30px; padding: 40px 30px 25px; }
}

/* Mobile */
@media (max-width: 768px) {
  .top-header { padding: 8px 15px; min-height: 65px; }
  .logo { width: 50px; height: 50px; }
  .logo-text-link h2 { font-size: 1rem; }
  .mobile-menu-toggle { font-size: 1.5rem; padding: 4px 6px; }
  
  .page-wrapper { padding: 10px; }
  .main-content { border-radius: 10px; }
  
  .hero-left h1 { font-size: 2rem; }

  .hero-section { padding: 25px 15px; margin: 0px; }

  .hero-center img { max-width: 200px; }
  .hero-btn { padding: 12px 28px; font-size: 0.9rem; }
  
  .grid-5 { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .grid-4 { grid-template-columns: 1fr; gap: 15px; }
  
  .section-header { flex-direction: column; text-align: center; }
  .section-header h2 { font-size: 1.2rem; }
  .section-box { padding: 10px; margin: 5px; }

  .notice-box { margin: 0 15px 30px 15px;}
  
  .banner-ad { margin: 10px; min-height: 60px; padding: 10px; }
  .ad-content { flex-direction: column; text-align: center; }
  .ad-content i { font-size: 20px; }
  
  .community-box { padding: 25px 20px; margin: 15px; }
  .community-text h2 { font-size: 1.2rem; }
  .social-btn { padding: 10px 18px; font-size: 0.8rem; }
  
  .ad-rectangle { min-height: 180px; padding: 15px; }
  .card-image-round { width: 100px; height: 100px; }
  .card-title { font-size: 1rem; }
  
  .poll-card { padding: 15px; }
  .poll-icon i { font-size: 32px; }
  .poll-title { font-size: 0.9rem; min-height: 35px; }
  .review-image { height: 150px; }
  .review-title { font-size: 0.9rem; }
  
  .footer { grid-template-columns: 1fr 1fr; gap: 25px; padding: 30px 20px 20px; }
  .footer-col h4 { font-size: 0.9rem; }
  .footer-col a, .footer-col p { font-size: 0.8rem; }
  .footer-logo { width: 60px; height: 60px; }
  .footer-social-icon { width: 34px; height: 34px; font-size: 0.9rem; }
  .footer-bottom { padding: 12px 20px; }
  .footer-bottom p { font-size: 0.65rem; }
  
  .mobile-ad-container .ad-box { min-height: 50px; padding: 12px 15px; font-size: 11px; }
}

/* Mobile Small */
@media (max-width: 480px) {
  .top-header { padding: 6px 12px; min-height: 60px; }
  .logo { width: 42px; height: 42px; }
  .logo-text-link h2 { font-size: 0.85rem; }
  .mobile-menu-toggle { font-size: 1.3rem; padding: 3px 4px; }
  
  .page-wrapper { padding: 5px; }
  .main-content { border-radius: 8px; }
  
  .hero-left h1 { font-size: 1.6rem; }
  .hero-left h4 { font-size: 0.7rem; }
  .hero-left p { font-size: 0.85rem; margin-bottom: 20px; }
  .hero-btn { padding: 10px 24px; font-size: 0.85rem; }
  .hero-left small { font-size: 0.65rem; }
  .hero-center img { max-width: 160px; }
  .hero-section { padding: 20px 12px; margin: 0px; }
  
  .grid-5 { grid-template-columns: 1fr; gap: 12px; }
  .grid-4 { grid-template-columns: 1fr; gap: 12px; }
  
  .section-header h2 { font-size: 1rem; }
  .section-header a { font-size: 0.85rem; }
  .section-box { padding: 8px; margin: 3px; }
  
  .banner-ad { min-height: 50px; padding: 8px; margin: 8px; }
  .ad-content span { font-size: 0.8rem; }
  
  .community-box { padding: 20px 15px; margin: 10px; }
  .community-text h2 { font-size: 1rem; }
  .community-text p { font-size: 0.85rem; }
  
  .social-buttons { flex-direction: column; width: 100%; }
  .social-btn { width: 100%; justify-content: center; padding: 10px 16px; font-size: 0.85rem; }
  
  .ad-rectangle { min-height: 150px; padding: 12px; }
  .ad-content-rect i { font-size: 24px; }
  .ad-content-rect p { font-size: 0.7rem; }
  
  .info-card { padding: 12px 15px; }
  .info-card i { font-size: 18px; width: 25px; }
  .info-card h5 { font-size: 0.8rem; }
  .info-card p { font-size: 0.7rem; }
  
  .card-image-round { width: 90px; height: 90px; }
  .card-title { font-size: 0.95rem; }
  .card-stats { font-size: 0.7rem; padding: 4px 10px; }
  .card-btn { font-size: 0.75rem; padding: 8px 12px; }
  
  .review-image { height: 120px; }
  .review-title { font-size: 0.85rem; }
  .review-meta { font-size: 0.6rem; }
  
  .poll-card { padding: 12px; }
  .poll-icon i { font-size: 28px; }
  .poll-title { font-size: 0.85rem; min-height: 30px; }
  .poll-stats { font-size: 0.65rem; gap: 10px; }
  .vote-now-link { font-size: 0.75rem; }
  
  .footer { grid-template-columns: 1fr; gap: 20px; padding: 25px 15px 20px; text-align: center; }
  .footer-col { align-items: center; }
  .footer-col h4::after { left: 50%; transform: translateX(-50%); }
  .footer-col a:hover { transform: translateX(0); }
  .footer-logo { width: 50px; height: 50px; }
  .footer-col p { max-width: 300px; font-size: 0.85rem; }
  .footer-social { justify-content: center; }
  .footer-social-icon { width: 40px; height: 40px; font-size: 1.1rem; }
  .footer-bottom { padding: 10px 15px; }
  .footer-bottom p { font-size: 0.6rem; }
  
  .custom-alert-box { padding: 25px 20px; max-width: 95%; }
  .alert-icon { font-size: 48px; }
  .custom-alert-box h3 { font-size: 20px; }
  .custom-alert-box p { font-size: 14px; margin-bottom: 20px; }
  .alert-btn { padding: 10px 30px; font-size: 14px; width: 100%; }
  
  .mobile-ad-container { padding: 5px 8px; }
  .mobile-ad-container .ad-box { min-height: 40px; padding: 8px 10px; font-size: 10px; }
  .mobile-ad-container .ad-box .ad-size { font-size: 8px; }
}

/* Very Small Screens */
@media (max-width: 360px) {
  .hero-left h1 { font-size: 1.3rem; }
  .hero-section { padding: 15px 10px; }
  .hero-center img { max-width: 130px; }
  .hero-btn { padding: 8px 18px; font-size: 0.75rem; }
  .card-image-round { width: 80px; height: 80px; }
  .card-title { font-size: 0.85rem; }
  .community-text h2 { font-size: 0.9rem; }
  .section-header h2 { font-size: 0.9rem; }
  .footer { padding: 20px 10px 15px; gap: 20px; }
  .footer-logo { width: 50px; height: 50px; }
  .footer-col h4 { font-size: 0.8rem; }
  .footer-col a, .footer-col p { font-size: 0.7rem; }
  .footer-social-icon { width: 35px; height: 35px; font-size: 0.9rem; }
  .footer-bottom p { font-size: 0.55rem; }
}

/* ============================================ */
/* 17. SUCCESS BOX, TEST AD LABEL, TAX HERO */
/* ============================================ */

.success-box {
  background: linear-gradient(90deg, #2e7d32, #4caf50);
  color: white;
  padding: 12px 20px;
  margin: 15px 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
}

.test-ad-label {
  text-align: center;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 8px;
  opacity: 0.7;
}

.tax-hero {
  background: linear-gradient(135deg, #4f544d 0%, #36497d 100%);
  padding: 2rem 2rem;
  text-align: center;
  color: white;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  margin-bottom: 1rem;
  margin: 30px;
}

.about-container {
  margin: 0 auto;
  margin: 30px;
}

.tax-hero::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

.tax-hero h1 {
  font-weight: 800;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
}

.tax-hero h1 span {
  color: #a78bfa;
  margin-bottom: 10px;
}

/* ============================================ */
/* 18. GRID SYSTEM - FIXED */
/* ============================================ */

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 0 0 30px 0;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 0 30px 0;
}

/* ============================================ */
/* 19. REVIEW CARD - FIXED */
/* ============================================ */

.review-card {
  background: rgba(26, 26, 46, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.review-image {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, #2a2a4a, #1a1a3e);
}

.review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.review-card:hover .review-image img {
  transform: scale(1.05);
}

.review-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 0, 0, 0.85);
  padding: 6px 14px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: bold;
  color: white;
  opacity: 0;
  transition: all 0.3s;
  white-space: nowrap;
}

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

.review-content {
  padding: 12px 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.review-category {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  align-self: flex-start;
}

.review-title {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card:hover .review-title {
  color: #a78bfa;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

.review-meta i {
  color: rgba(255, 255, 255, 0.4);
  margin-right: 4px;
}

/* ============================================ */
/* 20. POLL CARD - FIXED */
/* ============================================ */

.poll-card {
  background: rgba(26, 26, 46, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  padding: 20px;
  text-align: center;
}

.poll-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.poll-icon {
  margin-bottom: 15px;
}

.poll-icon i {
  font-size: 40px;
  color: rgba(255, 255, 255, 0.5);
}

.poll-title {
  color: white;
  margin-bottom: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.poll-stats {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
}

.poll-stats i {
  color: rgba(255, 255, 255, 0.4);
  margin-right: 4px;
}

.vote-now-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: bold;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}

.poll-card:hover .vote-now-link {
  color: #a78bfa;
}

.poll-card:hover .vote-now-link i {
  transform: translateX(3px);
}

/* ============================================ */
/* 21. AD RECTANGLE - FIXED */
/* ============================================ */

.ad-rectangle {
  background: linear-gradient(180deg, #3d1065, #7026c9);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  height: 100%;
}

.ad-content-rect {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: white;
  text-align: center;
}

.ad-content-rect i {
  font-size: 32px;
  color: rgba(255, 255, 255, 0.3);
}

.ad-content-rect span {
  font-weight: 600;
}

.ad-content-rect p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  margin: 0;
}

/* ============================================ */
/* 22. RESPONSIVE - GRID */
/* ============================================ */

@media (max-width: 1400px) {
  .grid-5 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1200px) {
  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .review-image {
    height: 150px;
  }
  
  .review-title {
    font-size: 0.9rem;
  }
  
  .poll-card {
    padding: 15px;
  }
  
  .poll-icon i {
    font-size: 32px;
  }
  
  .poll-title {
    font-size: 0.9rem;
    min-height: 35px;
  }
  
  .ad-rectangle {
    min-height: 180px;
    padding: 15px;
  }
  
  .ad-content-rect i {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .grid-5 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .review-image {
    height: 120px;
  }
  
  .review-title {
    font-size: 0.85rem;
  }
  
  .review-meta {
    font-size: 0.6rem;
  }
  
  .poll-card {
    padding: 12px;
  }
  
  .poll-icon i {
    font-size: 28px;
  }
  
  .poll-title {
    font-size: 0.85rem;
    min-height: 30px;
  }
  
  .poll-stats {
    font-size: 0.65rem;
    gap: 10px;
  }
  
  .vote-now-link {
    font-size: 0.75rem;
  }
  
  .ad-rectangle {
    min-height: 150px;
    padding: 12px;
  }
  
  .ad-content-rect i {
    font-size: 24px;
  }
  
  .ad-content-rect p {
    font-size: 0.7rem;
  }
}

/* ============================================ */
/* ABOUT PAGE - UPDATED (Yellow → White) */
/* ============================================ */

/* Hero Section */
.tax-hero {
  background: linear-gradient(135deg, #4f544d 0%, #36497d 100%);
  padding: 3rem 2rem;
  text-align: center;
  color: white;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  margin-bottom: 1rem;
  margin: 30px;
}

.tax-hero::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

.tax-hero h1 {
  font-weight: 800;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
  font-size: 2.8rem;
}

.tax-hero h1 i {
  color: rgba(255, 255, 255, 0.4);
  margin-right: 10px;
}

.tax-hero p {
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
}

/* About Container */
.about-container {
  margin: 0 auto;
  margin: 30px;
}

/* Story Section */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
  align-items: center;
}

.story-content h2 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.story-content h2 i {
  color: rgba(255, 255, 255, 0.3);
}

.story-content p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.story-image {
  background: linear-gradient(135deg, #2a2a4a, #1a1a3e);
  border-radius: 20px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.image-placeholder i {
  font-size: 80px;
  color: rgba(255, 255, 255, 0.1);
}

/* Mission & Vision */
.mission-vision-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 50px;
}

.mission-card, .vision-card {
  background: rgba(26, 26, 46, 0.85);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s;
}

.mission-card:hover, .vision-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
}

.mission-icon, .vision-icon {
  font-size: 45px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 18px;
}

.mission-card h3, .vision-card h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.mission-card p, .vision-card p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Offerings Section */
.offerings-section {
  margin-bottom: 50px;
}

.offerings-section h2 {
  color: #ffffff;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
}

.offerings-section h2 i {
  color: rgba(255, 255, 255, 0.3);
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.offering-card {
  background: rgba(26, 26, 46, 0.85);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s;
}

.offering-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
}

.offering-icon i {
  font-size: 42px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 15px;
}

.offering-card h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.offering-card p {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  font-size: 0.85rem;
}

/* Why Choose Us */
.why-choose-us {
  margin-bottom: 50px;
}

.why-choose-us h2 {
  color: #ffffff;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
}

.why-choose-us h2 i {
  color: rgba(255, 255, 255, 0.3);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.feature {
  background: rgba(26, 26, 46, 0.85);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
}

.feature-number {
  position: absolute;
  top: -12px;
  left: 20px;
  background: linear-gradient(135deg, #a78bfa, #7b2fff);
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.feature h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-top: 15px;
  margin-bottom: 8px;
  font-weight: 700;
}

.feature p {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  font-size: 0.85rem;
}

/* How It Works */
.how-it-works {
  margin-bottom: 50px;
}

.how-it-works h2 {
  color: #ffffff;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
}

.how-it-works h2 i {
  color: rgba(255, 255, 255, 0.3);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.step {
  text-align: center;
  padding: 0 10px;
}

.step-number {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #a78bfa, #7b2fff);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 12px;
}

.step-icon i {
  font-size: 42px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 12px;
}

.step h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.step p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 50px;
  background: rgba(26, 26, 46, 0.85);
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* Testimonials */
.testimonials-section {
  margin-bottom: 50px;
}

.testimonials-section h2 {
  color: #ffffff;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
}

.testimonials-section h2 i {
  color: rgba(255, 255, 255, 0.3);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.testimonial-card {
  background: rgba(26, 26, 46, 0.85);
  border-radius: 16px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
}

.quote-icon i {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.1);
  margin-bottom: 12px;
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 15px;
  font-style: italic;
  font-size: 0.9rem;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.testimonial-author strong {
  color: #ffffff;
}

.testimonial-author span {
  color: rgba(255, 255, 255, 0.5);
}

/* CTA Section */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 20px;
  padding: 50px 30px;
  margin-bottom: 30px;
}

.cta-section h3 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 25px;
  font-size: 1rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
  font-size: 0.95rem;
  display: inline-block;
}

.cta-btn.primary {
  background: #ffffff;
  color: #1a1a2e;
}

.cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
  text-decoration: none;
  color: #1a1a2e;
}

.cta-btn.secondary {
  background: rgba(255,255,255,0.2);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.15);
}

.cta-btn.secondary:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
  text-decoration: none;
  color: #ffffff;
}

/* ============================================ */
/* RESPONSIVE - ABOUT PAGE */
/* ============================================ */

@media (max-width: 992px) {
  .story-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .mission-vision-section {
    grid-template-columns: 1fr;
  }
  
  .story-image {
    height: 240px;
  }
  
  .offerings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tax-hero h1 {
    font-size: 2.2rem;
  }
  
  .tax-hero {
    padding: 2.5rem 1.5rem;
    margin: 20px;
  }
  
  .about-container {
    margin: 20px;
  }
}

@media (max-width: 768px) {
  .tax-hero {
    padding: 2rem 1.25rem;
    margin: 15px;
  }
  
  .tax-hero h1 {
    font-size: 1.8rem;
  }
  
  .tax-hero p {
    font-size: 0.95rem;
  }
  
  .offerings-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 30px 20px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-section {
    padding: 35px 20px;
  }
  
  .cta-section h3 {
    font-size: 1.3rem;
  }
  
  .mission-card, .vision-card {
    padding: 25px 20px;
  }
  
  .offering-card {
    padding: 20px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .about-container {
    margin: 15px;
  }
}

@media (max-width: 480px) {
  .tax-hero {
    padding: 1.5rem 1rem;
    margin: 10px;
    border-radius: 16px;
  }
  
  .tax-hero h1 {
    font-size: 1.5rem;
  }
  
  .tax-hero h1 i {
    font-size: 1.2rem;
  }
  
  .tax-hero p {
    font-size: 0.85rem;
  }
  
  .story-content h2,
  .offerings-section h2,
  .why-choose-us h2,
  .how-it-works h2,
  .testimonials-section h2 {
    font-size: 1.3rem;
  }
  
  .stats-section {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 25px 15px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-btn {
    text-align: center;
    width: 100%;
  }
  
  .feature-number {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
    top: -10px;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .story-image {
    height: 180px;
  }
  
  .image-placeholder i {
    font-size: 60px;
  }
  
  .about-container {
    margin: 10px;
  }
  
  .mission-card, .vision-card {
    padding: 20px 15px;
  }
  
  .mission-card h3, .vision-card h3 {
    font-size: 1.2rem;
  }
  
  .offering-card {
    padding: 18px 15px;
  }
}

/* Very Small Screens */
@media (max-width: 360px) {
  .tax-hero {
    padding: 1.25rem 0.75rem;
    margin: 8px;
  }
  
  .tax-hero h1 {
    font-size: 1.2rem;
  }
  
  .tax-hero p {
    font-size: 0.8rem;
  }
  
  .story-content h2,
  .offerings-section h2,
  .why-choose-us h2,
  .how-it-works h2,
  .testimonials-section h2 {
    font-size: 1.1rem;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  .cta-section h3 {
    font-size: 1.1rem;
  }
  
  .about-container {
    margin: 8px;
  }
}