   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: #071022;
      font-family: "Poppins", sans-serif;
      color: #fff;
      overflow-x: hidden;
    }

    /* ===== HEADER (Desktop) ===== */
    header {
      width: 100%;
      background: linear-gradient(90deg, #050510, #0b0b20);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 50px;
      position: relative;
      z-index: 10;
    }

    .logo img {
      height: 50px;
    }

    .right-section {
      display: flex;
      align-items: center;
      gap: 25px;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 35px;
    }

    nav ul li a {
      text-decoration: none;
      color: #cfcfcf;
      font-size: 22px;
      transition: color 0.3s ease;
    }

    nav ul li a:hover {
      color: #fff;
    }

    .games-btn {
      background: linear-gradient(90deg, #5440ff, #8b5cff);
      color: #fff;
      border: none;
      padding: 8px 16px;
      border-radius: 30px;
      font-size: 18px;
      cursor: pointer;
      transition: opacity 0.3s;
    }

    .games-btn:hover {
      opacity: 0.85;
    }

    /* ===== LANGUAGE SELECTOR ===== */
    .lang-selector {
      position: relative;
      display: flex;
      align-items: center;
      background: #181820;
      border-radius: 30px;
      padding: 6px 12px;
      cursor: pointer;
      font-size: 16px;
      gap: 6px;
    }

    .lang-selector img {
      width: 18px;
      height: 18px;
      border-radius: 50%;
    }

    .lang-selector span {
      color: #ddd;
    }

    .lang-options {
      display: none;
      position: absolute;
      top: 38px;
      right: 0;
      background: #181820;
      border-radius: 10px;
      overflow: hidden;
      min-width: 80px;
      z-index: 10;
    }

    .lang-options div {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 10px;
      cursor: pointer;
      font-size: 13px;
      color: #ccc;
    }

    .lang-options div:hover {
      background: #2b2b40;
      color: #fff;
    }

    .lang-options img {
      width: 18px;
      height: 18px;
      border-radius: 50%;
    }

    /* ===== MOBILE HEADER ===== */
    .mobile-header {
      display: none;
      width: 100%;
      background: linear-gradient(90deg, #050510, #0b0b20);
      padding: 12px 20px;
      align-items: center;
      justify-content: space-between;
      position: relative;
      z-index: 15;
    }

    .menu-icon {
      font-size: 26px;
      cursor: pointer;
    }

    .mobile-logo img {
      height: 35px;
    }

    .mobile-icon img {
      width: 32px;
      height: 32px;
      background: linear-gradient(90deg, #5440ff, #8b5cff);
      border-radius: 50%;
      padding: 6px;
    }

    /* ===== MOBILE MENU ===== */
    .mobile-menu {
      display: none;
      flex-direction: column;
      gap: 16px;
      background: #0b0b20;
      padding: 20px;
      z-index: 1000;
    }

    .mobile-menu a {
      text-decoration: none;
      color: #ccc;
      font-size: 15px;
      transition: color 0.3s;
    }

    .mobile-menu a:hover {
      color: #fff;
    }

    .mobile-menu .lang-selector {
      width: fit-content;
    }

    /* ===== VIDEO SECTION ===== */
    .video-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      background: linear-gradient(90deg, #050510, #0b0b20);
    }

    .video-section video {
      width: 100%;
      height: auto;
      object-fit: contain;
      display: block;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      header {
        display: none;
      }

      .mobile-header {
        display: flex;
      }

      .video-section video {
        height: 240px;
        object-fit: contain;
      }
    }
    
        /* Blog Intro */
    .blog-intro { background: #071022; color: #fff; padding: 40px 20px; }
    .blog-intro .container { max-width: 1000px; margin: 0 auto; }
    .blog-intro h1 { font-size: 1.4rem; font-weight: 800; margin-bottom: 20px; }
    .blog-intro p { font-size: 1rem; line-height: 1.6; margin-bottom: 15px; color: #ccc; }
    
    /* === Blog === */
.blog { padding: 20px 10px; text-align: center; }
.blog-title { font-size: 2rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.blog-categories { display: flex; justify-content: center; gap: 5px; flex-wrap: wrap; margin-bottom: 20px; font-size: 8px; }
.blog-categories button {
  background: transparent; border: none; color: #aaa; font-size: .7rem; cursor: pointer;
  padding: 6px 10px; border-radius: 15px; transition: all 0.3s ease;
}
.blog-categories button.active, .blog-categories button:hover { background: Blue; color: White; }
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px; max-width: 1200px; margin: 0 auto;
}
.blog-card {
  display: block; border-radius: 8px; overflow: hidden;
  background: #0b1a3d; text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 6px 14px rgba(0,0,0,0.6); }
.blog-card img { width: 100%; height: contain; object-fit: cover; display: block; }
.blog-content { padding: 2px; text-align: left; }
.blog-content .meta { display: flex; justify-content: space-between; font-size: 0.8rem; color: #7a86a8; margin-bottom: 8px; text-transform: uppercase; }
.blog-content .category { font-weight: 600; color: blue; }
.blog-content h3 { font-size: 1.1rem; font-weight: 600;}
.blog-desc { font-size: 0.9rem; color: #ccc; line-height: 1.4; }
.show-more-wrapper {
  text-align: center;
  margin-top: 2rem;
}

.show-more-btn {
  background: var(--accent1);
  color: var(--white);
  border: none;
  padding: 0.6rem 1rem;
  font-size: 1rem;
   font-weight: bold;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s ease;
}

.show-more-btn:hover {
  background: var(--accent2);
  transform: scale(1.05);
}
    /* === 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;
    }
    
/* Responsive: Show only the right header */
    @media (min-width: 769px) {
  .blog-content { padding: 15px; text-align: left; }
  .banner-btn {display: inline-block; margin-top: 40px; padding: 15px 60px; font-size: 1.5rem; border-radius: 40px; background: linear-gradient(to right, #6a11cb, #2575fc); color: #fff; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(0,0,0,0.4);}
    }
    
/* Responsive: Show only the right header */
    @media (max-width: 768px) {
    .blog-title { font-size: 1.5rem; }
    .blog-grid {grid-template-columns: repeat(2, 1fr); /* ✅ 2 equal columns */
    gap: 10px;
    padding: 0 5px;}
  .blog-card img { height: contain; }
  .blog-categories{font-size: 6px;}
  .blog-content { padding: 7px; text-align: left; }
  .blog-content .meta { display: flex; justify-content: space-between; font-size: 0.8rem; color: #7a86a8; margin-bottom: 8px; text-transform: uppercase; }
  .blog-content .category { font-weight: 600; color: blue; font-size: .4rem; }
  .blog-content .date { font-weight: 600; color: white; font-size: .4rem; }
  .blog-content h3 { font-size: .9rem; font-weight: 600;}
  .blog-desc { font-size: .6rem; color: #ccc; line-height: 1.4; }
  
/* Laptops / Small desktops: 1025px – 1440px */
@media (min-width: 1025px) and (max-width: 1440px) {
  .blog-card {flex: 0 0 30%; max-width: 30%;}
}

/* Desktop: Blog 4 columns */
@media (min-width: 1025px) {
  .blog-card { flex: unset; max-width: 100%; width: 100%;}
}