    :root {
      --bg-dark: #071022;
      --accent1: #6a5af9;
      --accent2: #9f7aea;
      --white: #fff;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: var(--bg-dark);
      color: var(--white);
    }

    /* âœ… Desktop Header */
    header.desktop-header {
      position: sticky;
      top: 0;
      width: 100%;
      background: #060e20;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 40px;
      z-index: 1000;
    }
    header.desktop-header nav ul {
      display: flex;
      gap: 25px;
      list-style: none;
    }
    header.desktop-header nav ul li a {
      text-decoration: none;
      color: var(--white);
      font-weight: 500;
      transition: 0.3s;
    }
    header.desktop-header nav ul li a:hover {
      color: var(--accent1);
    }
    header.desktop-header .right-btns {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    .lang-select {
      background: transparent;
      border: none;
      color: var(--white);
      font-size: 14px;
      cursor: pointer;
    }
    .games-btn {
      background: linear-gradient(90deg, var(--accent1), var(--accent2));
      border: none;
      padding: 10px 20px;
      border-radius: 30px;
      color: var(--white);
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
    }
    .games-btn:hover {
      opacity: 0.9;
    }

    /* âœ… Mobile Header */
    header.mobile-header {
      display: none;
      background: #060e20;
      padding: 12px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .mobile-header .hamburger {
      font-size: 26px;
      cursor: pointer;
      color: var(--white);
    }
    .mobile-header .logo img {
      height: 32px;
    }
    .mobile-header .icon-btn img {
      width: 34px;
      height: 34px;
      background: #6a5af9;
      border-radius: 50%;
      padding: 6px;
      cursor: pointer;
    }
    
    /* ---------------------------
   ✅ MOBILE NAVIGATION MENU
---------------------------- */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background-color: #0b1428;
  color: #fff;
  z-index: 1000;
  padding: 40px 20px;
  transition: left 0.3s ease;
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin-top: 60px;
}

.mobile-nav ul li {
  margin: 20px 0;
}

.mobile-nav ul li a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  font-weight: 500;
}

.mobile-nav ul li a:hover {
  color: #6a5af9;
}

.close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

.hamburger {
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}


    /* âœ… Responsive: Show only the right header */
    @media (max-width: 768px) {
      header.desktop-header {
        display: none;
      }
      header.mobile-header {
        display: flex;
      }
      
.read-cards {
    justify-content: center;
  }
  .read-cards .card {
    max-width: 100%;
  }
    }
    /* âœ… Responsive: Show only the right header */
    @media (min-width: 769px) {
      header.mobile-header {
        display: none;
      }
      header.desktop-header {
        display: flex;
      }
    }

    /* === Article Section === */
    .article-section {
      background: #0a1635;
      padding: 60px 20px;
    }
    .article-container {
      max-width: 1000px;
      margin: auto;
    }
    .article-category {
      color: #6a5af9;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .article-title {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 25px;
      color: #fff;
    }
    .article-image img {
      width: 100%;
      border-radius: 12px;
      margin-bottom: 30px;
    }
    .article-content h3 {
      font-size: 20px;
      margin: 20px 0 10px;
      color: #fff;
    }
    .article-content p {
      line-height: 1.6;
      margin-bottom: 20px;
      color: #ddd;
    }
    .article-content ul {
      list-style: disc;
      padding-left: 20px;
    }
    .article-content li {
      margin-bottom: 12px;
      color: #ccc;
    }

    .video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  margin: 30px 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 14px;
}
    
    /* === FAQ Accordion Section === */
.faq-section {
  background: #0a1635;
  padding: 25px 20px;
}
.faq-container {
  max-width: 900px;
  margin: auto;
}
.faq-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  color: #fff;
}
.faq-item {
  border-bottom: 1px solid #2a3550;
  margin-bottom: 10px;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 15px;
}
.faq-answer p {
  margin: 15px 0;
  color: #ddd;
  font-size: 14px;
  line-height: 1.6;
}
.faq-item.active .faq-answer {
  max-height: 200px;
}
.faq-item.active .arrow {
  transform: rotate(45deg);
}
.arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}
.faq-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
}
.faq-btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}
.faq-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.faq-buttons img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* makes icons white on dark bg */
  transition: filter 0.3s ease;
}

.faq-buttons a:hover img {
  filter: brightness(1) saturate(1.5); /* light color pop on hover */
}
/* === Conclusion Section === */
.conclusion-section {
  background: #0a1635;
  padding: 50px 20px;
  border-top: 1px solid #2a3550;
}
.conclusion-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left; /* Center everything */
}
.conclusion-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}
.conclusion-section p {
  color: #ddd;
  font-size: 15px;
  line-height: 1.7;
}
.conclusion-section ul {
  list-style: disc;
  text-align: left;
  display: inline-block; /* keeps list centered within container */
  margin: 0 auto;
  padding-left: 20px;
}
.conclusion-section li {
  color: #ccc;
  margin-bottom: 8px;
}



    /* === Footer === */
    .footer {
      background: #08184A;
      color: #aaa;
      padding: 60px 40px 20px;
      font-size: 14px;
    }
    .footer-top {
      text-align: center;
      margin-bottom: 30px;
    }
    .footer-top .social-icons {
      display: flex;
      justify-content: center;
      gap: 25px;
    }
    .footer-top img {
      width: 28px;
      height: 28px;
      filter: brightness(0) invert(1);
      transition: 0.3s;
    }
    .footer-top img:hover {
      filter: brightness(0) invert(0.6);
    }
    .footer-main {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
      max-width: 1400px;
      margin: auto;
    }
    .footer-left {
      flex: 1;
      min-width: 280px;
    }
    .footer-left p {
      margin: 10px 0;
      line-height: 1.6;
    }
    .footer-left .desc {
      border-left: 2px solid #3b4a6b;
      padding-left: 15px;
      margin-top: 15px;
      font-size: 13px;
      color: #c0c8e0;
    }
    .footer-links {
      display: flex;
      gap: 60px;
      flex-wrap: wrap;
    }
    .footer-links ul {
      list-style: none;
    }
    .footer-links li {
      margin-bottom: 10px;
    }
    .footer-links a {
      color: #bbb;
      text-decoration: none;
      transition: 0.3s;
    }
    .footer-links a:hover {
      color: #6a5af9;
    }
    .footer-bottom {
      text-align: center;
      margin-top: 40px;
      border-top: 1px solid #1b2a50;
      padding-top: 15px;
      font-size: 13px;
      color: #c0c8e0;
    }

    /* === Read Next Section === */
.read-next {
  background: #071022;
  padding: 60px 20px;
}
.read-next-container {
  max-width: 1200px;
  margin: auto;
}
.read-next h3 {
  font-size: 16px;
  font-weight: 600;
  color: #aaa;
  margin-bottom: 30px;
  border-bottom: 1px solid #2a3550;
  padding-bottom: 10px;
  letter-spacing: 1px;
}
.read-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.read-cards .card {
  background: #0a1635;
  border-radius: 12px;
  overflow: hidden;
  flex: 1;
  min-width: 280px;
  max-width: 32%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.read-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}
.read-cards img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.card-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #aaa;
  margin-bottom: 5px;
}
.card-meta .tag {
  color: #6a5af9;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
}
.card-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin: 0;
}
.card-content p {
  font-size: 13px;
  color: #ccc;
  line-height: 1.5;
  margin: 0;
}
/* ✅ Mobile: 1 card per row */
@media (max-width: 600px) {
  .read-cards {
    justify-content: center;
  }
  .read-cards .card {
    max-width: 100%;
  }
      .article-title {
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 25px;
      color: #fff;
    }
}
/* ✅ Tablet Responsiveness */
@media (max-width: 992px) and (min-width: 601px) {
  /* Article Section */
  .article-section {
    padding: 50px 20px;
  }
  .article-title {
    font-size: 26px;
  }
  .article-content h3 {
    font-size: 18px;
  }
  .article-content p,
  .article-content li {
    font-size: 14px;
  }

  /* Read Next Section: 2 cards per row */
  .read-cards .card {
    max-width: 48%;
    min-width: 48%;
  }

  /* Footer adjustments */
  .footer-main {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
    gap: 40px;
  }
}