* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
}

.top-nav {
  background: #ffffff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  padding: 12px 6px;
  display: inline-block;
}

.nav-menu a.active {
  color: #1a73e8;
  font-weight: 700;
  border-bottom: 2px solid #1a73e8;
}

.nav-menu li:hover > a {
  color: #1a73e8;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  list-style: none;
  padding: 10px 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  min-width: 220px;
  border-radius: 6px;
  z-index: 999;
}

.dropdown-menu li a {
  display: block;
  padding: 8px 18px;
  font-weight: 400;
  color: #333;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

/* HERO */
.hero-expanded {
  padding: 60px 10%;
}

.hero-badge {
  display: inline-block;
  color: #000000;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 2rem;
  font-weight: 600;
}

.hero-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.hero-header {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 25px;
}

.hero-title {
  flex: 1;
}

/* Image positioning */
.hero-header .hero-image {
  flex-shrink: 0;
}

.hero-header .hero-image img {
  max-width: 300px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  border-radius: 70px;
}

.hero-expanded h1 {
  font-size: 3rem;
  line-height: 1.15;
  text-align: center;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 2.15rem;
  font-weight: 600;
  color: #444;
  text-align: center;
  margin-bottom: 22px;
}

.play-badge {
  display: inline-block;
  margin-top: 15px;
}

.play-badge img {
  height: 60px; /* adjust as needed */
  width: auto;
}

/* CTA */
.cta {
  display: inline-block;
  background: #1a73e8;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.cta:hover {
  background: #155cc0;
}

/* SECTIONS */
.section {
  padding: 60px 10%;
}

.section.light {
  background: #f5f7fa;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 25px;
}

.center {
  text-align: center;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.feature {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

/* DESKTOP CAROUSEL */
.carousel {
  position: relative;
  overflow: visible;
  width: 100%;
  padding-top: 30px;
}

.carousel-track {
  display: flex;
  align-items: center;
  transition: transform 0.6s ease;
  will-change: transform;
}

.carousel-item {
  position: relative;
  margin: 0 15px;
  flex-shrink: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.carousel-item img {
  display: block;
  width: 240px;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
  transform: scale(.95);
  opacity: 1;
}

/* Active slide */
.carousel-item.active {
  z-index: 3;
}

/* Phone frame */
.carousel-item.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: -6px;
  right: -6px;
  bottom: -12px;
  border-radius: 28px;
  background: linear-gradient(180deg, #1c1c1c, #000);
  box-shadow:
    0 12px 35px rgba(0,0,0,0.25),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  z-index: -1;
}

/* Notch / screen hint */
.carousel-item.active::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 5px;
  border-radius: 0 0 6px 6px;
  background: #111;
  opacity: 0.5;
}

/* Depth levels */
.carousel-item.depth-1 img {
  transform: scale(0.85);
  opacity: 0.25;
}

.carousel-item.depth-2 img {
  transform: scale(0.75);
  opacity: 0.18;
}

/* Dots */
.dots {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.dots span {
  width: 8px;
  height: 8px;
  background: #cfcfcf;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
}

.dots span.active {
  background: #1a73e8;
}


/* NAV BUTTONS */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  font-size: 1.6rem;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.nav.prev {
  left: -18px;
}

.nav.next {
  right: -18px;
}

.nav:hover {
  background: #1a73e8;
  color: white;
}

/* MOBILE TWEAK
@media (max-width: 768px) {
  .slideshow {
    max-width: 220px;
  }
}*/

/* TRUST / AUTHORITY SECTION */
.section.light {
  background: linear-gradient(180deg, #f5f7fa 0%, #eef2f7 100%);
}

.section.light h2 {
  text-align: center;
  font-size: 2.1rem;
  margin-bottom: 18px;
}

.section.light .center {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #444;
}

.features {
  margin-top: 40px;
}

.feature {
  background: #ffffff;
  padding: 26px 22px;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-top: 4px solid #1a73e8;
}

.feature h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.feature p {
  font-size: 0.98rem;
  color: #555;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

/* CTA SECTION – STRONG FINISH */
.cta-section {
  background: linear-gradient(135deg, #1a73e8, #0f5bd8);
  color: white;
  padding: 70px 10%;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.05rem;
  opacity: 0.95;
  max-width: 680px;
  margin: 0 auto 30px;
}

.cta-section .cta {
  background: #ffffff;
  color: #1a73e8;
  font-size: 1.05rem;
  padding: 16px 34px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-section .cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 45px rgba(0,0,0,0.35);
}


.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.review-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  font-style: italic;
  position: relative;
}

.review-card span {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  font-style: normal;
  color: #333;
}

.stars {
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: #f5c518;
  text-shadow:
    0 1px 1px rgba(0,0,0,0.15),
    0 0 6px rgba(245,197,24,0.35);
  user-select: none;
}

.rating-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 1rem;
  color: #333;
}

.rating-stars {
  color: #f5c518;
  letter-spacing: 2px;
  font-size: 1.25rem;
  text-shadow:
    0 1px 1px rgba(0,0,0,0.15),
    0 0 6px rgba(245,197,24,0.35);
}

.rating-score {
  font-size: 1.05rem;
}

.rating-count {
  font-size: 0.95rem;
  color: #666;
}


/* FOOTER */
footer {
  text-align: center;
  padding: 25px;
  font-size: 0.9rem;
  background: #f5f7fa;
}

footer a {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
}

footer a:hover {
  text-decoration: underline;
}

/* FAQ */
#faq h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.faq-item {
  margin-bottom: 20px;
  padding: 20px 22px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-item h3 {
  font-size: 1.15rem;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.faq-item h3::after {
  content: '+';
  position: absolute;
  right: 0;
  font-weight: bold;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active h3::after {
  content: '−';
}

.faq-item p {
  font-size: 0.98rem;
  color: #555;
  margin-top: 10px;
  display: none;
}

.faq-item.active p {
  display: block;
}

/* SCROLL REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Optional variations */
.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-zoom {
  transform: scale(0.95);
}

/* HERO ENTRANCE ANIMATION */
.hero-animate {
  overflow: hidden;
}

.hero-fade,
.hero-slide {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-slide {
  transform: translateY(45px);
}

.delay-2 {
  animation-delay: 0.15s;
}

.delay-3 {
  animation-delay: 0.3s;
}

/* =========================
   GAME PLAN ARTICLE STYLES
   ========================= */

#game-plan {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px 80px;
}

/* Headings */
#game-plan h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  text-align: center;
}

#game-plan h2 {
  font-size: 1.9rem;
  margin: 50px 0 20px;
  padding-bottom: 8px;
  border-bottom: 3px solid #1a73e8;
}

#game-plan h3 {
  font-size: 1.35rem;
  margin-top: 35px;
  margin-bottom: 12px;
  color: #1a73e8;
}

/* Paragraphs */
#game-plan p {
  font-size: 1.02rem;
  margin-bottom: 18px;
  color: #333;
}

/* Lists */
#game-plan ul {
  margin: 15px 0 25px 20px;
}

#game-plan li {
  margin-bottom: 8px;
  line-height: 1.55;
}

/* Game Plan Table */
#game-plan table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0 50px;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  border-radius: 10px;
  overflow: hidden;
}

#game-plan th {
  background: #1a73e8;
  color: #ffffff;
  padding: 14px;
  text-align: left;
  font-size: 0.95rem;
}

#game-plan td {
  padding: 14px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
  font-size: 0.95rem;
}

#game-plan tr:last-child td {
  border-bottom: none;
}

#game-plan tr:hover {
  background: #f5f7fa;
}

/* Key Tactical Rule Highlight */
#game-plan h2:last-of-type + p {
  background: linear-gradient(135deg, #e8f0fe, #f5f9ff);
  padding: 22px;
  border-left: 6px solid #1a73e8;
  border-radius: 10px;
  font-weight: 600;
  color: #1a1a1a;
}


/* RESPONSIVE */
@media (max-width: 768px) {

  body {
    font-size: 15px;
  }

  .section,
  .hero-expanded {
    padding: 40px 6%;
  }

}

@media (max-width: 768px) {

  .hero-header {
    flex-direction: column;
    gap: 20px;
  }

  .hero-badge {
    font-size: 1.1rem;
    padding: 6px 12px;
  }

  .hero-badge-icon {
    width: 32px;
    height: 32px;
  }

  .hero-expanded h1 {
    font-size: 1.9rem;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .hero-sub {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .hero-header .hero-image img {
    max-width: 220px;
    border-radius: 40px;
  }

  .play-badge img {
    height: 56px;
  }

}

.hero-image img {
  opacity: 0;
  transform: scale(0.92) translateY(20px);
  animation: heroImageIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.2s;
}

@media (max-width: 768px) {

  .features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature {
    padding: 18px 16px;
    border-radius: 14px;
  }

  .feature h3 {
    font-size: 1.05rem;
  }

  .feature p {
    font-size: 0.95rem;
    line-height: 1.45;
  }

}

@media (max-width: 768px) {

  .carousel-item img {
    width: 260px;
    border-radius: 22px;
  }

  .carousel-item.depth-1,
  .carousel-item.depth-2 {
    display: none;
  }

  .dots span {
    width: 10px;
    height: 10px;
  }

}

@media (max-width: 768px) {

  .reviews {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .review-card {
    min-width: 85%;
    scroll-snap-align: start;
    padding: 18px;
  }

}
@media (max-width: 768px) {

  .cta-section {
    padding: 50px 6%;
  }

  .cta-section h2 {
    font-size: 1.7rem;
    line-height: 1.3;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .cta-section .cta {
    width: 100%;
    max-width: 320px;
    padding: 16px 0;
    font-size: 1.05rem;
  }

}
@media (hover: none) {
  .feature:hover,
  .cta-section .cta:hover {
    transform: none;
    box-shadow: none;
  }
}

@media (max-width: 768px) {
  .faq-item {
    padding: 16px 14px;
  }

  #faq h2 {
    font-size: 1.8rem;
  }

  .faq-item h3 {
    font-size: 1.05rem;
  }

  .faq-item p {
    font-size: 0.95rem;
  }
}

/* =========================
   ABOUT PAGE
   ========================= */

.about-hero {
  background: #0f172a;
  color: #ffffff;
  padding: 80px 10% 70px;
  text-align: center;
}

.about-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 720px;
  margin: 0 auto;
  opacity: 0.95;
}

.about-container {
  max-width: 900px;
  margin: 60px auto 80px;
  padding: 0 20px;
}

.about-section {
  margin-bottom: 50px;
}

.about-section h2 {
  font-size: 1.9rem;
  margin-bottom: 15px;
  padding-bottom: 6px;
  border-bottom: 3px solid #1a73e8;
}

.about-section p {
  font-size: 1.02rem;
  color: #333;
}

.about-values {
  list-style: none;
  padding-left: 0;
  margin-top: 18px;
}

.about-values li {
  margin-bottom: 12px;
  font-size: 1rem;
  padding-left: 22px;
  position: relative;
}

.about-values li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1a73e8;
  font-size: 1.4rem;
  line-height: 1;
}

.related-articles {
  padding: 60px 20px;
  background: #f9f9f9;
}

.related-articles h2 {
  text-align: center;
  margin-bottom: 30px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.related-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.related-card:hover {
  transform: translateY(-5px);
}

.related-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.related-card a {
  text-decoration: none;
  color: #111;
}

.related-card a:hover {
  text-decoration: underline;
}

.related-card p {
  font-size: 0.95rem;
  color: #555;
}

.contact-form {
  max-width: 650px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form .form-group label {
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: border 0.25s ease, box-shadow 0.25s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: #1a73e8;
  box-shadow: 0 0 8px rgba(26, 115, 232, 0.3);
}

.contact-info {
  text-align: center;
  margin-top: 50px;
}

.contact-info h2 {
  font-size: 1.9rem;
  margin-bottom: 12px;
  color: #1a73e8;
}

.contact-info p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 10px;
}

.social-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0;
}

.social-links li a {
  text-decoration: none;
  font-weight: 600;
  color: #1a73e8;
  transition: color 0.25s ease;
}

.social-links li a:hover {
  color: #155cc0;
  text-decoration: underline;
}


/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-fade,
  .hero-slide,
  .hero-image img {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageIn {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background: #ffffff;
    display: none;
    padding: 15px 0;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
  }

  .nav-menu li:hover .dropdown-menu {
    position: relative;
    top: 0;
    box-shadow: none;
  }

  .dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .dropdown > a::after {
  content: "▾";
  font-size: 0.9rem;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.dropdown.active > a::after {
  transform: rotate(180deg);
}


  .dropdown-menu {
    display: none;
    position: relative;
    top: 0;
    padding-left: 0;
  }

  .dropdown-menu li a {
    padding: 10px 0;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 768px) {

  #game-plan {
    margin: 40px auto;
    padding-bottom: 60px;
  }

  #game-plan h1 {
    font-size: 2rem;
  }

  #game-plan h2 {
    font-size: 1.6rem;
  }

  #game-plan h3 {
    font-size: 1.2rem;
  }

  #game-plan table {
    font-size: 0.9rem;
  }

}

/* Mobile */
@media (max-width: 768px) {
  .about-hero {
    padding: 60px 6%;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero p {
    font-size: 1.05rem;
  }

  .about-section h2 {
    font-size: 1.6rem;
  }
}

/* Dropdown slide animation (mobile only) */
@media (max-width: 768px) {

  .dropdown-menu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      transform 0.25s ease;
  }

  .dropdown.active .dropdown-menu {
    max-height: 600px; /* large enough for content */
    opacity: 1;
    transform: translateY(0);
  }
}
