* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #FAF6F0; /* ප්‍රධාන පසුබිම් වර්ණය */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 15px;
}

/* ප්‍රධාන සුදු කාඩ්පත - උඩ සහ යට කොන් හතරම වටකුරුයි */
.main-card {
    background-color: #ffffff;
    width: 100%;
    max-width: 420px;
    border-radius: 24px; /* හතර කොණම වටකුරු කිරීම */
    padding: 25px 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid #f0f0f0;
    margin-bottom: 20px; /* FAQ කොටසට ඉඩ තැබීම */
}

.logo {
    width: 130px;
    margin-bottom: 15px;
}

.title {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    line-height: 1.3;
    margin-bottom: 18px;
}

.title span {
    color: #CC0000; /* Target Red */
}

/* Progress Bar */
.progress-bar-bg {
    background-color: #EAEAEA;
    height: 8px;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 25px;
    overflow: hidden;
}

.progress-bar-fill {
    background-color: #CC0000;
    height: 100%;
    width: 35%;
    border-radius: 10px;
}

/* Steps */
.steps-list {
    text-align: left;
    margin-bottom: 25px;
    padding-left: 5px;
}

.step-item {
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 500;
}

.step-item span.highlight {
    color: #CC0000;
    font-weight: 700;
}

/* CTA Button */
.cta-button {
    display: block;
    width: 100%;
    background: linear-gradient(180deg, #E60000 0%, #CC0000 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    padding: 16px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.4);
}

/* Timer & Badge */
.timer-text {
    font-size: 13px;
    color: #555;
    margin-top: 18px;
    margin-bottom: 15px;
}

.badge-live {
    display: inline-flex;
    align-items: center;
    background-color: #F7F7F7;
    border: 1px solid #E0E0E0;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 12px;
    color: #444;
    font-weight: 500;
}

.dot {
    height: 8px;
    width: 8px;
    background-color: #CC0000;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* content-wrapper - FAQ සහ Footer සාමාන්‍ය පසුබිම මත තැබීමට */
.content-wrapper {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* FAQ Section (Matching Base Background) */
.faq-section {
    background-color: #FAF6F0; /* ප්‍රධාන පසුබිම් වර්ණයමයි */
    width: 100%;
    padding: 10px 20px;
    text-align: left;
    margin-top: 10px;
}

.faq-title {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid #E5E0D8;
    padding: 15px 0;
}

.faq-question {
    font-size: 13px;
    color: #222;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    font-size: 12px;
    color: #555;
    line-height: 1.6;
    margin-top: 10px;
    display: none;
    padding-right: 10px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

.arrow {
    transition: transform 0.2s;
    font-size: 10px;
    color: #888;
}

/* Footer */
.footer {
    background-color: #FAF6F0; /* ප්‍රධාන පසුබිම් වර්ණයමයි */
    width: 100%;
    padding: 20px;
    font-size: 11px;
    color: #888;
    text-align: center;
    margin-top: auto;
}

.footer-links {
    margin-bottom: 8px;
}

.footer-links a {
    color: #CC0000;
    text-decoration: none;
    margin: 0 8px;
}
