/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #00c800;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 150px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: opacity 0.3s;
}

.nav-list a:hover {
    opacity: 0.8;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, #00c800 0%, #78d700 100%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    padding: 80px 40px 60px;
}

.mobile-menu.active {
    transform: translateX(0);
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 50px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 50px;
    height: 50px;
    z-index: 2001;
}

.mobile-menu-header {
    text-align: left;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.mobile-menu-logo {
    height: 60px;
    width: auto;
}

.mobile-nav {
    flex: 1;
    display: flex;
    align-items: flex-start;
    padding-top: 40px;
}

.mobile-nav ul {
    list-style: none;
    text-align: left;
    width: 100%;
}

.mobile-nav li {
    margin: 25px 0;
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    display: block;
    transition: opacity 0.3s;
}

.mobile-menu-footer {
    padding-top: 30px;
}

.mobile-social {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.mobile-social-icon {
    width: 55px;
    height: 55px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.mobile-social-icon:hover {
    transform: scale(1.1);
}

.mobile-social-icon img {
    width: 30px;
    height: 30px;
}

.mobile-nav a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0;
}

.hero-promo-banner {
    width: 100%;
    display: block;
    padding: 0;
    margin: 0;
}

.promo-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Check Code Section */
.check-code {
    background-color: #00c800;
    padding: 60px 0;
}

.check-code-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.check-code-box {
    background-color: white;
    border-radius: 20px;
    padding: 50px 40px;
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.percentage-display {
    position: relative;
    text-align: center;
}

.percentage {
    font-size: 64px;
    font-weight: 900;
    color: #00a000;
    margin-bottom: 20px;
}

.progress-bar-wrapper {
    width: 100%;
    margin-bottom: 20px;
}

.progress-bar {
    width: 100%;
    height: 35px;
    background-color: #e0e0e0;
    border-radius: 25px;
    overflow: visible;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8585 50%, #ff6b6b 100%);
    border-radius: 25px;
    position: relative;
    transition: width 0.5s ease;
    box-shadow: 0 2px 8px rgba(255,107,107,0.4);
    min-width: 0px;
}

.percentage-label {
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.check-code-cta {
    color: white;
    flex: 1;
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.check-code-cta {
    color: white;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-description {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-primary {
    background-color: #ccff00;
    color: #333;
    font-size: 20px;
    font-weight: 700;
    padding: 15px 50px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: #b8e600;
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
}

/* How to Win Section */
.how-to-win {
    background-color: white;
    padding: 80px 0;
}

.section-title-green {
    font-family: 'Russo One', sans-serif;
    font-size: 51px;
    color: #00a000;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.step-icon {
    width: 180px;
    height: 180px;
    margin: 0;
    border-radius: 50%;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.step-text {
    color: #00a000;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
    max-width: 180px;
    margin: 0;
}

.step-text strong {
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}

/* FAQ Section */
.faq {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border: 2px solid #00c800;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background-color: white;
    border: none;
    padding: 20px 25px;
    text-align: left;
    cursor: pointer;
    font-size: 26px;
    font-weight: 700;
    color: #1B9E03;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #008000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-icon::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid white;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon::before {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px 20px;
    max-height: 1000px;
    overflow: visible;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    display: block;
}

.faq-item:not(.active) .faq-answer {
    max-height: 0;
    padding: 0 25px;
    overflow: hidden;
    display: none;
}

.faq-answer p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.8;
}

.faq-answer ol {
    margin-left: 20px;
    color: #666;
    line-height: 1.8;
}

.faq-answer li {
    margin-bottom: 10px;
    font-size: 16px !important;
}

/* Footer */
.footer {
    background-color: #00c800;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.footer-logo img {
    height: 60px;
    width: auto;
    max-width: 180px;
    margin-bottom: 10px;
}

.footer-info {
    text-align: left;
}

.footer-company {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 30px;
    flex: 1;
}

.footer-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    text-align: center;
}

.footer-social-wrapper {
    text-align: right;
}

.footer-social-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon img {
    width: 25px;
    height: 25px;
}

/* Popup Modal */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-modal {
    background-color: white;
    border: 3px solid #00c800;
    border-radius: 30px;
    max-width: 95%;
    width: 520px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    padding: 35px 25px 25px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.popup-overlay.active .popup-modal {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #333;
    font-size: 35px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 35px;
    height: 35px;
    transition: color 0.3s;
    z-index: 10;
}

.popup-close:hover {
    color: #00c800;
}

.popup-content {
    text-align: center;
}

.popup-title {
    font-family: 'Barlow', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #00c800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.popup-description {
    font-family: 'Barlow', sans-serif;
    font-size: 20px;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.5;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popup-input {
    width: 100%;
    padding: 20px 25px;
    font-size: 18px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    background-color: #f5f5f5;
    outline: none;
    transition: border-color 0.3s;
    font-family: 'Barlow', sans-serif;
}

.popup-input:focus {
    border-color: #00c800;
    background-color: white;
}

.popup-submit-btn {
    width: 100%;
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
    color: white;
    background-color: #00c800;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    font-family: 'Barlow', sans-serif;
    text-transform: uppercase;
}

.popup-submit-btn:hover {
    background-color: #00a000;
    transform: translateY(-2px);
}

.popup-submit-btn:active {
    transform: translateY(0);
}

.popup-submit-btn:disabled {
    cursor: not-allowed;
    background-color: #cccccc;
    opacity: 1;
}

.popup-submit-btn:disabled:hover {
    transform: none;
    background-color: #cccccc;
}

/* Button Loading State */
.btn-text,
.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-loading {
    gap: 10px;
}

.btn-spinner {
    display: inline-block;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 0.8s linear infinite;
    flex-shrink: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Popup */
.popup-success {
    position: relative;
    padding: 5px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.confetti-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.success-header {
    font-family: 'Barlow', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #00c800;
    font-style: italic;
    margin: 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.success-title {
    font-family: 'Barlow', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #666;
    margin: 0;
    line-height: 1.1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.prize-image-container {
    position: relative;
    z-index: 2;
    margin: 5px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.prize-image {
    max-width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
}

.prize-overlay-text {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Barlow', sans-serif;
    font-size: 11px;
    font-style: italic;
    color: white;
    margin: 0;
    text-align: center;
    white-space: nowrap;
    pointer-events: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.verification-badge {
    background-color: white;
    border: 2px solid #00c800;
    border-radius: 50px;
    padding: 5px 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 3px 0;
    position: relative;
    z-index: 1;
}

.checkmark {
    color: #00c800;
    font-size: 16px;
    font-weight: 700;
}

.verification-text {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #00c800;
}

.reference-code {
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    color: #666;
    margin: 2px 0;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.btn-claim {
    width: 100%;
    max-width: 450px;
    padding: 12px 30px;
    font-size: 17px;
    font-weight: 700;
    color: white;
    background-color: #00c800;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    font-family: 'Barlow', sans-serif;
    text-transform: uppercase;
    margin-top: 3px;
    box-shadow: 0 5px 15px rgba(0, 200, 0, 0.3);
    position: relative;
    z-index: 1;
}

.btn-claim:hover {
    background-color: #00a000;
    transform: translateY(-2px);
}

.btn-claim:active {
    transform: translateY(0);
}

/* Error Popup */
.popup-error-modal {
    border-color: #ff4444;
}

.popup-error {
    position: relative;
    padding: 5px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.error-header {
    font-family: 'Barlow', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #ff4444;
    font-style: italic;
    margin: 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.error-title {
    font-family: 'Barlow', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ff4444;
    margin: 0;
    line-height: 1.2;
    text-align: center;
    position: relative;
    z-index: 1;
}

.error-message-box {
    background-color: #ffe5e5;
    border: 2px solid #ff4444;
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 10px 0;
    width: 100%;
    max-width: 450px;
}

.error-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ff4444;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    flex-shrink: 0;
}

.error-message-content {
    flex: 1;
    text-align: left;
}

.error-message-title {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ff4444;
    margin: 0 0 5px 0;
}

.error-message-text {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ff4444;
    margin: 0;
}

.promo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.promo-text {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    margin: 0;
}

.promo-logo {
    max-width: 250px;
    height: auto;
    object-fit: contain;
}

.btn-shop {
    width: 100%;
    max-width: 450px;
    padding: 12px 30px;
    font-size: 17px;
    font-weight: 700;
    color: white;
    background-color: #ff4444;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    font-family: 'Barlow', sans-serif;
    text-transform: capitalize;
    margin-top: 5px;
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.3);
    position: relative;
    z-index: 1;
}

.btn-shop:hover {
    background-color: #dd0000;
    transform: translateY(-2px);
}

.btn-shop:active {
    transform: translateY(0);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    /* Header Mobile */
    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .logo img {
        height: 40px;
        max-width: 120px;
    }

    /* Hero Mobile */
    .hero-background {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .subtitle-text {
        font-size: 18px;
    }

    .prize-amount {
        font-size: 32px;
    }

    .hero-promo-banner {
        position: static;
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    /* Check Code Mobile */
    .check-code {
        padding: 40px 0;
    }

    .check-code-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .check-code-box {
        padding: 30px 20px;
        min-width: auto;
        width: 100%;
        max-width: 350px;
    }

    .check-code-box {
        padding: 30px 20px;
        margin: 0 auto 30px;
    }

    .percentage {
        font-size: 56px;
    }

    .percentage-label {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-description {
        font-size: 16px;
    }

    .btn-primary {
        font-size: 18px;
        padding: 12px 40px;
    }

    /* How to Win Mobile */
    .how-to-win {
        padding: 60px 0;
    }

    .section-title-green {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step-card {
        gap: 12px;
    }

    .step-icon {
        width: 150px;
        height: 150px;
    }

    .step-text {
        font-size: 12px;
        max-width: 170px;
        line-height: 1.3;
    }

    .step-text strong {
        font-size: 13px;
    }

    /* FAQ Mobile */
    .faq {
        padding: 60px 0;
    }

    .faq-question {
        font-size: 16px;
        padding: 15px 20px;
    }

    .faq-answer {
        padding: 0 20px;
        font-size: 14px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 15px;
    }

    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-left {
        align-items: center;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }

    .footer-right {
        align-items: center;
    }

    .footer-center {
        text-align: center;
    }

    .footer-social-wrapper {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    /* Popup Mobile */
    .popup-modal {
        width: 90%;
        max-width: 90%;
        padding: 30px 20px 20px;
        max-height: 85vh;
        border-radius: 20px;
        margin: auto;
    }

    .popup-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .popup-description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .popup-input {
        padding: 15px 20px;
        font-size: 16px;
    }

    .popup-submit-btn {
        padding: 15px;
        font-size: 18px;
    }

    /* Error Popup Mobile */
    .popup-error-modal {
        width: 90%;
        max-width: 90%;
        padding: 30px 15px 20px;
        border-radius: 20px;
        margin: auto;
    }

    .popup-error {
        padding: 5px;
        gap: 10px;
    }

    .error-header {
        font-size: 28px;
    }

    .error-title {
        font-size: 18px;
        line-height: 1.3;
    }

    .error-message-box {
        padding: 12px 15px;
        gap: 12px;
        max-width: 100%;
    }

    .error-icon {
        width: 35px;
        height: 35px;
        font-size: 24px;
    }

    .error-message-title {
        font-size: 14px;
        margin-bottom: 3px;
    }

    .error-message-text {
        font-size: 13px;
    }

    .promo-text {
        font-size: 14px;
    }

    .promo-logo {
        max-width: 200px;
    }

    .btn-shop {
        max-width: 100%;
        padding: 12px 25px;
        font-size: 16px;
    }

    /* Success Popup Mobile */
    .popup-success {
        padding: 10px 5px;
        gap: 10px;
    }

    .success-header {
        font-size: 28px;
    }

    .success-title {
        font-size: 18px;
    }

    .prize-image-container {
        max-width: 100%;
        padding: 10px;
    }

    .prize-image {
        max-width: 200px;
    }

    .prize-overlay-text {
        font-size: 12px;
        bottom: 15px;
    }

    .verification-badge {
        padding: 8px 20px;
        font-size: 14px;
    }

    .reference-code {
        font-size: 14px;
    }

    .btn-claim {
        max-width: 100%;
        padding: 12px 25px;
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 28px;
    }

    .subtitle-text {
        font-size: 16px;
    }

    .prize-amount {
        font-size: 28px;
    }

    .section-title {
        font-size: 20px;
    }

    .check-code-box {
        padding: 25px 15px;
    }

    .percentage {
        font-size: 48px;
    }

    /* Popup Extra Small Mobile */
    .popup-modal {
        width: 90%;
        max-width: 90%;
        padding: 25px 15px 15px;
        max-height: 85vh;
        border-radius: 20px;
        margin: auto;
    }

    .popup-close {
        top: 8px;
        right: 12px;
        font-size: 30px;
        width: 30px;
        height: 30px;
    }

    .popup-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .popup-description {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .popup-input {
        padding: 12px 18px;
        font-size: 15px;
    }

    .popup-submit-btn {
        padding: 12px;
        font-size: 16px;
    }

    /* Error Popup Extra Small Mobile */
    .popup-error-modal {
        width: 90%;
        max-width: 90%;
        padding: 25px 12px 15px;
        border-radius: 20px;
        margin: auto;
    }

    .popup-error {
        padding: 5px;
        gap: 8px;
    }

    .error-header {
        font-size: 24px;
    }

    .error-title {
        font-size: 16px;
        line-height: 1.3;
    }

    .error-message-box {
        padding: 10px 12px;
        gap: 10px;
        border-radius: 12px;
    }

    .error-icon {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }

    .error-message-title {
        font-size: 13px;
    }

    .error-message-text {
        font-size: 12px;
    }

    .promo-section {
        gap: 8px;
        margin: 8px 0;
    }

    .promo-text {
        font-size: 13px;
    }

    .promo-logo {
        max-width: 180px;
    }

    .btn-shop {
        padding: 10px 20px;
        font-size: 15px;
        margin-top: 5px;
    }

    /* Success Popup Extra Small Mobile */
    .popup-success {
        padding: 8px 5px;
        gap: 8px;
    }

    .success-header {
        font-size: 24px;
    }

    .success-title {
        font-size: 16px;
        line-height: 1.3;
    }

    .prize-image-container {
        padding: 8px;
        margin: 5px 0;
    }

    .prize-image {
        max-width: 180px;
    }

    .prize-overlay-text {
        font-size: 11px;
        bottom: 12px;
    }

    .verification-badge {
        padding: 6px 15px;
        font-size: 13px;
        gap: 6px;
    }

    .checkmark {
        font-size: 16px;
    }

    .reference-code {
        font-size: 13px;
        margin: 5px 0;
    }

        .btn-claim {
            padding: 10px 20px;
            font-size: 15px;
            margin-top: 5px;
        }
    }

/* Tablet Styles */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 52px;
    }

    .subtitle-text {
        font-size: 20px;
    }

    .prize-amount {
        font-size: 40px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .check-code-wrapper {
        gap: 40px;
    }

    .hero-promo-banner {
        max-width: 150px;
    }

    .mobile-nav a {
        font-size: 20px;
    }
}

/* Tablet Styles */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 52px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .prize-amount {
        font-size: 40px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Syarat & Ketentuan Page Styles */
.syarat-title-section {
    background-color: white;
    padding: 60px 20px;
    text-align: center;
}

.syarat-main-title {
    font-family: 'Russo One', sans-serif;
    line-height: 1.3;
    margin-bottom: 15px;
}

.syarat-title-green {
    font-size: 32px;
    color: #00c800;
    font-weight: 600;
    display: block;
}

.syarat-title-black {
    font-size: 42px;
    color: #000;
    font-weight: 900;
    display: block;
}

.syarat-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 10px;
}

.syarat-content {
    background: #FFFFFF;
}

.syarat-content .container {
    background: transparent;
    box-shadow: none;
}

.syarat-intro {
    padding: 0;
    margin-bottom: 20px;
    background: transparent;
    box-shadow: none;
    text-align: center;
}

.syarat-intro p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.syarat-intro p:last-child {
    margin-bottom: 0;
}

.syarat-highlight {
    font-weight: 700;
    text-align: center;
    margin-top: 30px !important;
}

.syarat-section {
    padding: 0;
    margin-bottom: 20px;
}

.syarat-section-title {
    font-family: 'Russo One', sans-serif;
    font-size: 18px;
    margin-bottom: 25px;
    padding-bottom: 0;
}

.syarat-subsection-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 25px 0 15px;
}

.syarat-list {
    list-style: none;
    padding-left: 0;
}

.syarat-list li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #333;
    text-align: justify;
}

.syarat-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    top: -2px;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.8;
}

.syarat-list li strong {
    font-weight: 700;
}

/* Footer Styles */
.footer {
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 16px;
    color: #00c800;
    font-weight: 600;
}

.footer-info {
    flex: 2;
}

.footer-info p {
    font-size: 14px;
    margin: 5px 0;
    color: #ccc;
}

.footer-social {
    flex: 1;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background-color 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
    background-color: #00c800;
}

.social-icon img {
    width: 24px;
    height: 24px;
}

/* Responsive Styles for Syarat Page */
@media (max-width: 768px) {
    .syarat-title-section {
        padding: 40px 20px;
    }

    .syarat-title-green {
        font-size: 24px;
    }

    .syarat-title-black {
        font-size: 32px;
    }

    .syarat-subtitle {
        font-size: 14px;
    }

    .syarat-intro {
        padding: 25px;
        text-align: center;
    }

    .syarat-intro p {
        font-size: 14px;
        text-align: center;
    }

    .syarat-section {
        padding: 25px;
    }

    .syarat-section-title {
        font-size: 20px;
    }

    .syarat-subsection-title {
        font-size: 15px;
    }

    .syarat-list li {
        font-size: 14px;
        padding-left: 25px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-info {
        order: 2;
    }

    .footer-logo {
        text-align: center;
    }
}
