 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box
 }

 
 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     background: #f95959;
     /* White background */
     color: #000000;
     margin: 0;
     padding: 0;
     line-height: 1.8;
 }


 /* HEADER */
 header {
     background: #ffffff;
     padding: 15px 5%;
     position: sticky;
     top: 0;
     z-index: 1000;
     box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
     border-bottom: 1px solid #f0f0f0;
 }

 .container {
     max-width: 1400px;
     margin: auto;
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .logo img {
     height: 70px;
     transition: all 0.3s ease;
 }

 .logo img:hover {
     transform: scale(1.05);
 }


 /* Desktop Nav */
 nav ul {
     display: flex;
     gap: 35px;
     list-style: none;
     align-items: center;
 }

 nav a {
     color: #333333;
     font-size: 16px;
     font-weight: 600;
     text-decoration: none;
     transition: color 0.3s ease;
     position: relative;
 }

 nav a:hover {
     color: #f95959;
 }

 nav a:after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     bottom: -5px;
     left: 0;
     background-color: #f95959;
     transition: width 0.3s ease;
 }

 nav a:hover:after {
     width: 100%;
 }

 /* Register Button */
 .register-btn {
     background: linear-gradient(135deg, #f95959, #ff6b6b);
     color: white;
     padding: 12px 28px;
     border-radius: 30px;
     font-weight: 700;
     text-transform: uppercase;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(182, 137, 96, 0.3);
     border: none;
     cursor: pointer;
     letter-spacing: 0.5px;
 }

 .register-btn:hover {
     background: linear-gradient(135deg, #f95959, #b42319);
     color: #fff;
     transform: translateY(-3px);
     box-shadow: 0 6px 20px rgba(182, 137, 96, 0.4);
 }

 /* Desktop Dropdown */
 .dropdown {
     position: relative
 }

 .dropdown-content {
     display: none;
     position: absolute;
     top: 100%;
     left: 0;
     min-width: 200px;
     background: #ffffff;
     border-radius: 10px;
     overflow: hidden;
     z-index: 1001;
     transform: translateY(-10px);
     opacity: 0;
     transition: all 0.3s ease;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
     border: 1px solid #f0f0f0;
 }

 .dropdown-content a {
     padding: 12px 18px;
     display: block;
     transition: background 0.3s ease;
     color: #555;
     border-bottom: 1px solid #f5f5f5;
 }

 .dropdown-content a:last-child {
     border-bottom: none;
 }

 .dropdown-content a:hover {
     background: #f9f9f9;
     color: #f95959;
     padding-left: 22px;
 }

 .dropdown:hover .dropdown-content {
     display: block;
     transform: translateY(0);
     opacity: 1;
 }

 /* MOBILE MENU */
 .menu-toggle,
 .close-menu {
     display: none;
     width: 48px;
     height: 48px;
     border: none;
     border-radius: 50%;
     background: rgba(182, 137, 96, 0.1);
     color: #f95959;
     font-size: 20px;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .menu-toggle:hover,
 .close-menu:hover {
     background: rgba(182, 137, 96, 0.2);
     transform: scale(1.05);
 }

 /* MOBILE DESIGN */
 @media(max-width:992px) {
     .menu-toggle {
         display: block;
     }

     nav ul {
         position: fixed;
         top: 0;
         right: -100%;
         flex-direction: column;
         width: 300px;
         height: 100vh;
         background: #ffffff;
         padding: 90px 30px;
         gap: 20px;
         transition: 0.4s ease;
         z-index: 999;
         box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
     }

     nav ul.active {
         right: 0;
     }

     .close-menu {
         display: block;
         position: absolute;
         top: 20px;
         right: 20px;
     }

     nav a {
         font-size: 20px;
         color: #333;
     }

     /* MOBILE DROPDOWN FIXED */
     .dropdown-content {
         display: none;
         background: #f9f9f9;
         width: 100%;
         margin-top: 10px;
         border-radius: 10px;
         padding: 0;
         position: static;
         box-shadow: none;
         max-height: 0;
         overflow: hidden;
         transform: none;
         opacity: 1;
         transition: max-height 0.4s ease, padding 0.3s ease;
         border: 1px solid #eee;
     }

     .dropdown.active .dropdown-content {
         display: block;
         max-height: 300px;
         padding: 10px 0;
     }

     .dropdown-content a {
         padding: 12px 20px;
         font-size: 18px;
         border-bottom: 1px solid #eee;
         color: #555;
     }

     .dropdown-content a:last-child {
         border-bottom: none;
     }

     /* Arrow rotate on open */
     .dropdown>a i {
         margin-left: 6px;
         transition: 0.3s ease;
     }

     .dropdown.active>a i {
         transform: rotate(180deg);
     }

     .register-btn {
         margin-top: 10px;
         text-align: center;
         width: 100%;
     }

     /* Overlay for mobile menu */
     .overlay {
         display: none;
         position: fixed;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         background: rgba(0, 0, 0, 0.5);
         z-index: 998;
         opacity: 0;
         transition: opacity 0.4s ease;
     }

     .overlay.active {
         display: block;
         opacity: 1;
     }

     /* Animation for menu items */
     nav ul li {
         opacity: 0;
         transform: translateX(20px);
         transition: all 0.3s ease;
     }

     nav ul.active li {
         opacity: 1;
         transform: translateX(0);
     }

     /* Staggered animation for menu items */
     nav ul.active li:nth-child(1) {
         transition-delay: 0.1s;
     }

     nav ul.active li:nth-child(2) {
         transition-delay: 0.15s;
     }

     nav ul.active li:nth-child(3) {
         transition-delay: 0.2s;
     }

     nav ul.active li:nth-child(4) {
         transition-delay: 0.25s;
     }
 }

 .main-container {
     max-width: 1200px;
     margin: 40px auto;
     padding: 35px;
     background: #ffffff;
     border-radius: 20px;
     box-shadow: 0 10px 40px rgba(249, 89, 89, 0.2);
     border: 4px solid #f95959;
     /* Red border */
     background: #ffffff;
     /* White background */
 }

 .main-container h1 {
     text-align: center;
     font-size: 3.5rem;
     color: #f95959;
     margin-bottom: 15px;
     text-shadow: 2px 2px 8px rgba(249, 89, 89, 0.3);
 }

 .main-container h2 {
     font-size: 2rem;
     color: #f95959;
     border-bottom: 4px solid #f95959;
     padding-bottom: 12px;
     margin-top: 45px;
     margin-bottom: 20px;
     text-align: center;
 }

 .main-container h4 {
     font-size: 1.5rem;
     color: #000;
     margin-top: 35px;
     margin-bottom: 20px;
 }

  h3 {
     font-size: 1.8rem;
     color: #f95959;
     margin-top: 28px;

 }

 .main-container p {
     font-size: 1.15rem;
     color: #333;
     margin-top: 10px;
     margin-bottom: 10px;
 }

 .main-container ul, ol {
     padding-left: 30px;
     color: #333;
     margin-top: 10px;
     margin-bottom: 10px;
     font-size: 1.15rem;
 }

 .main-container li {
     margin-bottom: 12px;

 }

 .btn-group {
     text-align: center;
     margin: 40px 0;
 }

 .btn {
     display: inline-block;
     padding: 10px 28px;
     margin: 0 15px;
     font-size: 1.3rem;
     font-weight: bold;
     text-decoration: none;
     border-radius: 50px;
     transition: all 0.4s ease;
     box-shadow: 0 10px 25px rgba(249, 89, 89, 0.3);
 }

 .btn-register {
     background: linear-gradient(45deg,  #208d4e);
     color: white;
 }

 .btn-download {
     background: linear-gradient(45deg, #ff3838, #ff6b6b);
     color: white;
 }

 .btn-login {
     background: linear-gradient(45deg, #ffd700, #ffea80);
     color: #000;
 }

 .btn:hover {
     transform: translateY(-6px);
     box-shadow: 0 18px 35px rgba(249, 89, 89, 0.5);
 }

 .gift-code {
     background: #ffebeb;
     padding: 25px 50px;
     border-radius: 15px;
     text-align: center;
     font-size: 1.2rem;
     font-weight: bold;
     color: #f95959;
     margin: 35px 0;
     letter-spacing: 2px;
 }

 table {
     width: 80%;
     margin: 30px auto;
     border-collapse: collapse;
     background: #fff5f5;
     border-radius: 12px;
     overflow: hidden;
     border: 2px solid #f95959;
 }

 th, td {
     padding: 18px;
     text-align: left;
     border-bottom: 1px solid #f95959;
 }

 th {
     background: #f95959;
     color: white;
     font-weight: bold;
 }


 /* -------------------------
   MOBILE RESPONSIVE CSS
-------------------------- */
 @media (max-width: 768px) {

     .main-container {
         margin: 20px auto;
         padding: 20px;
         border-width: 3px;
     }

     h1 {
         font-size: 2.4rem;
     }

     h2 {
         font-size: 1.6rem;
         padding-bottom: 8px;
     }

     h3 {
         font-size: 1.4rem;
     }

     h4 {
         font-size: 1.3rem;
     }

     p, li {
         font-size: 1rem;
     }

     .btn-group {
         display: flex;
         flex-direction: column;
         gap: 15px;
     }

     .btn {
         width: 90%;
         margin: 0 auto;
         padding: 12px 20px;
         font-size: 1.1rem;
     }

     .gift-code {
         padding: 18px 25px;
         font-size: 1rem;
         letter-spacing: 1px;
     }

     table {
         width: 100%;
         font-size: 0.95rem;
     }

     th, td {
         padding: 12px 10px;
         text-align: left;
     }
 }

 /* Extra small screens */
 @media (max-width: 480px) {

     h1 {
         font-size: 2rem;
     }

     h2 {
         font-size: 1.3rem;
     }

     .container {
         padding: 15px;
     }

     .btn {
         font-size: 1rem;
         padding: 10px 15px;
     }

     .gift-code {
         font-size: 0.95rem;
         padding: 15px 18px;
     }

     th, td {
         padding: 10px 8px;
     }
 }


 .faq-header {
     text-align: center;
     margin-bottom: 50px;
 }

 .faq-header h2 {
     font-size: 2.8rem;
     color: #f95959;
     margin-bottom: 15px;
 }

 .faq-header h2::after {
     content: '';
     display: block;
     width: 90px;
     height: 5px;
     background: #f95959;
     margin: 15px auto;
     border-radius: 3px;
 }

 /* Upar ka white space bilkul zero kar diya */
 .faq-item {
     background: white;
     margin-bottom: 20px;
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 8px 25px rgba(249, 89, 89, 0.12);
     border-left: 5px solid #f95959;
     transition: all 0.3s ease;
 }

 .faq-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(249, 89, 89, 0.2);
 }

 .faq-question  {
     background: #f95959;
     color: white;
     padding: 22px 25px;
     /* thoda zyada padding for better look */
     font-size: 1.35rem;
     font-weight: 600;
     cursor: pointer;
     position: relative;
     transition: background 0.3s;
     margin-top: 0;
     /* yeh line add ki - upar ka white space hata diya */
 }

 .faq-question:hover {
     background: #e03e3e;
 }

 .faq-question::after {
     content: '+';
     position: absolute;
     right: 25px;
     top: 50%;
     transform: translateY(-50%);
     font-size: 2rem;
     transition: transform 0.3s;
 }

 .faq-item.active .faq-question::after {
     content: '−';
 }

 .faq-answer {
     padding: 0 25px;
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.4s ease, padding 0.4s ease;
     background: #fff;
 }

 .faq-item.active .faq-answer {
     padding: 25px;
     max-height: 500px;
 }

 .faq-answer p {
     margin: 0;
     font-size: 1.1rem;
     color: #444;
 }

 @media (max-width: 768px) {
     .faq-question {
         font-size: 1.2rem;
         padding: 18px 20px;
     }
 }

 /* essential */

 .about-wrapper {
     max-width: 1200px;
     margin: 40px auto;
     background: #ffffff;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 20px 60px rgba(253, 142, 131, 0.15);
     padding: 60px 50px;
 }

 .page-title {
     font-size: 3.2rem;
     font-weight: 700;
     text-align: center;
     color: #fd8e83;
     margin-bottom: 20px;
     position: relative;
 }

 .page-title::after {
     content: '';
     width: 120px;
     height: 4px;
     background: #fd8e83;
     display: block;
     margin: 20px auto 0;
     border-radius: 2px;
 }

 .about-wrapper h2 {
     font-size: 2rem;
     font-weight: 600;
     color: #fd8e83;
     margin: 50px 0 25px;
     position: relative;
     padding-left: 20px;
 }

 .about-wrapper h2::before {
     content: '';
     position: absolute;
     left: 0;
     top: 50%;
     transform: translateY(-50%);
     width: 6px;
     height: 36px;
     background: #fd8e83;
     border-radius: 3px;
 }


  .about-wrapper h3 {
     font-size: 1.5rem;
     font-weight: 600;
     color: #181717;
     margin: 20px 0 15px;
     position: relative;
     padding-left: 20px;
 }


 .about-wrapper p {
     font-size: 1.15rem;
     margin-bottom: 1.4rem;
     color: #333;
 }

 .about-wrapper ul {
     list-style: none;
     padding-left: 10px;
     margin: 25px 0;
 }

 .about-wrapper ul li {
     font-size: 1.15rem;
     padding: 12px 0 12px 45px;
     position: relative;
     background: linear-gradient(90deg, #fd8e8315 0%, transparent 100%);
     margin-bottom: 2px;
     border-radius: 10px;
     transition: all 0.3s ease;
 }

 .about-wrapper ul li:hover {
     background: #fd8e8325;
     transform: translateX(10px);
 }

 .about-wrapper ul li::before {
     content: '✔';
     position: absolute;
     left: 15px;
     top: 50%;
     transform: translateY(-50%);
     color: #fd8e83;
     font-weight: bold;
     font-size: 1.3rem;
 }

 .highlight-section {
     background: linear-gradient(135deg, #fd8e8310 0%, #fd8e8305 100%);
     padding: 40px;
     border-radius: 16px;
     margin: 20px 0;
     border: 1px solid #fd8e8340;
 }

 @media (max-width: 768px) {
     .about-wrapper {
         padding: 40px 25px;
         border-radius: 15px;
     }

     .page-title {
         font-size: 2.5rem;
     }

     h2 {
         font-size: 1.9rem;
     }

     .intro-text, p, ul li {
         font-size: 1.1rem;
     }
 }


  /* footer */

         .footer {
            background-color: white;
            border-top: 3px solid #f36358;
            border-bottom: 3px solid #f36358;
            padding: 20px 0;
            text-align: center;
            animation: fadeInUp 1s ease-out;
            margin-top: 30px;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .footer-nav {
            margin-bottom: 15px;
        }
        .footer-nav a {
            color: black;
            margin: 0 20px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 700;
            display: inline-block;
            transition: all 0.3s ease;
            position: relative;
        }
        .footer-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: red;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        .footer-nav a:hover {
            color: red;
            transform: scale(1.1);
        }
        .footer-nav a:hover::after {
            width: 80%;
        }
        .footer-text {
            color: black;
            font-size: 14px;
            font-weight: 400;
        }
        @media (max-width: 768px) {
            .footer-nav a {
                display: block;
                margin: 10px 0;
                font-size: 14px;
            }
            .footer {
                padding: 15px 0;
            }

               .center-img {
                max-width: 90%;
            }
        }


         .center-img {
            display: block;
            margin: 20px auto;
            max-width: 300px;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }



        .table-container {
  width: 100%;
  overflow-x: auto;
}

.vip-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.vip-table th,
.vip-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
  font-size: 14px;
}

.vip-table th {
  background: #f95959;
  font-weight: bold;
}

@media (max-width: 480px) {
  .vip-table th,
  .vip-table td {
    padding: 8px;
    font-size: 12px;
  }
}

