:root {
    /* --- CONSOLIDATED POLISHED LIGHT MODE --- */
    --primary-color: #f57224;
    --primary-dark: #d45703;
    --accent-color: #fe724c;
    --brand-start: #f57224;
    --brand-end: #ff1744;

    --ink: #101114;
    --ink-light: #555;
    --ink-weak: #888;

    /* Light mode background color softened for a lighter appearance */
    --background-color: #f5f5f5;
    --surface-bg: var(--background-color);
    --card-background: #ffffff;
    --card-bg: var(--card-background);

    --border-color: #e0e0e0;
    --border: var(--border-color);

    --shadow-color: rgba(245, 114, 36, 0.1);
    --shadow: 0 8px 32px var(--shadow-color);

    --success-color: #28a745;
    --badge-green: #28a745;
    --badge-green-light: #e8f5e9;
    --hot-color: #ff3a5e;
    --badge-red: #ff3a5e;
    --flash-color: #ffc107;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-pill: 999px;
    --radius: 16px; /* Default radius */
}

html, body {
    background-color: var(--background-color);
    color: var(--ink);
    font-family: 'Inter', 'Poppins', 'Segoe UI', Arial, sans-serif;
    margin: 0;
    overflow-y: auto;
}

/* =================================================================== */
/* ============= POLISHED STATIC PAGES (ABOUT, CONTACT, FAQ) ========= */
/* =================================================================== */

.static-page-container {
    max-width: 900px;
    margin: 24px auto;
    padding: 0 16px;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.static-page-header {
    text-align: center;
    margin-bottom: 32px;
    padding: 40px 20px;
    background: var(--card-background);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px var(--shadow-color);
}

.static-page-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary-dark);
}

.static-page-header p {
    font-size: 1.2rem;
    margin-top: 10px;
    color: var(--ink-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.static-content-card {
    background: var(--card-background);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 8px 32px var(--shadow-color);
    line-height: 1.7;
}

.static-content-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    margin: 0 0 16px 0;
}

/* --- About Us Page --- */
.about-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}
.about-us-item {
    text-align: center;
}
.about-us-item .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}
.about-us-item h3 {
    font-family: 'Poppins', sans-serif;
    margin: 0 0 8px 0;
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
}
.contact-info .info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}
.contact-info .info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}
.contact-info .info-item a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}
.contact-info .info-item a:hover {
    text-decoration: underline;
}
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-form .form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}
.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    box-sizing: border-box;
}
.contact-form .form-group textarea {
    resize: vertical;
}
.contact-form .btn-primary {
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

/* --- FAQ Page --- */
.faq-container {
    padding: 16px 32px;
}
.faq-item {
    border-bottom: 1px solid var(--border-color);
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    text-align: left;
}
.faq-question i {
    transition: transform 0.3s ease;
}
.faq-item[open] .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 0 20px 0;
    line-height: 1.7;
    animation: fadeIn 0.4s;
}
.faq-answer a {
    color: var(--primary-color);
    font-weight: 600;
}

/* --- Responsive for Static Pages --- */
@media (max-width: 768px) {
    .static-page-header h1 {
        font-size: 2.2rem;
    }
    .about-us-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* New Welcome Coupon Modal Styling */
.coupon-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.coupon-modal-overlay:not([hidden]) {
    opacity: 1;
    pointer-events: auto;
}

.coupon-card-modern {
    display: flex;
    width: 100%;
    max-width: 750px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.coupon-modal-overlay:not([hidden]) .coupon-card-modern {
    transform: scale(1);
}

.coupon-close-modern {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.2s;
}

.coupon-close-modern:hover {
    background: rgba(0, 0, 0, 0.3);
}


.coupon-art-left {
    width: 25%;
    background: #f0f2f5;
    position: relative;
    overflow: hidden;
}

.coupon-content-modern {
    width: 75%;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coupon-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
}

.coupon-description {
    font-size: 16px;
    color: #666;
    margin: 0 0 25px;
}

.coupon-offer {
    margin: 0 auto 25px;
    background-color: #fff4e6;
    border: 2px dashed #ff9d2b;
    border-radius: 10px;
    padding: 10px 25px;
    display: inline-flex;
    align-items: center;
}

.coupon-value {
    font-size: 48px;
    font-weight: 700;
    color: #ff5733;
    margin-right: 10px;
}

.coupon-text {
    font-size: 24px;
    font-weight: 600;
    color: #ff5733;
}

.coupon-terms {
    font-size: 12px;
    color: #999;
    margin: 0 0 25px;
}

.coupon-claim-btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #ff5733;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

.coupon-claim-btn:hover {
    background-color: #e64a19;
}

.coupon-claim-btn:active {
    transform: scale(0.98);
}

.coupon-decline-link {
    margin-top: 15px;
    font-size: 14px;
    color: #999;
    text-decoration: none;
    transition: color 0.2s;
}

.coupon-decline-link:hover {
    color: #333;
    text-decoration: underline;
}

.coupon-handle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #ff5733;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 15;
    color: white;
}

.coupon-handle svg {
    width: 24px;
    height: 24px;
}

/* Gift Box and Firecrackers */
.coupon-art-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gift-box {
    position: relative;
    width: 80px;
    height: 80px;
    background-color: #ff5733;
    animation: gift-animation 1s ease-in-out infinite;
}

.gift-box::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 80px;
    background-color: #ffc300;
    left: 32.5px;
}

.gift-box::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 15px;
    background-color: #ffc300;
    top: 32.5px;
}

@keyframes gift-animation {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.firecracker {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #ffc300;
    border-radius: 50%;
    animation: firecracker-animation 1s ease-out infinite;
}

.firecracker:nth-child(2) {
    left: 20%;
    top: 20%;
    animation-delay: 0.2s;
}

.firecracker:nth-child(3) {
    right: 20%;
    top: 30%;
    animation-delay: 0.4s;
}

.firecracker:nth-child(4) {
    left: 30%;
    bottom: 20%;
    animation-delay: 0.6s;
}

.firecracker:nth-child(5) {
    right: 30%;
    bottom: 30%;
    animation-delay: 0.8s;
}

@keyframes firecracker-animation {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .coupon-card-modern {
        flex-direction: column;
        max-width: 350px;
    }
    .coupon-art-left {
        width: 100%;
        height: 150px;
        order: -1;
    }
    .coupon-content-modern {
        width: 100%;
        padding: 30px;
    }
    .coupon-title {
        font-size: 24px;
    }
    .coupon-offer {
        padding: 5px 15px;
    }
    .coupon-value {
        font-size: 36px;
    }
    .coupon-text {
        font-size: 20px;
    }
}
