/* ==========================================================================
   ARY PLUS - OFFICIAL STYLESHEET
   Colors: Dark Backgrounds (#0B0E14, #121620), Neon Green (#6BFE12), Crimson Red (#C3161C)
   ========================================================================== */

:root {
  --bg-dark: #0B0E14;
  --bg-card: rgba(18, 22, 32, 0.75);
  --bg-card-hover: rgba(26, 32, 46, 0.9);
  --bg-nav: rgba(11, 14, 20, 0.85);
  
  --primary-green: #6BFE12;
  --primary-green-glow: rgba(107, 254, 18, 0.35);
  --primary-green-dark: #52cf09;
  
  --accent-red: #C3161C;
  --accent-red-bright: #F7020A;
  
  --text-main: #FFFFFF;
  --text-muted: #A0AEC0;
  --text-dark: #718096;
  
  --border-glass: rgba(255, 255, 255, 0.1);
  --border-green: rgba(107, 254, 18, 0.3);
  
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

input, textarea {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.font-en {
  font-family: var(--font-family);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Ambient Glow Backgrounds */
.glow-bg {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
}

.glow-green {
  top: -100px;
  left: -100px;
  width: 450px;
  height: 450px;
  background: var(--primary-green);
}

.glow-red {
  top: 30%;
  right: -150px;
  width: 500px;
  height: 500px;
  background: var(--accent-red);
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Icons */
.icon-sm { width: 18px; height: 18px; }
.icon-md { width: 24px; height: 24px; }

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 6px;
  filter: drop-shadow(0 0 6px rgba(107, 254, 18, 0.4));
  transition: transform 0.3s ease;
}

.logo:hover .brand-icon {
  transform: scale(1.08);
}

.hero-brand-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
  vertical-align: middle;
  margin-right: 10px;
  filter: drop-shadow(0 0 10px rgba(107, 254, 18, 0.5));
  display: inline-block;
}

.logo-text {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-main);
}

.logo-plus {
  color: var(--primary-green);
  text-shadow: 0 0 12px var(--primary-green-glow);
}

.logo-badge {
  background: var(--accent-red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 1px;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-green);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary-green);
  transition: var(--transition);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--primary-green);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Header Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

.btn-xs {
  padding: 6px 14px;
  font-size: 0.8rem;
  width: 100%;
}

.btn-inline {
  width: auto;
  padding: 4px 12px;
  font-size: 0.75rem;
}

.btn-primary {
  background: var(--primary-green);
  color: #000;
}

.btn-primary:hover {
  background: #7fff2a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--primary-green-glow);
}

.btn-glow {
  box-shadow: 0 0 15px var(--primary-green-glow);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 8px;
}

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  position: absolute;
  top: 76px;
  left: 0;
  width: 100%;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-glass);
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 10px;
  border-radius: var(--radius-sm);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--primary-green);
  background: rgba(107, 254, 18, 0.08);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  z-index: 10;
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(195, 22, 28, 0.15);
  border: 1px solid rgba(195, 22, 28, 0.4);
  color: #ff4d4d;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.pulsing-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-red-bright);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-red-bright);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-green) 0%, #a4dc12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 580px;
}

/* Download Buttons Group */
.download-buttons-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn-store:hover {
  background: rgba(30, 38, 54, 0.9);
  border-color: var(--primary-green);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px var(--primary-green-glow);
}

.store-icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.btn-playstore .store-icon { color: #3ddc84; }
.btn-appstore .store-icon { color: #fff; }

.store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.store-main {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-green);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 28px;
  background: var(--border-glass);
}

/* Visual Card Glass */
.visual-card-glass {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(107, 254, 18, 0.1);
  backdrop-filter: blur(20px);
}

.card-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--primary-green);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 12px var(--primary-green-glow);
}

.media-preview {
  position: relative;
  height: 320px;
  background: url('images/Poster-Image-280x400-With-Logo_1786210266379.webp') center top/cover no-repeat;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  cursor: pointer;
}

.play-button-glow {
  width: 64px;
  height: 64px;
  background: var(--primary-green);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px var(--primary-green);
  transition: var(--transition);
}

.play-button-glow svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}

.media-preview:hover .play-button-glow {
  transform: scale(1.15);
}

.media-info-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  text-align: left;
}

.media-tag {
  font-size: 0.75rem;
  color: var(--primary-green);
  font-weight: 700;
  text-transform: uppercase;
}

.media-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 2px 0 4px;
}

.media-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.features-mini-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mini-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.mini-feature svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-green);
}

/* ==========================================================================
   SHOWCASE SECTION (DRAMAS & MOVIES CATALOG)
   ========================================================================== */
.showcase-section {
  padding: 60px 0;
}

.flex-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 20px;
}

.section-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-green);
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
}

/* Category Filter Tabs */
.category-tabs {
  display: flex;
  gap: 10px;
  background: var(--bg-card);
  padding: 6px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--primary-green);
  color: #000;
}

/* Catalog Grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.drama-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.drama-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-green);
  box-shadow: 0 16px 36px rgba(0,0,0,0.6), 0 0 20px rgba(107, 254, 18, 0.15);
}

.card-poster {
  position: relative;
  height: 340px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--border-glass);
}

.poster-tamasha {
  background-image: url('images/Poster-Image-280x400-With-Logo_1786210266379.webp');
}
.poster-kabhi {
  background-image: url('images/Kabi_main_kabhi_tum_1767858261882.webp');
}
.poster-dar-e-nijaat {
  background-image: url('images/280X400_1784120968010.webp');
}
.poster-bas-tera-saath {
  background-image: url('images/Poster-Image-280x400-With-Logo_1776706422547.webp');
}
.poster-main-tera {
  background-image: url('images/Poster-Image-280x400-With-Logo_1783347934296.webp');
}
.poster-izzat {
  background-image: url('images/280x400_1789064832518.webp');
}
.poster-bulbulay {
  background-image: url('images/280x400_1779817255707.webp');
}

.badge-hd {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.75);
  border: 1px solid var(--border-glass);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.badge-live {
  background: var(--accent-red);
  color: #fff;
  border-color: var(--accent-red-bright);
}

.badge-rating {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(236, 186, 18, 0.2);
  border: 1px solid rgba(236, 186, 18, 0.4);
  color: #ecba12;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 14, 20, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  cursor: pointer;
}

.drama-card:hover .card-overlay {
  opacity: 1;
}

.play-btn-circle {
  width: 52px;
  height: 52px;
  background: var(--primary-green);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--primary-green);
}

.play-btn-circle svg {
  width: 26px;
  height: 26px;
  margin-left: 2px;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.genre-tag {
  font-size: 0.75rem;
  color: var(--primary-green);
  font-weight: 600;
  text-transform: uppercase;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 4px 0 8px;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex: 1;
}

.card-footer-btns {
  margin-top: auto;
}

/* ==========================================================================
   ARTICLE BODY & CUSTOM USER CONTENT STYLES
   ========================================================================== */
.article-body h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 44px 0 16px;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 10px;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 28px 0 12px;
}

.article-body p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

/* Tables */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 24px 0 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
}

.styled-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.styled-table th {
  background: rgba(107, 254, 18, 0.1);
  color: var(--primary-green);
  font-weight: 700;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-glass);
}

.styled-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-glass);
  color: var(--text-muted);
}

.styled-table tr:last-child td {
  border-bottom: none;
}

.styled-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.styled-table strong {
  color: #fff;
}

/* Lists */
.styled-list {
  list-style: none;
  margin: 16px 0 24px;
}

.styled-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 1rem;
}

.styled-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-green);
  font-weight: bold;
}

.styled-steps {
  list-style: none;
  margin: 16px 0 20px;
}

.styled-steps li {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.styled-steps strong {
  color: var(--primary-green);
}

/* Steps Box & Trouble Box */
.steps-box, .trouble-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  padding: 24px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.trouble-box {
  border-left: 4px solid var(--accent-red);
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 36px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  border-color: var(--border-green);
  background: rgba(18, 22, 32, 0.9);
}

.faq-question {
  padding: 18px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--primary-green);
  transition: var(--transition);
}

.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   REDIRECT MODAL OVERLAY
   ========================================================================== */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.active {
  display: flex;
  animation: fadeIn 0.3s ease-out;
}

.modal-card {
  position: relative;
  background: var(--bg-dark);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(107, 254, 18, 0.2);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

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

.modal-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

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

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.btn-store-modal {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: #fff;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
}

.btn-store-modal:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-green);
}

.modal-sub {
  font-size: 0.8rem;
  color: var(--text-dark);
}

/* ==========================================================================
   CUSTOM CONTENT BOX (USER HOME SECTION)
   ========================================================================== */
.home-custom-container {
  padding: 40px 0 80px;
}

.custom-content-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px;
  min-height: 250px;
}

/* ==========================================================================
   GENERIC PAGE STYLES (ABOUT, CONTACT, LEGAL)
   ========================================================================== */
.main-content {
  flex: 1;
  position: relative;
  z-index: 10;
}

.page-section {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.page-section.active {
  display: block;
}

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

.page-wrapper {
  padding: 60px 20px 80px;
}

.page-header {
  margin-bottom: 40px;
}

.page-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.content-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 48px;
  backdrop-filter: blur(10px);
}

/* Policy Card Styling */
.policy-card h2 {
  font-size: 1.5rem;
  color: var(--primary-green);
  margin: 32px 0 12px;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.policy-card ul {
  margin: 0 0 24px 20px;
  list-style: disc;
  color: var(--text-muted);
}

.policy-card li {
  margin-bottom: 8px;
}

.link-green {
  color: var(--primary-green);
  text-decoration: underline;
}

/* About Grid */
.about-text h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.about-text h3 {
  font-size: 1.4rem;
  color: var(--primary-green);
  margin: 32px 0 12px;
}

.highlights-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.highlight-item {
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  padding: 20px;
  border-radius: var(--radius-md);
}

.h-icon {
  font-size: 2rem;
}

.highlight-item h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.highlight-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  display: flex;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 28px;
  border-radius: var(--radius-md);
}

.info-icon {
  font-size: 2rem;
}

.info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

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

.info-sub {
  font-size: 0.8rem;
  color: var(--text-dark);
}

/* Contact Form */
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.contact-form-card h2 {
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.form-control {
  width: 100%;
  background: rgba(11, 14, 20, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 12px var(--primary-green-glow);
}

.btn-block {
  width: 100%;
}

.form-response-alert {
  margin-top: 20px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(107, 254, 18, 0.15);
  border: 1px solid var(--primary-green);
  color: var(--primary-green);
  font-weight: 600;
  text-align: center;
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */
.site-footer {
  background: #07090D;
  border-top: 1px solid var(--border-glass);
  padding: 60px 0 30px;
  position: relative;
  z-index: 10;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 16px 0 20px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.footer-socials a:hover {
  color: var(--primary-green);
  border-color: var(--primary-green);
  transform: translateY(-3px);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
}

.footer-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary-green);
}

.footer-store-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-store-sm {
  padding: 10px 16px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 30px;
  text-align: center;
}

.official-notice {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.copyright-text {
  font-size: 0.8rem;
  color: var(--text-dark);
}

/* ==========================================================================
   PROMO BANNER SECTION
   ========================================================================== */
.banner-section {
  padding: 30px 0 10px 0;
  position: relative;
  z-index: 10;
}

.banner-card-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(107, 254, 18, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(107, 254, 18, 0.15);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  background: var(--bg-card);
}

.banner-card-wrapper:hover {
  transform: translateY(-4px);
  border-color: var(--primary-green);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(107, 254, 18, 0.35);
}

.banner-link {
  display: block;
  width: 100%;
}

.promo-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 19px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.6rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .content-card, .custom-content-box {
    padding: 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .download-buttons-group {
    flex-direction: column;
  }

  .btn-store {
    width: 100%;
    justify-content: center;
  }

  .category-tabs {
    overflow-x: auto;
    width: 100%;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }
}
