:root {
    --primary-blue: #005f9e;
    --light-blue: #0081d0;
    --brand-sub: #a1ef7a; /* greenish FoodieClaim/SaveSams color from header/footer */
    --dark-text: #1a202c;
    --gray-text: #4a5568;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --bg-gray: #f2f7fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    background-color: #ffffff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.eyebrow {
    font-size: 0.70rem;
    font-weight: 700;
    color: var(--light-blue);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    text-align: center;
}

.main-heading, .section-heading {
    font-family: var(--font-heading);
    color: #123055;
    text-align: center;
}

.main-heading {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.section-heading {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.sub-heading {
    text-align: center;
    color: var(--gray-text);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Timer Bar Styles (formerly red bar) */
.timer-text {
    font-family: monospace;
    font-size: 1.05rem;
    font-weight: 700;
    background: rgba(0,0,0,0.15);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
}

/* Header */
.main-header {
    background-color: var(--primary-blue);
    color: white;
    padding: 1rem 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.brand-main {
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.brand-sub {
    color: var(--brand-sub);
    font-weight: 600;
    font-size: 0.85rem;
}

.menu-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* Main layouts */
main {
    max-width: 600px;
    margin: 0 auto;
}

section {
    padding: 3rem 1.5rem;
}

/* Card Section */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2.5rem;
    padding-bottom: 2rem;
}

.reward-card-container {
    width: 100%;
    max-width: 380px;
    margin-bottom: 2rem;
    perspective: 1000px;
}

.reward-card {
    background: linear-gradient(135deg, #1fa2ff 0%, #12d8fa 50%, #00609C 100%);
    background: linear-gradient(135deg, #2b8cb8 0%, #005a92 100%);
    border-radius: 12px;
    padding: 1.5rem;
    color: white;
    box-shadow: 0 15px 35px rgba(0,90,146,0.3);
    position: relative;
    overflow: hidden;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-header {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.card-brand {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
}

.card-type {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 2px;
}

.card-center h2 {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 2.2rem;
    opacity: 0.15;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    letter-spacing: 4px;
    pointer-events: none;
}

.card-footer {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}

.points {
    text-align: right;
}

.points-label {
    display: block;
    font-size: 0.65rem;
    text-transform: capitalize;
    opacity: 0.9;
}

.points-value {
    font-size: 2rem;
    font-weight: 800;
    margin-top: -2px;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 1.1rem 2rem;
    width: 100%;
    max-width: 380px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,95,158,0.25);
    transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: #004d80;
    box-shadow: 0 6px 16px rgba(0,95,158,0.35);
}

.social-proof {
    margin-top: 1.2rem;
    font-size: 0.85rem;
    color: var(--gray-text);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.icon-party {
    font-size: 1rem;
}

/* How It Works */
.how-it-works {
    background-color: #f7f9fc;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(255,255,255,0.7) 0,
        rgba(255,255,255,0.7) 12px,
        transparent 12px,
        transparent 24px
    );
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
    position: relative;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.step {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.step-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.step-icon.dark-blue {
    background-color: #0d3b66;
    color: white;
}

.step-icon.bright-blue {
    background-color: #0077b6;
    color: white;
}

.step-icon.green {
    background-color: #4CAF50;
    color: white;
}

.step-content h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #123055;
    margin-bottom: 0.2rem;
}

.step-content p {
    font-size: 0.8rem;
    color: var(--gray-text);
    line-height: 1.4;
}

/* FAQ Section */
.faq {
    padding-top: 3.5rem;
    padding-bottom: 2rem;
}

.faq-list {
    margin-top: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    border-top: 1px solid #e2e8f0;
}

.faq-item.border-bottom {
    border-bottom: 1px solid #e2e8f0;
}

.faq-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0.5rem;
    background: none;
    border: none;
    font-weight: 700;
    font-size: 1.15rem;
    color: #001a36;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content p {
    padding: 0 0.5rem 1.25rem;
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
}

.faq-item.active .faq-content {
    max-height: 200px;
}

.chevron {
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    color: #0077b6;
}

.faq-item.active .chevron {
    transform: rotate(45deg);
    color: #0b7eb5;
}

/* Bottom CTA */
.bottom-cta-section {
    padding-top: 1rem;
    padding-bottom: 4rem;
}

.bottom-cta-card {
    background-color: var(--bg-gray);
    text-align: center;
    padding: 3rem 1.5rem;
    border-radius: 16px;
}

.bottom-cta-card h2 {
    font-family: var(--font-heading);
    color: #123055;
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.bottom-cta-card p {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Footer */
.site-footer {
    background-color: #0b223d; /* Very dark blue */
    color: white;
    text-align: center;
    padding: 3rem 1.5rem;
}

.site-footer h3 {
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 1px;
    font-family: var(--font-body);
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.brand-sub-footer {
    color: var(--brand-sub);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.footer-links span {
    opacity: 0.4;
}

.footer-links a:hover {
    opacity: 1;
}

.copyright {
    font-size: 0.75rem;
    opacity: 0.5;
}

@media (max-width: 480px) {
    .main-heading { font-size: 1.8rem; }
    .section-heading { font-size: 1.5rem; }
    .card-center h2 { font-size: 1.7rem; letter-spacing: 2px; }
    .reward-card { height: 180px; padding: 1.25rem; }
    .points-value { font-size: 1.6rem; }
    .timer-text { font-size: 1rem; }
    .btn-primary { font-size: 0.95rem; padding: 1rem 1.5rem; }
    .faq-toggle { font-size: 1.05rem; }
    .bottom-cta-card { padding: 2.5rem 1rem; }
}

@media (max-width: 360px) {
    .card-center h2 { font-size: 1.4rem; letter-spacing: 1px; }
    .main-heading { font-size: 1.6rem; }
}
