/* =============================================
   3Patti Blue 2027 - Main Stylesheet
   ============================================= */

:root {
  --blue-dark: #0a1628;
  --blue-primary: #1a3c8f;
  --blue-bright: #1e6bdc;
  --blue-light: #4d9ef7;
  --gold: #f5c518;
  --gold-dark: #d4a01a;
  --white: #ffffff;
  --gray-light: #f4f7ff;
  --gray-mid: #b0bcd4;
  --gray-dark: #4a5568;
  --text-dark: #0d1b2a;
  --text-body: #2d3748;
  --red-accent: #e53e3e;
  --green-accent: #38a169;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(10,22,40,0.18);
  --shadow-card: 0 4px 20px rgba(10,22,40,0.12);
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: var(--blue-bright); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }

h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--gray-light);
}

.section-dark {
  background: var(--blue-dark);
  color: var(--white);
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-dark);
  font-size: 1.05rem;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-dark .section-title { color: var(--white); }
.section-dark .section-subtitle { color: var(--gray-mid); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--blue-dark);
  box-shadow: 0 4px 18px rgba(245,197,24,0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(245,197,24,0.5);
  color: var(--blue-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--blue-dark);
}

.btn-blue {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-primary));
  color: var(--white);
  box-shadow: 0 4px 18px rgba(30,107,220,0.35);
}

.btn-blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(30,107,220,0.45);
  color: var(--white);
}

.badge {
  display: inline-block;
  background: rgba(245,197,24,0.15);
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  border-radius: 50px;
  padding: 4px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ======= HEADER / NAV ======= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

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

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

.logo img {
  height: 44px;
  width: auto;
}

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

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

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  color: var(--gray-mid);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  text-decoration: none;
}

.nav a:hover, .nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav .btn-primary {
  padding: 9px 22px;
  font-size: 0.9rem;
  color: var(--blue-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 4px;
  transition: var(--transition);
}

/* ======= HERO ======= */
.hero {
  padding: 140px 0 90px;
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0f2554 50%, #0a1628 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(30,107,220,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,197,24,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.15;
}

.hero-content h1 span { color: var(--gold); }

.hero-content p {
  color: var(--gray-mid);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

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

.hero-stat .num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
}

.hero-stat .label {
  font-size: 0.8rem;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-image {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-phone {
  width: 100%;
  max-width: 380px;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  border: 3px solid rgba(255,255,255,0.12);
}

.hero-badge-float {
  position: absolute;
  background: var(--blue-dark);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
}

.hero-badge-float.top-right {
  top: 20px;
  right: -10px;
}

.hero-badge-float.bottom-left {
  bottom: 40px;
  left: -10px;
}

.hero-badge-float .icon { font-size: 1.4rem; }

.hero-badge-float .info .val {
  font-weight: 800;
  color: var(--gold);
  font-size: 0.95rem;
}

.hero-badge-float .info .desc {
  font-size: 0.72rem;
  color: var(--gray-mid);
}

/* ======= FEATURES ======= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(10,22,40,0.07);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--blue-light);
}

.feature-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-primary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(30,107,220,0.3);
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--gray-dark);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ======= SCREENSHOTS ======= */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.screenshot-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 2px solid rgba(30,107,220,0.15);
  transition: var(--transition);
  position: relative;
}

.screenshot-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.screenshot-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.screenshot-caption {
  padding: 14px 16px;
  background: var(--blue-dark);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}

/* ======= HOW TO DOWNLOAD ======= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: steps;
}

.step-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  position: relative;
  border: 1px solid rgba(30,107,220,0.1);
}

.step-card::before {
  counter-increment: steps;
  content: "0" counter(steps);
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--blue-dark);
  font-weight: 900;
  font-size: 0.85rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  margin-top: 10px;
}

.step-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--gray-dark);
}

/* ======= WHY CHOOSE ======= */
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.why-image img {
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.why-content h2 {
  font-size: 1.9rem;
  margin-bottom: 20px;
}

.why-list {
  list-style: none;
  margin: 24px 0 32px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(10,22,40,0.07);
  font-size: 0.95rem;
  color: var(--text-body);
}

.why-list li:last-child { border-bottom: none; }

.why-list .check {
  width: 22px; height: 22px;
  background: var(--green-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ======= GAME MODES ======= */
.modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mode-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(26,60,143,0.9), rgba(10,22,40,0.95));
  border: 1px solid rgba(255,255,255,0.1);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.mode-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.mode-icon { font-size: 2.6rem; margin-bottom: 14px; }

.mode-card h3 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.mode-card p {
  color: var(--gray-mid);
  font-size: 0.88rem;
}

/* ======= REVIEWS ======= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(10,22,40,0.07);
  transition: var(--transition);
  position: relative;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 20px;
  font-size: 5rem;
  color: rgba(30,107,220,0.08);
  font-family: Georgia, serif;
  line-height: 1;
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  color: var(--gray-dark);
  font-size: 0.92rem;
  margin-bottom: 20px;
  line-height: 1.7;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blue-light);
  background: var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.reviewer-avatar svg {
  width: 100%;
  height: 100%;
}

.reviewer-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.reviewer-meta {
  font-size: 0.78rem;
  color: var(--gray-mid);
}

/* ======= FAQ ======= */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 14px;
  border: 1px solid rgba(10,22,40,0.09);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(10,22,40,0.06);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  font-family: inherit;
}

.faq-question:hover { background: var(--gray-light); }
.faq-question.active { color: var(--blue-bright); }

.faq-icon {
  width: 26px; height: 26px;
  background: var(--blue-bright);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
  font-weight: 400;
}

.faq-question.active .faq-icon {
  background: var(--gold);
  color: var(--blue-dark);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 22px;
  color: var(--gray-dark);
  font-size: 0.93rem;
  line-height: 1.75;
  border-top: 1px solid rgba(10,22,40,0.06);
}

.faq-answer-inner ul {
  margin: 10px 0;
  padding-left: 20px;
}

.faq-answer-inner li { margin-bottom: 6px; }

/* ======= CONCLUSION ======= */
.conclusion-inner {
  max-width: 860px;
  margin: 0 auto;
}

.conclusion-inner h2 {
  font-size: 1.9rem;
  margin-bottom: 20px;
  color: var(--white);
}

.conclusion-inner p {
  color: var(--gray-mid);
  font-size: 0.97rem;
  margin-bottom: 18px;
  line-height: 1.8;
}

.conclusion-cta {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ======= DOWNLOAD PAGE HERO ======= */
.download-hero {
  padding: 130px 0 80px;
  background: linear-gradient(135deg, var(--blue-dark), #0f2554);
  text-align: center;
}

.download-hero h1 {
  font-size: 2.6rem;
  color: var(--white);
  margin-bottom: 16px;
}

.download-hero p {
  color: var(--gray-mid);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 36px;
}

.download-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 40px;
  max-width: 520px;
  margin: 40px auto 0;
  text-align: center;
}

.download-card img {
  width: 100px;
  height: 100px;
  border-radius: 22px;
  margin: 0 auto 20px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
}

.download-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.download-card p {
  color: var(--gray-mid);
  font-size: 0.88rem;
  margin-bottom: 28px;
}

.download-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.download-meta-item {
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 12px;
}

.download-meta-item .val {
  font-weight: 700;
  color: var(--gold);
  font-size: 0.95rem;
}

.download-meta-item .key {
  font-size: 0.75rem;
  color: var(--gray-mid);
}

/* ======= HOW TO PLAY PAGE ======= */
.page-hero {
  padding: 130px 0 70px;
  background: linear-gradient(135deg, var(--blue-dark), #0f2554);
  text-align: center;
}

.page-hero h1 {
  font-size: 2.6rem;
  color: var(--white);
  margin-bottom: 14px;
}

.page-hero p {
  color: var(--gray-mid);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.article-body {
  max-width: 860px;
  margin: 0 auto;
}

.article-body h2 {
  font-size: 1.6rem;
  margin: 40px 0 14px;
  color: var(--blue-primary);
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(30,107,220,0.15);
}

.article-body h3 {
  font-size: 1.2rem;
  margin: 28px 0 10px;
  color: var(--text-dark);
}

.article-body p {
  margin-bottom: 16px;
  color: var(--text-body);
  font-size: 0.97rem;
  line-height: 1.8;
}

.article-body ul, .article-body ol {
  margin: 14px 0 20px 22px;
}

.article-body li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
}

.article-body .tip-box {
  background: linear-gradient(135deg, rgba(30,107,220,0.08), rgba(77,158,247,0.08));
  border-left: 4px solid var(--blue-bright);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin: 24px 0;
}

.article-body .tip-box strong {
  color: var(--blue-bright);
  display: block;
  margin-bottom: 6px;
}

.hand-rank-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.92rem;
}

.hand-rank-table th {
  background: var(--blue-primary);
  color: white;
  padding: 12px 16px;
  text-align: left;
}

.hand-rank-table td {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(10,22,40,0.08);
}

.hand-rank-table tr:nth-child(even) td {
  background: var(--gray-light);
}

/* ======= ABOUT PAGE ======= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.about-stat-card {
  background: var(--blue-dark);
  color: white;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.about-stat-card .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}

.about-stat-card .label {
  font-size: 0.82rem;
  color: var(--gray-mid);
  margin-top: 4px;
}

/* ======= FOOTER ======= */
.footer {
  background: #06101e;
  color: var(--gray-mid);
  padding: 60px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .logo-text {
  font-size: 1.2rem;
  margin-bottom: 14px;
  display: block;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--gray-mid);
  font-size: 0.88rem;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--gray-mid);
}

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

.disclaimer {
  background: rgba(229,62,62,0.08);
  border: 1px solid rgba(229,62,62,0.2);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 0.82rem;
  color: #fc8181;
  margin-top: 24px;
  line-height: 1.7;
}

/* ======= STICKY DOWNLOAD BAR ======= */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--blue-dark);
  border-top: 2px solid var(--gold);
  z-index: 999;
  padding: 14px 0;
  display: none;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.sticky-bar.show {
  display: block;
  transform: translateY(0);
}

.sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-bar-text {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
}

.sticky-bar-text span { color: var(--gold); }

/* ======= BACK TO TOP ======= */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 44px; height: 44px;
  background: var(--blue-bright);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(30,107,220,0.4);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  font-size: 1.1rem;
  z-index: 900;
  border: none;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-4px);
  background: var(--gold);
  color: var(--blue-dark);
}

/* ======= BREADCRUMB ======= */
.breadcrumb {
  padding: 14px 0;
  font-size: 0.82rem;
  color: var(--gray-mid);
}

.breadcrumb a { color: var(--gray-mid); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 6px; }

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-title { font-size: 1.7rem; }

  .nav { display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: rgba(10,22,40,0.98); flex-direction: column; gap: 0; padding: 20px; overflow-y: auto; }
  .nav.open { display: flex; }
  .nav a { padding: 14px 16px; font-size: 1rem; border-radius: 10px; width: 100%; }
  .nav .btn-primary { margin-top: 10px; justify-content: center; }
  .nav-toggle { display: flex; }

  .hero { padding: 110px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1rem; margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .screenshots-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .modes-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 30px; }
  .about-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .download-meta { grid-template-columns: 1fr; }

  .sticky-bar-inner { flex-direction: column; gap: 10px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.9rem; }
  .btn { padding: 12px 22px; font-size: 0.92rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .conclusion-cta { flex-direction: column; }
}

/* ======= ANIMATIONS ======= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.pulse-btn { animation: pulse 2.5s infinite; }

/* ======= RATING BAR ======= */
.rating-overview {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--blue-dark);
  border-radius: 16px;
  padding: 30px 36px;
  margin-bottom: 40px;
}

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

.rating-big .num {
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.rating-big .out-of { color: var(--gray-mid); font-size: 0.88rem; }

.rating-bars { flex: 1; }

.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.rating-label { color: var(--gray-mid); font-size: 0.82rem; width: 30px; }

.rating-track {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  height: 8px;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 50px;
}

.rating-count { color: var(--gray-mid); font-size: 0.78rem; width: 28px; text-align: right; }

/* ======= NOTICE / INFO BOX ======= */
.info-box {
  background: linear-gradient(135deg, rgba(26,60,143,0.08), rgba(30,107,220,0.06));
  border: 1px solid rgba(30,107,220,0.2);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.75;
}
