

   body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background-color: #fefefe;
      color: #333;
        line-height: 1.7;
    }
   
 header {
  background: linear-gradient(90deg, #fa6a66, #fe9388);
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 999;
}


    .nav-container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    /* Logo */
    .logo img {
      height: 40px;
      width: auto;
      background-color: #fff;
      padding: 10px;
    }

    /* Navigation wrapper */
    .nav-center {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    nav {
      display: flex;
      gap: 25px;
      align-items: center;
    }

    nav a, .dropdown-btn {
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      font-size: 17px;
      cursor: pointer;
      transition: opacity 0.3s;
    }

    nav a:hover, .dropdown-btn:hover {
      opacity: 0.8;
    }

    /* Dropdown */
    .dropdown {
      position: relative;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      top: 38px;
      left: 0;
      background: #fff;
      color: #333;
      min-width: 200px;
      border-radius: 6px;
      box-shadow: 0px 4px 8px rgba(0,0,0,0.15);
      overflow: hidden;
      z-index: 10;
    }

    .dropdown-content a {
      display: block;
      padding: 10px 15px;
      color: #333;
      text-decoration: none;
    }

    .dropdown-content a:hover {
      background: #f5f5f5;
    }

    .dropdown.active .dropdown-content {
      display: block;
    }

    /* Download + Menu */
    .right-section {
      display: flex;
      align-items: center;
      gap: 15px; /* space between button & hamburger */
    }

    .download-btn {
      background: #fff;
      color: #fa6a66;
      font-weight: bold;
      padding: 8px 20px;
      border-radius: 25px;
      text-decoration: none;
      transition: 0.3s;
    }

    .download-btn:hover {
      background: #ffe0dc;
      color: #d94a42;
    }

    /* Hamburger */
    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .menu-toggle div {
      width: 28px;
      height: 3px;
      background: #fff;
      margin: 4px 0;
      border-radius: 2px;
    }

    /* Mobile */
    @media (max-width: 768px) {
      .nav-center {
        justify-content: flex-start;
      }

      nav {
        display: none;
        flex-direction: column;
        background: linear-gradient(90deg, #fa6a66, #fe9388);
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 15px 0;
        text-align: center;
      }

      nav.active {
        display: flex;
      }

      .menu-toggle {
        display: flex;
      }

      .dropdown-content {
        position: static;
        background: #fff;
        box-shadow: none;
      }
    }


  

  
    .login-section {
      max-width: 1200px;
      margin: 10px auto;
      padding: 20px 30px;
      text-align: center;
      background: #ffffff;
      font-family: 'Poppins', sans-serif;
      color: #1a1a1a;
      border-radius: 18px;
      box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    }

    .login-section h1 {
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: #121212;
      letter-spacing: 0.5px;
    }

    .login-section p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #333;
      margin-bottom: 40px;
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
    }

    .btn-group {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .btn {
      padding: 14px 38px;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 10px;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(0,0,0,0.12);
    }

    /* Buttons */
    .btn-register {
      background: #00f5c4;
      color: #000;
      border: 2px solid transparent;
    }
    .btn-register:hover {
      background: #00d9ae;
      transform: translateY(-3px);
    }

    .btn-login {
      background: #ffc107;
      color: #000;
      border: 2px solid transparent;
    }
    .btn-login:hover {
      background: #e6ac00;
      transform: translateY(-3px);
    }

    .btn-download {
      background: #fff;
      color: #fa6a66;
      border: 2px solid #fa6a66;
    }
    .btn-download:hover {
      background: #ffe0dc;
      color: #d94a42;
      transform: translateY(-3px);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .login-section h1 {
        font-size: 2.2rem;
      }
      .login-section p {
        font-size: 1rem;
      }
    }

    @media (max-width: 600px) {
      .btn {
        text-align: center;
      }
    }

      /* Container */
    .gift-section{
      max-width: 1100px;
      margin: 40px auto;
      padding: 28px 22px;
      font-family: 'Poppins',system-ui,-apple-system,Segoe UI,Roboto,Arial, sans-serif;
      color:#141414;
      background: linear-gradient(135deg, #fa6a66 0%, #fe9388 100%);
      border-radius: 18px;
      box-shadow: 0 10px 24px rgba(0,0,0,.15);
    }

    .gift-header{
      text-align:center;
      color:#fff;
      margin-bottom: 22px;
    }
    .gift-header h2{
      margin:0 0 8px 0;
      font-size: clamp(22px, 3vw, 34px);
      font-weight: 700;
      letter-spacing:.2px;
    }
    .gift-header p{
      margin:0;
      font-size: clamp(14px, 2.2vw, 18px);
      opacity:.95;
      font-weight:500;
    }

    /* Gift code box */
    .code-wrap{
      margin: 20px auto 26px;
      background:#ffffff;
      border-radius:14px;
      padding:16px 18px;
      box-shadow: 0 8px 18px rgba(0,0,0,.12);
      display:flex;
      align-items:center;
      justify-content:center;
      gap:12px;
      max-width: 820px;
    }
    .code-label{
      color:#fa6a66;
      background: #ffe7e5;
      border: 1px solid #ffd2cf;
      padding:6px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight:700;
      text-transform: uppercase;
      letter-spacing:.6px;
    }
    .code-text{
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
      font-size: clamp(13px, 2.2vw, 16px);
      word-break: break-all;
      color:#1b1b1b;
      font-weight:600;
    }

    /* Layout for specs */
    .specs-card{
      background:#ffffff;
      border-radius:16px;
      padding: 20px;
      box-shadow: 0 8px 18px rgba(0,0,0,.12);
      max-width: 980px;
      margin: 0 auto;
    }
    .specs-title{
      margin:0 0 14px 0;
      font-size: clamp(18px, 2.6vw, 22px);
      font-weight: 700;
      color:#2a2a2a;
      text-align: left;
    }

    .specs{
      width:100%;
      border-collapse: collapse;
      overflow:hidden;
      border-radius:12px;
    }
    .specs tr{
      background:#fafafa;
    }
    .specs tr:nth-child(even){
      background:#f2f2f2;
    }
    .specs th,
    .specs td{
      padding:14px 16px;
      text-align:left;
      font-size: 15px;
    }
    .specs th{
      width: 38%;
      color:#333;
      font-weight:600;
    }
    .specs td{
      color:#111;
      font-weight:500;
    }

    /* Subtle borders */
    .specs tr + tr td,
    .specs tr + tr th{
      border-top:1px solid #e9e9e9;
    }

    /* Responsive tweaks */
    @media (max-width:700px){
      .code-wrap{
        flex-direction: column;
        text-align:center;
        padding:14px;
      }
      .specs th{ width: 44%; }
      .gift-section{ margin: 24px 14px; padding:22px 16px; }
    }

  

    .container {
      max-width: 1200px;
      margin: 50px auto;
      padding: 20px;
       font-family: 'Poppins', sans-serif;
      background: linear-gradient(135deg, #fa6a66, #fe9388);
      color: #222;
      line-height: 1.7;
    }

    h1, h2, h3, h4 {
      color: #fff;
      font-weight: 700;
      margin-bottom: 15px;
    }

    h1 {
      font-size: 2.4rem;
      text-align: center;
      margin-bottom: 40px;
    }

    h2 {
      font-size: 2rem;
      margin-top: 40px;
    }

    h3 {
      font-size: 1.8rem;
      margin-top: 25px;
    }

     h4 {
      font-size: 1.4rem;
      margin-top: 25px;
    }

    p {
      font-size: 1rem;
      color: #fdfdfd;
      margin-bottom: 18px;
    }

    ul {
      margin: 15px 0 20px 20px;
      padding: 0;
      color: #fff;
    }

    ul li {
      margin-bottom: 10px;
    }

    .section {
      background: rgba(255,255,255,0.12);
      padding: 25px 30px;
      border-radius: 14px;
      margin-bottom: 30px;
      backdrop-filter: blur(8px);
      box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    }

    /* Image container */
    .img-box {
      margin: 18px 0;
      overflow: hidden;
      border-radius: 12px;
     
      transition: transform 0.3s ease;
    }

    .img-box:hover {
      transform: scale(1.03);
    }

    .img-box img {
      width: 250px;
      height: auto;
      margin: 40px auto;
      align-items: center;
      justify-content: center;
      display: block;
    }

    @media (max-width: 768px) {
      .container {
        padding: 10px;
      }
      h1 {
        font-size: 2rem;
      }
      h2 {
        font-size: 1.3rem;
      }
      h3 {
        font-size: 1.1rem;
      }
    }

      .faq-container {
      max-width: 1200px;
      margin: auto;
    }


    .faq-title {
      text-align: center;
      font-size: 38px;
      font-weight: bold;
      color: #0d0d0e;
      margin-bottom: 20px;
    }
    .faq-item {
      margin-bottom: 18px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      background: #fff;
    }

    .faq-question {
      margin: 0;
      padding: 18px 24px;
      background: linear-gradient(to right, #fa6a66, #fe9388);
      color: white;
      cursor: pointer;
      font-size: 22px;
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .faq-question::after {
      content: '+';
      font-size: 22px;
      font-weight: bold;
      transition: transform 0.3s ease;
    }

    .faq-item.active .faq-question::after {
      content: '−';
      transform: rotate(180deg);
    }

    .faq-answer {
      display: none;
      padding: 18px 24px;
      background-color: #ffffff;
      color: #333;
      font-size: 18px;
      border-top: 1px solid #eee;
      line-height: 1.6;
    }

    .faq-item.active .faq-answer {
      display: block;
    }

    @media (max-width: 600px) {
      .faq-question {
        font-size: 16px;
        padding: 14px 18px;
      }
      .faq-answer {
        font-size: 15px;
        padding: 14px 18px;
      }
    }
     .custom-footer {
    background: linear-gradient(to right, #fa6a66, #fe9388);
    text-align: center;
    padding: 20px 10px;
    color: white;
    font-family: 'Poppins', sans-serif;
    margin-top: 30px;
  }

  .footer-links {
    margin-bottom: 10px;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }

  .footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
  }

  .footer-copy {
    font-size: 14px;
  }

  .brand {
    color: yellow;
    font-weight: 600;
  }

  @media (max-width: 600px) {
    .footer-links {
      flex-direction: column;
      gap: 8px;
    }
  }


  /* essential pages */

  
    .pak-wrapper {
      background: linear-gradient(to right, #fa6a66, #fe9388);
      padding: 40px 20px;
      border-radius: 15px;
      margin: 20px auto;
      max-width: 1200px;
      font-family: 'Poppins', sans-serif;
    }

    .pak-header-title {
      text-align: center;
      font-size: 36px;
      font-weight: bold;
      color: white;
      margin-bottom: 30px;
    }

    .pak-card {
      background-color: white;
      border-radius: 12px;
      padding: 25px;
      margin-bottom: 25px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .pak-card h2 {
      color: #fa6a66;
      margin-bottom: 15px;
      font-size: 30px;
    }

    .pak-card h3 {
      color: #fa6a66;
      margin-bottom: 15px;
      font-size: 24px;
    }

    .pak-card p, .pak-card li {
      font-size: 16px;
      line-height: 1.7;
      color: #000;
    }

    .pak-card ul {
      padding-left: 20px;
    }

    .pak-email {
      color: #fa6a66;
      font-weight: 600;
    }

   

    @media (max-width: 768px) {
      .pak-header-title {
        font-size: 28px;
      }

      .pak-card h2 {
        font-size: 20px;
      }

      .pak-card {
        padding: 20px;
      }
    }


        /* TOC box */
    .toc {
  background: #fd9287; 
  color: #fff;
  max-width: 450px;
  margin: 20px auto; /* centers automatically */
  padding: 10px 15px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
}

.toc h2 {
  font-size: 24px;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toc h2 span {
  font-weight: bold;
  transition: transform 0.3s ease;
}

.toc ul {
  list-style: none;
  padding-left: 20px;
  margin-top: 10px;
  display: none; /* hidden by default */
}

.toc ul li {
  margin: 6px 0;
  font-size: 18px;
}

.toc ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.toc ul li a:hover {
  text-decoration: underline;
}

/* ✅ Mobile responsive styles */
@media (max-width: 768px) {
  .toc {
    max-width: 100%;
    margin: 15px;
    padding: 12px;
  }

  .toc h2 {
    font-size: 20px;
  }

  .toc ul li {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .toc {
    margin: 10px;
    padding: 10px;
  }

  .toc h2 {
    font-size: 18px;
  }

  .toc ul li {
    font-size: 14px;
  }
}
