
        :root {
            --background-dark: 0, 0, 0;
            --text-dark: #e0e0e0;
            --card-background-dark: #222244;
            --border-dark: #555577;
            --highlight-blue: #00aaff;
            --button-text-dark: #ffffff;
            --input-background-dark: #1a1a33;
            --input-border-dark: #444466;
            --success-green: #00e676;
            --button-color: #1b57c4; 
            --primary-color-dark: #0077c9;
            --primary-color: #00aaff;

            --background-light: #f0f2f5;
            --text-light: #333333;
            --card-background-light: #ffffff;
            --border-light: #cccccc;
            --button-text-light: #ffffff;
            --input-background-light: #e9ecef;
            --input-border-light: #ced4da;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            background-color: rgb(var(--background-dark));
            color: var(--text-dark);
            line-height: 1.6;
        }
        
        *, *::before, *::after {
            box-sizing: inherit;
        }
        
        
       
       
       
        /* Content Section */
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }


        .content-section {
            padding: 40px 0;
        }
        h1, h2 {
            color: #007bff;
            text-align: center;
            margin-bottom: 25px;
            font-weight: 700;
        }
        #main-headline {
            margin-top: 50px; 
        }
        
        .intro-paragraph {
            text-align: center;
            font-size: 1.1em;
            max-width: 800px;
            margin: 0 auto 40px;
        }
        
        /* Step-by-Step Section */
        .step-section {
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            margin: 0 20px 30px;
            text-align: center;
            display: none; 
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
        }
        
        .step-section.active {
            display: block; 
            opacity: 1;
            transform: translateY(0);
        }
        
        
        #step-1-reward h2 {
            margin-top: -10px; 
        }

        
        .form-container {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .form-container input[type="text"] {
            width: 100%;
            padding: 15px;
            margin: 15px 0 25px;
            border: 2px solid ;
            border-radius: 8px;
            font-size: 1.1em;
            text-align: center;
            transition: border-color 0.3s ease;
        }
        
        .form-container input[type="text"]:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        
        .summary-card {
            background-color: none;
            border: none;
            border-radius: 10px;
            padding: 25px;
            text-align: left;
            margin-bottom: 30px;
        }

        .summary-card h3 {
            color: var(--primary-color-dark);
            font-size: 1.4em;
            margin-top: 0;
        }
        
        .summary-card p {
            font-size: 1.1em;
            margin: 10px 0;
        }
        
        
        /* Reward Selection */
        .reward-options-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }
        
        /* Reward Card */
        .reward-option-card {
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            flex: 1 1 calc(33% - 40px);
            max-width: 250px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            min-height: 120px;
            position: relative;
            overflow: hidden;
        }
        
        .reward-option-card input[type="radio"] {
            display: none;
        }
        
        
        .reward-option-card input[type="radio"]:checked + .card-content {
            position: relative;
            background: linear-gradient(110deg, #010838, #020525);
        }


        
       
        .reward-option-card input[type="radio"]:checked + .card-content .card-icon-new,
        .reward-option-card input[type="radio"]:checked + .card-content .card-value,
        .reward-option-card input[type="radio"]:checked + .card-content .card-text {
            color: var(--primary-color);
        }

        .card-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            padding: 10px;
            transition: all 0.3s ease;
            border: none; 
            border-radius: 8px;
        }

        .card-content .card-icon-new {
            font-size: 2.5em;
            color: var(--secondary-color);
            margin-bottom: 5px;
            transition: color 0.3s ease;
        }

        .card-content .card-value {
            font-size: 2em;
            font-weight: 700;
            line-height: 1.2;
            margin: 0;
            transition: color 0.3s ease;
        }
        
        .card-content .card-text {
            font-size: 1.1em;
            font-weight: 400;
            text-transform: capitalize;
            margin-top: 5px;
            transition: color 0.3s ease;
        }

        .btn-primary {
            background-color: var(--button-color);
            color: var(--button-text-light);
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            font-size: 1.2em;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
            display: inline-block;
            text-decoration: none;
            margin-inline: auto;
        }
        
        .btn-primary:hover:not(:disabled) {
            background-color: var(--primary-color-dark);
            transform: translateY(-2px);
        }
        
        .btn-primary:disabled {
            background-color: #cccccc;
            cursor: not-allowed;
            transform: none;
        }
        
        /* Loader Container */
        .loader-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 150px; 
            margin-top: 60px;  
            margin-bottom: 20px;
            display: none; 
        }

        /* Loader  */
        .loader-new {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }

        .loader-new .dot {
            width: 15px;
            height: 15px;
            background-color: var(--primary-color);
            border-radius: 50%;
            animation: bounce 1.4s infinite ease-in-out both;
        }

        .loader-new .dot:nth-child(1) {
            animation-delay: -0.32s;
        }
        .loader-new .dot:nth-child(2) {
            animation-delay: -0.16s;
        }
        @keyframes bounce {
            0%, 80%, 100% {
                transform: scale(0);
            }
            40% {
                transform: scale(1);
            }
        }
        
        .loader-container p {
            font-size: 1.1em;
            color: var(--text-dark);
        }
        
        body.light-mode .loader-container p {
            color: var(--text-light)
        }


        .loader-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            margin-top: 40px;
        }


        .loader {
            color:  var(--primary-color);
            font-size: 10px;
            width: 1em;
            height: 1em;
            border-radius: 50%;
            position: relative;
            text-indent: -9999em;
            animation: mulShdSpin 1.3s infinite linear;
            transform: translateZ(0);
            margin-bottom: 40px;
           
        }
        @keyframes mulShdSpin {
            0%,
            100% {
                box-shadow: 0 -3em 0 0.2em, 
                2em -2em 0 0em, 3em 0 0 -1em, 
                2em 2em 0 -1em, 0 3em 0 -1em, 
                -2em 2em 0 -1em, -3em 0 0 -1em, 
                -2em -2em 0 0;
            }
            12.5% {
                box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 
                3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, 
                -2em 2em 0 -1em, -3em 0 0 -1em, 
                -2em -2em 0 -1em;
            }
            25% {
                box-shadow: 0 -3em 0 -0.5em, 
                2em -2em 0 0, 3em 0 0 0.2em, 
                2em 2em 0 0, 0 3em 0 -1em, 
                -2em 2em 0 -1em, -3em 0 0 -1em, 
                -2em -2em 0 -1em;
            }
            37.5% {
                box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
                3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, 
                -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
            }
            50% {
                box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
                3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, 
                -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
            }
            62.5% {
                box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
                3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, 
                -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
            }
            75% {
                box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 
                3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, 
                -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
            }
            87.5% {
                box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 
                3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, 
                -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
            }
        }
        
        
        
        /* Offer Container */
        .offer-container {
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            margin-bottom: 40px;
            display: none; 
            flex-direction: column; 
            align-items: center; 
        }
        
        .offer-intro {
            font-size: 1.05em;
            margin-bottom: 30px;
            max-width: 700px;
            margin-inline: auto;
            text-align: center; 
        }
        
        .offers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            width: 100%; 
            max-width: 900px; 
            margin: 0 auto; 
        }
        
        .offer-card {
            background-color: var(--input-background-dark);
            border: 1px solid var(--input-border-dark);
            border-radius: 12px;
            padding: 20px;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        body.light-mode .offer-card {
            background-color: var(--input-background-light);
            border: 1px solid var(--input-border-light);
        }
        
        .offer-card-header {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .offer-icon {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            flex-shrink: 0;
        }
        
        .offer-card-title h3 {
            margin: 0;
            font-size: 1.05em;
            line-height: 1.25;
            height: 6em;          
            overflow: hidden;
        }
        
        .offer-card-description {
            font-size: 0.9em;
            color: #bdc5d1;
            margin-top: 10px;
            flex-shrink: 0;
        }


        .btn-offer {
            display: block;
            width: 100%;
            text-align: center;
            background-color: var(--button-color);
            color: var(--button-text-light);
            padding: 14px 20px;
            border: none;
            border-radius: 8px;
            font-size: 1em;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.2s ease;
            margin-top: auto; 
        }
        
        .btn-offer:hover {
            background-color: var(--primary-color-dark);
            transform: translateY(-2px);
        }

        @media (max-width: 900px) {
            .offer-card-title h3 {
                height: auto;
            }
        }
        body.light-mode .offer-card-description {
            color: var(--primary-color);
        }

        

        
        /* FAQ Section */
        .faq-section {
            padding: 40px 0;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            margin: 40px 20px;
        }
        
        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .faq-item {
            border-bottom: 1px solid var(--border-dark);
        }
        
        .faq-item:last-child {
            border-bottom: none;
        }
        
        .faq-question-new {
            width: 100%;
            background: none;
            border: none;
            padding: 18px 0;
            text-align: left;
            font-size: 1.1em;
            font-weight: 600;
            color: var(--primary-color-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.3s ease;
        }
        
        .faq-question-new:hover,
        .faq-question-new:focus-visible {
            color: var(--primary-color);
            outline: none;
        }
        
        .toggle-icon {
            font-size: 1.5em;
            line-height: 1;
            transition: transform 0.3s ease;
        }

        .faq-answer-new {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out, opacity 0.4s ease-out;
            opacity: 0;
            padding: 0 10px; 
            color: var(--text-dark);
            will-change: max-height, opacity, padding; 
        }

        body.light-mode .faq-answer-new {
            color: var(--text-light)
        }

        
        .faq-answer-new[aria-hidden="false"] {
            max-height: 1000px; 
            opacity: 1;
            padding: 18px 10px;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 1.8em;
            }
            h2 {
                font-size: 1.5em;
            }
            .reward-option-card {
                flex: 1 1 calc(50% - 20px); 
                max-width: 300px;
            }
            .offer-card {
                padding: 15px;
            }
            .btn-primary {
                padding: 12px 25px;
                font-size: 1.1em;
            }
        }
        
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5em;
            }
            .reward-option-card {
                flex: 1 1 90%; 
                max-width: 350px; 
            }
            .offers-grid {
                grid-template-columns: 1fr; 
            }
            .btn-primary {
                width: 90%; 
                max-width: 300px;
            }
        }
        @media (max-width: 600px) {
            .intro-paragraph {
                font-size: 1rem;
                max-width: 90%;
                padding: 0 10px;
            }
            .loader-container p {
                font-size: 1.05em;
            }
        }
        
        /* Modal  */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        
        .modal-overlay.is-visible {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background-color: var(--input-background-dark);
            padding: 30px;
            border-radius: 12px;
            border: 1px solid var(--input-border-dark);
            box-shadow: 0 10px 30px var(--shadow-dark);
            width: 90%;
            max-width: 500px;
            position: relative;
            text-align: left;
            transform: scale(0.95);
            transition: transform 0.3s ease;
        }
        
        .modal-overlay.is-visible .modal-content {
            transform: scale(1);
        }
        
        body.light-mode .modal-content {
            background-color: var(--input-background-light);
            border-color: var(--input-border-light);
            box-shadow: 0 10px 30px var(--shadow-light);
        }
        
        .modal-close-btn {
            position: absolute;
            top: 10px;
            right: 15px;
            background: none;
            border: none;
            font-size: 2em;
            color: var(--text-dark);
            cursor: pointer;
            line-height: 1;
        }
        body.light-mode .modal-close-btn {
            color: var(--text-light);
        }
        .modal-content h3 {
            margin-top: 0;
            margin-bottom: 20px;
            color: var(--primary-color-dark);
            font-size: 1.5em;
        }
        
        .instructions-list {
            padding-left: 20px;
            margin-bottom: 25px;
        }
        
        .instructions-list li {
            margin-bottom: 10px;
            line-height: 1.5;
        }
        
        #open-offer-btn {
            width: 100%;
        }
        
        /* Status */
        .status-message-container {
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            margin-top: 20px;
            font-size: 1.1em;
            
        }
        .status-message-container.success {
            background-color: none;
            color: white;
        }
        
        .status-message-container.error {
            background-color: none;
            color: #dc3545;
        }
        .status-message-container.info {
            background-color: none;
            color: #17a2b8;
        }
        .loader-container p {
            margin-top: 20px;
        }
        @media (max-width: 900px) {
            #step-4-status-message-container.info {
                font-size: 0.95rem;
            }
        }


        /* */
        .discord-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px; 
           
            background-color: #5865F2; 
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            margin-top: 15px; 
            
            transition: background-color 0.2s ease, transform 0.2s ease;
        }
        .discord-button:hover {
            background-color: #4f5bda;
            transform: translateY(-2px); 
        }
        
        .discord-button svg {
            width: 24px;
            height: 24px;
            fill: currentColor; 
        }