/* ==========================================================================
   GoGo Rummy - Modern Mobile-First Stylesheet (style.css)
   Clean, Fast-Loading, 100% Responsive, Pure CSS
   ========================================================================== */

:root {
  --primary-bg: #004d36;
  --primary-gradient: linear-gradient(180deg, #003a29 0%, #006646 35%, #008761 70%, #004d36 100%);
  --card-bg: rgba(0, 38, 26, 0.75);
  --card-bg-solid: #003322;
  --card-border: rgba(255, 255, 255, 0.12);
  --card-border-gold: rgba(245, 158, 11, 0.35);
  --text-main: #ffffff;
  --text-muted: #d1fae5;
  --text-sub: #9ca3af;
  --accent-gold: #fbbf24;
  --accent-gold-dark: #d97706;
  --btn-green: #22c55e;
  --btn-green-hover: #16a34a;
  --btn-green-gradient: linear-gradient(180deg, #34d399 0%, #10b981 50%, #059669 100%);
  --btn-green-shadow: 0 8px 24px rgba(16, 185, 129, 0.45);
  --btn-gold-gradient: linear-gradient(180deg, #fcd34d 0%, #f59e0b 50%, #d97706 100%);
  --badge-bg: rgba(255, 255, 255, 0.08);
  --badge-border: rgba(255, 255, 255, 0.18);
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 840px;
}

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

html {
  font-family: var(--font-sans);
  background-color: #00261a;
  color: var(--text-main);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--primary-gradient);
  min-height: 100vh;
  line-height: 1.65;
  font-size: 15px;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 42, 30, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}

.brand-logo img {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.brand-logo span {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(180deg, #fff 0%, #fef3c7 60%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: none;
  gap: clamp(10px, 1.4vw, 20px);
  align-items: center;
  flex-shrink: 0;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent-gold);
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(180deg, #059669 0%, #047857 50%, #065f46 100%);
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: var(--transition);
  min-height: 44px;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.5);
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  padding: 8px;
}

@media (min-width: 680px) {
  .nav-links {
    display: flex;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* Mobile Dropdown Nav */
.mobile-nav-menu {
  display: none;
  flex-direction: column;
  background: rgba(0, 26, 17, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  gap: 4px;
}

.mobile-nav-menu.open {
  display: flex;
}

.mobile-nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 8px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   Main Container Layout
   ========================================================================== */
.site-main {
  flex: 1;
  width: 100%;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px 40px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 24px;
}

.hero-banner-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  aspect-ratio: 720 / 1400;
}

.hero-banner-wrapper picture,
.hero-banner-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.hero-banner-wrapper:hover img {
  transform: scale(1.02);
}

.hero-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero-badge-live .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ef4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.hero-title {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-title .highlight {
  color: var(--accent-gold);
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 20px;
}

/* ==========================================================================
   Primary Download CTA Button
   ========================================================================== */
.download-action-box {
  max-width: 440px;
  margin: 0 auto 24px;
}

.btn-download-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(180deg, #059669 0%, #047857 50%, #065f46 100%);
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  text-decoration: none;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.8px;
  padding: 16px 28px;
  min-height: 56px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(4, 120, 87, 0.45), inset 0 2px 2px rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-download-main::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 20%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 80%
  );
  transform: rotate(25deg);
  animation: shimmer 3.5s infinite;
}

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

.btn-download-main:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.6);
}

.btn-download-main:active {
  transform: translateY(1px) scale(0.99);
}

.btn-download-main svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ==========================================================================
   3 Feature Badges (Cashback, 24*7 Support, 100% Secure)
   ========================================================================== */
.feature-badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 460px;
  margin: 0 auto 28px;
}

.feature-badge-card {
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  border-radius: var(--radius-md);
  padding: 14px 8px;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition);
}

.feature-badge-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.badge-icon-circle {
  width: 52px;
  height: 52px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  border: 2px solid rgba(52, 211, 153, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34d399;
}

.badge-icon-circle svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.badge-title {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

/* ==========================================================================
   Content Cards & Sections
   ========================================================================== */
.content-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.content-card.highlight-card {
  border-color: var(--card-border-gold);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.4) 0%, rgba(0, 38, 26, 0.8) 100%);
}

.section-heading {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}

.section-heading::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 22px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.section-subheading {
  font-size: 17px;
  font-weight: 700;
  color: var(--accent-gold);
  margin: 18px 0 10px;
}

p {
  color: #e2e8f0;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.7;
}

p:last-child {
  margin-bottom: 0;
}

/* Quick App Specs Table */
.specs-table-wrapper {
  overflow-x: auto;
  margin: 16px 0 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.specs-table th, .specs-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.specs-table th {
  background: rgba(0, 24, 16, 0.85);
  color: var(--accent-gold);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.specs-table td:first-child {
  font-weight: 600;
  color: #ffffff;
  width: 40%;
  background: rgba(0, 30, 20, 0.4);
}

.specs-table td:last-child {
  color: var(--text-muted);
}

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

/* Step-by-step Installation Cards */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 18px 0;
}

.step-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(0, 24, 16, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: var(--transition);
}

.step-item:hover {
  background: rgba(0, 24, 16, 0.8);
  border-color: rgba(52, 211, 153, 0.3);
}

.step-number {
  background: var(--btn-green-gradient);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.4);
}

.step-body h3,
.step-body h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.step-body p {
  font-size: 14px;
  color: #cbd5e1;
  margin-bottom: 0;
}

/* Rummy Card Rules Grid */
.rummy-rules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 16px 0;
}

@media (min-width: 600px) {
  .rummy-rules-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.rule-box {
  background: rgba(0, 24, 16, 0.6);
  border-radius: var(--radius-md);
  padding: 16px;
  border-left: 4px solid var(--accent-gold);
}

.rule-box h3,
.rule-box h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.rule-box p {
  font-size: 13.5px;
  color: #cbd5e1;
  margin-bottom: 0;
}

.card-example {
  display: inline-flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 13px;
  color: #fff;
  margin-top: 6px;
}

/* Pros and Cons Box */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 18px 0;
}

@media (min-width: 600px) {
  .pros-cons-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pros-box, .cons-box {
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pros-box {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
}

.cons-box {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
}

.pros-box h3,
.pros-box h4 {
  color: #34d399;
  font-size: 15.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cons-box h3,
.cons-box h4 {
  color: #f87171;
  font-size: 15.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pros-box ul, .cons-box ul {
  list-style: none;
  font-size: 13.5px;
}

.pros-box li, .cons-box li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pros-box li::before {
  content: '✓';
  color: #34d399;
  font-weight: bold;
}

.cons-box li::before {
  content: '✗';
  color: #f87171;
  font-weight: bold;
}

/* Responsible Gaming Advisory Box */
.warning-box {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-md);
  padding: 18px;
  margin: 20px 0;
}

.warning-box-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.warning-box p {
  font-size: 13.5px;
  color: #fef3c7;
  margin-bottom: 8px;
}

.warning-box p:last-child {
  margin-bottom: 0;
}

.badge-18-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #ef4444;
  color: #ef4444;
  font-weight: 900;
  font-size: 13px;
  background: #fff;
  flex-shrink: 0;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.faq-item {
  background: rgba(0, 24, 16, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 18px;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.faq-chevron {
  width: 18px;
  height: 18px;
  fill: var(--accent-gold);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 18px;
  background: rgba(0, 16, 10, 0.4);
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 18px 16px;
}

.faq-answer p {
  font-size: 14px;
  color: #cbd5e1;
  margin-bottom: 0;
}

/* ==========================================================================
   Author & Slidable Reviews Carousel (Auto-Slidable)
   ========================================================================== */
.reviews-section {
  margin-top: 32px;
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.reviews-header .section-heading {
  margin-bottom: 0;
}

.slider-arrows {
  display: flex;
  gap: 12px;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
  line-height: 1;
  padding: 0;
}

.slider-arrow:hover {
  background: rgba(16, 185, 129, 0.35);
  border-color: #34d399;
  color: #34d399;
  transform: scale(1.05);
}

.reviews-slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  width: 100%;
}

.reviews-slider-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.review-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.author-box {
  display: flex;
  gap: 16px;
  align-items: center;
  background: rgba(0, 20, 14, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.author-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  border: 2px solid var(--accent-gold);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.author-info {
  flex: 1;
}

.review-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}

.author-info h3,
.author-info h4 {
  font-size: 15.5px;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0;
}

.author-info .verified-icon {
  color: #38bdf8;
  font-size: 13.5px;
  font-weight: 600;
}

.star-rating {
  color: #fbbf24;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.star-rating span {
  color: #fef3c7;
  font-size: 12px;
  font-weight: 700;
}

.author-info p {
  font-size: 13.5px;
  color: #cbd5e1;
  margin-bottom: 6px;
  line-height: 1.5;
}

.author-info .update-date {
  font-size: 12px;
  color: #fef08a;
  font-weight: 600;
}

/* Pagination Dots with Accessible 44px Touch Targets */
.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
}

.slider-dot {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: 50%;
}

.slider-dot::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
}

.slider-dot:hover::before {
  background: rgba(255, 255, 255, 0.7);
}

.slider-dot.active::before {
  width: 24px;
  border-radius: 4px;
  background: var(--accent-gold);
  box-shadow: 0 0 8px rgba(251, 191, 36, 0.6);
}

/* ==========================================================================
   Form Styles (Contact Page)
   ========================================================================== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #f1f5f9;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(0, 20, 14, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--btn-green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

.btn-submit {
  background: var(--btn-green-gradient);
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.6);
}

.form-success-message {
  display: none;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.5);
  color: #34d399;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-top: 10px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #002217;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 36px 16px 80px; /* extra bottom padding for floating mobile bar */
  text-align: center;
  color: #94a3b8;
  font-size: 13.5px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 12px;
  margin-bottom: 20px;
}

.footer-nav a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--accent-gold);
}

.footer-disclaimer-text {
  max-width: 680px;
  margin: 0 auto 20px;
  font-size: 12.5px;
  line-height: 1.6;
  color: #cbd5e1;
}

.footer-copy {
  color: #cbd5e1;
  font-size: 13px;
}

/* ==========================================================================
   Floating Mobile Download Bar
   ========================================================================== */
.floating-download-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 34, 23, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
}

.floating-download-bar.show {
  transform: translateY(0);
}

.floating-bar-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-bar-info img {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
}

.floating-bar-text h5,
.floating-bar-text .floating-bar-title {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  display: block;
}

.floating-bar-text p {
  font-size: 11.5px;
  color: #fef08a;
  font-weight: 600;
  margin-bottom: 0;
}

.floating-bar-btn {
  background: linear-gradient(180deg, #059669 0%, #047857 50%, #065f46 100%);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
  font-weight: 800;
  font-size: 13.5px;
  padding: 10px 18px;
  min-height: 44px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

@media (min-width: 768px) {
  .site-footer {
    padding-bottom: 36px;
  }
  .floating-download-bar {
    display: none !important;
  }
}

/* ==========================================================================
   Blog & Article Section Styles
   ========================================================================== */
.blog-header-section {
  text-align: center;
  margin-bottom: 28px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 20px 0 32px;
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.4);
}

.blog-card-thumbnail-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #002217;
}

.blog-card-thumbnail-wrapper picture,
.blog-card-thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-thumbnail-wrapper img {
  transform: scale(1.04);
}

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

.blog-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.blog-category-tag {
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.blog-read-time {
  font-size: 12px;
  color: #94a3b8;
}

.blog-card-title {
  font-size: 16.5px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 8px;
  transition: var(--transition);
}

.blog-card:hover .blog-card-title {
  color: var(--accent-gold);
}

.blog-card-excerpt {
  font-size: 13.5px;
  color: #cbd5e1;
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
}

.blog-card-action {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Single Article Layout */
.article-hero-banner {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  aspect-ratio: 16 / 9;
  background: #002217;
}

.article-hero-banner picture,
.article-hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  font-size: 13px;
  color: #94a3b8;
}

.article-author-badge {
  color: var(--accent-gold);
  font-weight: 700;
}

