     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: linear-gradient(135deg, #f36358 0%, #ff9b8f 100%);
            color: white;
            overflow-x: hidden;
            line-height: 1.8;
        }
    /* Header */
    .header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 50px;
      background: linear-gradient(90deg, #f36358, #ff9b8f);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 3px 10px rgba(0,0,0,0.15);
       font-family: 'Poppins', sans-serif;
    }

    /* Logo */
    .header img {
      height: 48px;
      transition: transform 0.3s ease;
    }
    .header img:hover {
      transform: scale(1.05);
    }

    /* Nav */
    .nav {
      display: flex;
      align-items: center;
      gap: 25px;
    }

    .nav a {
      color: #fff;
      text-decoration: none;
      font-size: 17px;
      font-weight: 500;
      position: relative;
      transition: color 0.3s ease;
       font-family: 'Poppins', sans-serif;
    }

    .nav a:hover {
      color: #222;
    }

    /* Dropdown */
    .dropdown {
      position: relative;
      z-index: 2000; /* make dropdown above buttons */
    }

    .dropdown-content {
      position: absolute;
      top: 32px;
      left: 0;
      background: #fff;
      min-width: 160px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
      z-index: 1000;
    }

    .dropdown:hover .dropdown-content {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-content a {
      display: block;
      padding: 12px 15px;
      color: #333;
      font-size: 14px;
      transition: background 0.3s ease, color 0.3s ease;
    }

    .dropdown-content a:hover {
      background: linear-gradient(90deg, #f36358, #ff9b8f);
      color: #fff;
    }

    /* Buttons */
    .btn {
      padding: 10px 23px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    }

    .login-btn {
      background: linear-gradient(90deg, #64d9ab, #5ee9b1);
      color: #fff;
    }
    .login-btn:hover {
      background: linear-gradient(90deg, #e25545, #ff7b5b);
      transform: translateY(-2px);
    }

    .download-btn {
      background: linear-gradient(90deg, #00aaff, #005fcc);
      color: #fff;
    }
    .download-btn:hover {
      background: linear-gradient(90deg, #007bff, #004bb5);
      transform: translateY(-2px);
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: #fff;
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    /* Mobile menu */
    @media (max-width: 768px) {
      .nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: linear-gradient(180deg, #f36358, #ff9b8f);
        flex-direction: column;
        gap: 15px;
        padding: 30px;
        transition: right 0.4s ease;
        z-index: 1500;
      }

      .nav.active {
        right: 0;
      }

      .dropdown-content {
        position: static;
        background: rgba(255,255,255,0.95);
        box-shadow: none;
        border-radius: 5px;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        display: none;
      }

      .dropdown.open .dropdown-content {
        display: block;
      }

      .hamburger {
        display: flex;
      }
    }

    /* Hamburger animation when active */
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    

         .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .main-section {
            text-align: center;
            padding: 60px 0;
            animation: fadeIn 1.2s ease-in-out;
        }

        .main-section h1 {
            font-size: 3.4em;
            font-weight: 600;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
            margin-bottom: 15px;
            color: white;
        }

        .main-section p {
            font-size: 1.3em;
            max-width: 1100px;
            margin: 0 auto;
            line-height: 1.8;
            color: #f5f5f5;
        }

        .buttons {
            margin: 30px 0;
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .lotteryBtn {
            padding: 15px 35px;
            font-size: 1.2em;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            background: #ffffff;
            color: #f36358;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .lotteryBtn:hover {
            background: #f36358;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .gift-code {
            background: white;
            padding: 40px;
            border-radius: 20px;
            margin: 30px 0;
            animation: slideIn 1s ease-in-out;
        }

        .gift-code h2 {
            font-size: 2.2em;
            font-weight: 600;
            margin-bottom: 20px;
            color: #f36358;
            text-shadow: none;
            text-align: center;
        }

        .gift-code p {
            font-size: 1.1em;
            line-height: 1.8;
            color: black;
        }

        .gift-code .code {
            font-size: 1em;
            font-weight: bold;
            color: #f36358;
            text-align: center;
            margin-top: 20px;
            background: #f5f5f5;
            padding: 15px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        .gift-code .code:hover {
            transform: scale(1.05);
        }

        .tech-specs {
            background: white;
            padding: 40px;
            border-radius: 20px;
            margin: 30px 0;
            animation: slideIn 1s ease-in-out;
        }

        .tech-specs strong {
            font-size: 1.5em;
            font-weight: 600;
            margin-bottom: 20px;
            color: #f36358;
            text-shadow: none;
            
        }

        .tech-specs p {
            font-size: 1.auto;
        }

        .tech-specs table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        .tech-specs th, .tech-specs td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            color: black;
        }

        .tech-specs th {
            background: #f36358;
            color: white;
            font-weight: 600;
        }

        .tech-specs td {
            background: white;
            color: black;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideIn {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 768px) {
            header h1 {
                font-size: 2.8em;
            }

            header p {
                font-size: 1.1em;
            }

            .buttons {
                flex-direction: column;
                align-items: center;
            }

            .lotteryBtn {
                width: 100%;
                max-width: 280px;
            }

            .gift-code, .tech-specs {
                padding: 20px;
            }

              .lottery-section {
                padding: 20px;
            }

            .center-img {
                max-width: 90%;
            }

             .main-section h1 {
            font-size: 2em;
            font-weight: 600;
        }


        .main-section p {
            font-size: 16px;
           
        }

        }


        .lottery-section {
            background: white;
            padding: 40px;
            border-radius: 20px;
            margin: 30px 0;
            animation: slideIn 1s ease-in-out;
        }

        .lottery-section h2 {
            font-size: 2.2em;
            font-weight: 600;
            margin-bottom: 20px;
            color: #f36358;
            text-shadow: none;
        }

        .lottery-section h3 {
            font-size: 1.8em;
            font-weight: 600;
            margin: 20px 0;
            color: #f36358;
        }


         .lottery-section h4 {
            font-size: 1.4em;
            font-weight: 600;
            margin: 20px 0;
            color: #f36358;
        }

        .lottery-section p, .lottery-section li {
            font-size: 17px;
            line-height: 1.8;
            color: black;

        }

        .lottery-section ul {
            list-style-type: disc;
            padding-left: 20px;
            margin: 15px 0;
        }

         .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);
        }



        
        .faq-item {
            margin-bottom: 15px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .faq-item h3 {
            font-size: 1.2em;
            font-weight: 600;
            color: black;
            padding: 15px;
            cursor: pointer;
            background: #f5f5f5;
            border-radius: 10px;
            margin: 0;
            transition: background 0.3s ease, transform 0.2s ease;
        }

        .faq-item h3:hover {
            background: #ff9b8f;
            color: white;
            transform: translateX(5px);
        }

        .faq-answer {
            font-size: 1.1em;
            line-height: 1.8;
            color: black;
            padding: 15px;
            display: none;
            background: white;
            border-radius: 10px;
        }

        .faq-answer.active {
            display: block;
            animation: fadeInAnswer 0.5s ease-in-out;
        }

        .faq-answer ul {
            list-style-type: disc;
            padding-left: 20px;
            margin: 15px 0;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideIn {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInAnswer {
            from { opacity: 0; max-height: 0; }
            to { opacity: 1; max-height: 500px; }
        }

        @media (max-width: 768px) {
            header h1 {
                font-size: 2.8em;
            }

            .lottery-section {
                padding: 20px;
            }

            .faq-item h3 {
                font-size: 1.1em;
            }

            .faq-answer {
                font-size: 1em;
            }
        }



        /* ess pages  */


                .greeting-section {
    
    color: white;
    text-align: center;
    padding: 3rem 1rem;
    position: relative;
    max-width: 1200px;   
    width: 100%;       
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    box-sizing: border-box;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .greeting-section {
        padding: 2rem 1rem;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .greeting-section {
        padding: 1.5rem 1rem;
        border-radius: 6px;
        font-size: 0.9rem;  /* scale text smaller if needed */
    }
}

        .greeting-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,255,255,0.2), transparent);
            opacity: 0.3;
        }
        .greeting-section h1 {
            font-size: 2.8rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            position: relative;
        }
        .content-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        .content-block {
            margin-bottom: 3rem;
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .content-block:hover {
            transform: translateY(-5px);
        }
        .content-block h2 {
            color: #f36358;
            font-size: 2rem;
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        .content-block h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: #ff9b8f;
        }
        .content-block p {
            margin: 0.8rem 0;
            font-size: 1.1rem;
            color: #000;
        }
        .value-list, .mission-list {
            list-style-type: none;
            padding-left: 0;
        }
        .value-list li, .mission-list li {
            position: relative;
            padding-left: 2rem;
            margin: 0.5rem 0;
            font-size: 1.1rem;
            color: #000;
        }
        .value-list li::before, .mission-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #ff9b8f;
            font-weight: bold;
            font-size: 1.2rem;
        }
        .highlight-section {
            background: linear-gradient(135deg, #f36358, #ff9b8f);
            color: white;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1.5rem 0;
            font-weight: 500;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
       
        @media (max-width: 768px) {
            .greeting-section h1 {
                font-size: 2rem;
            }
            .content-container {
                padding: 1rem;
            }
            .content-block {
                padding: 1.5rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }


          .uniqueGlowButton {
            background-color: #59a559;
            color: white;
            padding: 15px 25px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(144, 238, 144, 0.4);
        }
        .uniqueGlowButton:hover {
            background-color: #76c776;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(144, 238, 144, 0.6);
        }
        .uniqueGlowButton:active {
            transform: translateY(0);
            box-shadow: 0 2px 10px rgba(144, 238, 144, 0.2);
        }
        .buttonContainer {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100px;
            width: 100%;
        }
        @media (max-width: 768px) {
            .uniqueGlowButton {
                padding: 15px 20px;
                font-size: 14px;
            }
            .buttonContainer {
                height: 80px;
            }
        }
        @media (max-width: 480px) {
            .uniqueGlowButton {
                padding: 10px 15px;
                font-size: 12px;
            }
            .buttonContainer {
                height: 60px;
            }
        }



        /* 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;
            }
        }