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

:root {
    --primary-color: #e31837;
    --secondary-color: #005daa;
    --accent-color: #ffc72c;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --gold: #ffd700;
    --silver: #c0c0c0;
    --bronze: #cd7f32;
    --dark: #1a1a1a;
    --gray: #f5f5f5;
    --light: #ffffff;
    --text-dark: #333;
    --text-light: #666;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: var(--light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(227, 24, 55, 0.1);
}

.nav-link-primary {
    background: var(--primary-color);
    color: var(--light);
}

.nav-link-primary:hover {
    background: #c4122f;
    color: var(--light);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    height: 90px;
    width: auto;
}

.nav-brand .glizzy-emoji {
    font-size: 75px;
    line-height: 1;
}

/* Countdown Timer */
.countdown {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.countdown-label {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.time-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.time-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    opacity: 0.9;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(227, 24, 55, 0.75) 0%, rgba(196, 18, 47, 0.75) 25%, rgba(0, 93, 170, 0.75) 75%, rgba(0, 74, 143, 0.75) 100%),
                url('Costco_outside.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light);
    padding: 6rem 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

/* FREE Starburst Sticker */
.free-sticker {
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%) rotate(12deg);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.35));
    z-index: 2;
    pointer-events: none;
}

.free-sticker::before,
.free-sticker::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    clip-path: polygon(
        50% 0%, 61% 11%, 75% 3%, 78% 18%, 93% 18%, 89% 33%,
        100% 42%, 91% 53%, 97% 66%, 84% 69%, 82% 84%, 69% 78%,
        58% 90%, 50% 79%, 42% 90%, 31% 78%, 18% 84%, 16% 69%,
        3% 66%, 9% 53%, 0% 42%, 11% 33%, 7% 18%, 22% 18%,
        25% 3%, 39% 11%
    );
}

.free-sticker::after {
    transform: rotate(15deg);
}

.free-sticker-text {
    position: relative;
    z-index: 3;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
    margin-top: -6px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-title-line {
    display: inline;
}

.mobile-break-line {
    display: inline;
}

.desktop-emoji {
    display: inline;
}

.hero-title .mobile-emoji {
    display: none !important;
}

.glizzy-emoji {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--dark);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

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

/* Sections */
.section {
    padding: 5rem 0;
}

.section-gray {
    background: var(--gray);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

/* About Section */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 1.25rem;
    background: var(--light);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.feature h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.feature p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Rules Section */
.rules-content {
    max-width: 1000px;
    margin: 0 auto;
}

.rule-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    break-inside: avoid;
    page-break-inside: avoid;
}

/* FAQ Section - 2 Column Masonry Layout */
.faq-container {
    column-count: 2;
    column-gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-container .rule-card {
    display: inline-block;
    width: 100%;
    margin-bottom: 2rem;
}

.rule-card.primary-rules {
    border-left: 5px solid var(--primary-color);
}

.rule-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.rule-card ol, .rule-card ul {
    margin-left: 1.5rem;
}

.rule-card li {
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.rule-card strong {
    color: var(--dark);
}

.survey-link {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: 700;
}

.survey-link:hover {
    color: var(--primary-color);
}

.rule-card .note {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #fff3cd;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #856404;
}


.bonus-challenges {
    margin-top: 3rem;
}

.bonus-challenges h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.bonus-card {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ffb300 100%);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-card:nth-child(7) {
    grid-column: 2;
}

.bonus-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.bonus-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.bonus-card p {
    color: var(--dark);
    font-size: 0.95rem;
}

.rule-note {
    background: var(--gray);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 2rem;
}

/* Map Section */
.map-container {
    background: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.route-details {
    max-width: 700px;
    margin: 0 auto;
}

.route-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.route-details ul {
    list-style-position: inside;
    color: var(--text-light);
}

.route-details li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

/* Costco Grid */
.costco-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.costco-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s;
    border-left: 4px solid var(--primary-color);
}

.costco-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.costco-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
}

.costco-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.county {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.address {
    color: var(--text-light);
    font-size: 0.95rem;
}

.hours {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray);
    line-height: 1.4;
}

.hours strong {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.distance-info {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: rgba(0, 93, 170, 0.1);
    border-radius: 5px;
}

.costco-card.bonus {
    border-left: 4px solid var(--accent-color);
    background: linear-gradient(135deg, #fff9e6 0%, var(--light) 100%);
}

.bonus-location {
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-location h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.bonus-note {
    font-style: italic;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Challenge Gallery */
.challenge-gallery {
    margin: 4rem 0 3rem;
}

.challenge-gallery h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-item {
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--light);
}

/* Food Court Facts */
.food-court-facts {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ffb300 100%);
    padding: 2rem;
    border-radius: 10px;
    max-width: 800px;
    margin: 3rem auto 0;
    color: var(--dark);
}

.food-court-facts h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.food-court-facts p {
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.menu-item {
    background: rgba(255, 255, 255, 0.3);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
    cursor: default;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.calorie-note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 1rem;
}

/* Glizzy Facts */
.glizzy-facts {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ffb300 100%);
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    color: var(--dark);
}

.glizzy-facts h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.glizzy-facts p {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.glizzy-facts ul {
    list-style-position: inside;
}

.glizzy-facts li {
    margin-bottom: 0.3rem;
}

/* Meet-up Grid */
.important-notice {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 5px solid #ff9800;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(255, 152, 0, 0.2);
}

.important-notice strong {
    color: #e65100;
}

/* Important Notice Box */
.important-notice {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #856404;
    font-size: 1rem;
}

.important-notice strong {
    color: #721c24;
}

.meetup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.meetup-card:nth-child(9) {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
}

.meetup-card {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-top: 3px solid var(--secondary-color);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.meetup-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.meetup-card.highlight {
    border-top: 3px solid var(--primary-color);
    background: linear-gradient(135deg, #fff5f5 0%, var(--light) 100%);
}

.meetup-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.departure-time {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.travel-time {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.meetup-card p {
    color: var(--text-dark);
    margin: 0.3rem 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #005daa 0%, #004a8f 25%, #e31837 75%, #c4122f 100%);
    color: var(--light);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.disclaimer {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* Email Signup Section */
.email-signup-section {
    background: linear-gradient(135deg, #f8f9fa 0%, var(--gray) 100%);
    text-align: center;
    padding: 4rem 0;
}

.email-signup-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.email-signup-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.email-signup-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid var(--gray);
    border-radius: 50px;
    outline: none;
    transition: border-color 0.3s;
    font-family: 'Poppins', sans-serif;
}

.email-input:focus {
    border-color: var(--primary-color);
}

.email-signup-form .cta-button {
    margin: 0;
}

.email-signup-form .cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.privacy-note {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.8;
    margin-top: 1rem;
}

.signup-message {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.signup-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.signup-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Disclaimer Section */
.disclaimer-section {
    background: var(--gray);
}

.disclaimer-content {
    display: grid;
    gap: 2rem;
}

.disclaimer-box {
    background: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-color);
}

.disclaimer-box.highlight {
    background: linear-gradient(135deg, #fff9e6 0%, #fffef7 100%);
    border-left: 4px solid #ff9800;
}

.disclaimer-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.disclaimer-box.highlight h3 {
    color: #e65100;
}

.disclaimer-box ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.disclaimer-box li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.disclaimer-box strong {
    color: var(--primary-color);
}

.disclaimer-box.highlight strong {
    color: #e65100;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--light);
    padding: 2rem 0;
    text-align: center;
}

.footer-note {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.footer-note a {
    color: var(--light);
    text-decoration: underline;
    opacity: 0.9;
    transition: opacity 0.3s;
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--light);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Route Progress Bar - VERTICAL */
.route-progress-container {
    padding: 2rem;
    background: var(--light);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.route-progress-bar {
    position: relative;
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem 0;
}

.progress-track {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 8px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    border-radius: 4px;
    transform: translateX(-50%);
}

.progress-stop {
    position: relative;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-stop:nth-child(even) {
    flex-direction: row-reverse;
}

.stop-marker {
    width: 50px;
    height: 50px;
    background: var(--light);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--primary-color);
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.stop-marker.start {
    background: var(--primary-color);
    color: var(--light);
    border-color: var(--primary-color);
}

.stop-marker.finish {
    background: var(--accent-color);
    color: var(--dark);
    border-color: var(--accent-color);
}

.stop-marker.bailout {
    width: 40px;
    height: 40px;
    background: var(--light);
    border: 3px solid var(--secondary-color);
    font-size: 1rem;
}

.progress-stop:hover .stop-marker {
    transform: scale(1.15);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.stop-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 0 1.5rem;
    min-width: 180px;
}

.progress-stop:nth-child(even) .stop-label {
    text-align: center;
}

.stop-miles {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 0.25rem;
}

.stop-bailout {
    display: block;
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 0.25rem;
}

.tip-box {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    margin-top: 2rem;
}

.tip-box strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.tip-box ul {
    margin-top: 0.75rem;
    padding-left: 1.5rem;
}

.tip-box li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .free-sticker {
        width: 70px;
        height: 70px;
    }

    .free-sticker-text {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .countdown-timer {
        gap: 1rem;
    }

    .time-number {
        font-size: 2.5rem;
    }

    .navbar .container {
        gap: 0.5rem;
    }

    .nav-brand {
        font-size: 1.2rem;
    }

    .nav-logo {
        height: 70px;
    }

    .nav-brand .glizzy-emoji {
        font-size: 60px;
    }

    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .costco-grid {
        grid-template-columns: 1fr;
    }

    .meetup-grid,
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-card:nth-child(7) {
        grid-column: 1;
    }
    
    .meetup-card:nth-child(9) {
        grid-column: 1;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 200px;
    }

    .stop-label {
        min-width: 140px;
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }
    
    .stop-marker {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .free-sticker {
        width: 55px;
        height: 55px;
    }

    .free-sticker-text {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.4;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }
    
    .hero-title .glizzy-emoji {
        font-size: 1.5rem;
    }
    
    .desktop-emoji {
        display: none;
    }
    
    .hero-title .mobile-emoji {
        display: inline-block !important;
    }
    
    .hero-title-line {
        display: block;
    }
    
    .mobile-break-line {
        display: block;
    }

    .stat-number {
        font-size: 2rem;
    }

    .time-number {
        font-size: 2rem;
    }

    .time-box {
        min-width: 60px;
    }

    .nav-brand {
        font-size: 1rem;
    }

    .nav-logo {
        height: 55px;
    }
    
    .nav-brand .glizzy-emoji {
        font-size: 45px;
    }

    .countdown {
        padding: 1rem;
    }

    .rule-card, .bonus-card, .meetup-card {
        padding: 1rem;
    }
    
    .faq-container {
        column-count: 1;
    }

    .email-signup-form {
        flex-direction: column;
    }

    .email-input {
        min-width: 100%;
    }

    .email-signup-form .cta-button {
        width: 100%;
    }
    
    .stop-label {
        min-width: 120px;
        margin: 0 1rem;
    }
    
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}
/* Food Court Hours Notice */
.food-court-hours-notice {
    background: linear-gradient(135deg, #fff9e6 0%, #fffef7 100%);
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    padding: 1.5rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.food-court-hours-notice h3 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.food-court-hours-notice p {
    margin: 0.25rem 0;
    color: var(--text-dark);
}

/* =====================================================
   VERIFY PAGE STYLES
   ===================================================== */

/* Page-specific body for verify/results */
.page-verify body,
.page-results body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

/* Alternate navbar style for inner pages */
.navbar-simple .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Subtitle text */
.subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Card component */
.card {
    background: var(--light);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.card h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Step number badge */
.step-number {
    background: var(--accent-color);
    color: var(--dark);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Upload area */
.upload-area {
    border: 3px dashed #ccc;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: #fafafa;
}

.upload-area:hover, .upload-area.dragover {
    border-color: var(--primary-color);
    background: #fff5f5;
}

.upload-area.has-file {
    border-color: var(--success-color);
    background: #f0fff4;
}

.upload-area input { display: none; }
.upload-icon { font-size: 4rem; margin-bottom: 1rem; }
.upload-area h3 { color: var(--text-dark); margin-bottom: 0.5rem; }
.upload-area p { color: var(--text-light); }

/* File info display */
.file-info {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 8px;
    display: none;
}

.file-info.show { display: block; }
.file-info .filename { font-weight: 700; color: var(--success-color); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
}

.btn-primary { background: var(--primary-color); color: white; }
.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(227, 24, 55, 0.4);
}

.btn-success { background: var(--success-color); color: white; }
.btn-success:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.btn:disabled { opacity: 0.6; cursor: not-allowed; }

.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

/* Verification results */
.verification-results { display: none; }
.verification-results.show { display: block; }

.result-header {
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.result-header.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid var(--success-color);
}

.result-header.partial {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
    border: 2px solid var(--accent-color);
}

.result-header h3 { font-size: 1.8rem; margin-bottom: 0.25rem; }

/* Ride Stats Grid */
.ride-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--gray);
    border-radius: 12px;
}

.ride-stat {
    text-align: center;
}

.ride-stat .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.ride-stat .label {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Costco grid for verify page */
.verify-costco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.costco-item {
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.costco-item.visited {
    background: #d4edda;
    border-left: 4px solid var(--success-color);
}

.costco-item.missed {
    background: #f8d7da;
    border-left: 4px solid var(--danger-color);
}

.costco-item .icon { font-size: 1.3rem; }
.costco-item .name { font-weight: 600; font-size: 0.95rem; }
.costco-item .distance { font-size: 0.8rem; color: var(--text-light); }
.costco-item .time { font-size: 0.75rem; color: var(--secondary-color); }

/* Bonus section */
.bonus-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px dashed #ddd;
}

/* Submission form */
.submission-form { display: none; }
.submission-form.show { display: block; }

.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group input[readonly] {
    background: var(--gray);
    color: var(--text-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

/* Checkbox group */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gray);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.checkbox-item:hover { background: #e9ecef; }
.checkbox-item input { width: auto; }

/* Consent checkbox */
.consent-section {
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: #fff9e6;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
}

.consent-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    line-height: 1.5;
}

.consent-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.consent-text {
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Loading spinner */
.loading { text-align: center; padding: 2rem; display: none; }
.loading.show { display: block; }

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Message alerts */
.message {
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    display: none;
}

.message.show { display: block; }
.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Help section */
.help-section {
    background: #fff9e6;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 0 10px 10px 0;
    margin-top: 1rem;
}

.help-section h4 { color: var(--secondary-color); margin-bottom: 0.75rem; }
.help-section ul { margin-left: 1.5rem; }
.help-section li { margin-bottom: 0.5rem; color: var(--text-light); }
.help-section strong { color: var(--text-dark); }

/* Simple footer for inner pages */
.footer-simple {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-simple a { color: var(--secondary-color); }

/* =====================================================
   RESULTS PAGE STYLES
   ===================================================== */

.year-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

/* Stats Cards */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--light);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.stat-card .number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.stat-card .label {
    color: var(--text-light);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Results Table */
.results-card {
    background: var(--light);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    overflow-x: auto;
}

.results-card h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.results-table {
    width: 100%;
    border-collapse: collapse;
}

.results-table th,
.results-table td {
    padding: 1rem 0.75rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.results-table th {
    background: var(--gray);
    font-weight: 700;
    color: var(--secondary-color);
    position: sticky;
    top: 0;
    white-space: nowrap;
}

.results-table tbody tr:hover { background: #f8f9fa; }

.results-table .rank {
    font-weight: 900;
    font-size: 1.2rem;
    width: 50px;
}

.rank-1 { color: var(--gold); }
.rank-2 { color: var(--silver); }
.rank-3 { color: var(--bronze); }

.rider-name { font-weight: 600; }

.costco-count { font-weight: 700; color: var(--primary-color); }
.costco-count.complete { color: var(--success-color); }

.time-cell { font-family: 'Courier New', monospace; font-weight: 600; }
.speed-cell { font-weight: 600; color: var(--secondary-color); }

/* Badges */
.badge {
    display: inline-block;
    padding: 0.2rem 0.4rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    margin: 0.1rem;
}

.badge-hotdog { background: #ffebee; color: #c62828; }
.badge-pizza { background: #fff3e0; color: #e65100; }
.badge-menu { background: #e8f5e9; color: #2e7d32; }
.badge-sample { background: #e3f2fd; color: #1565c0; }
.badge-speed { background: #fce4ec; color: #ad1457; }
.badge-spanish { background: #f3e5f5; color: #6a1b9a; }

.strava-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.strava-link:hover { text-decoration: underline; }

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.empty-state .icon { font-size: 4rem; margin-bottom: 1rem; }
.empty-state h3 { margin-bottom: 0.5rem; color: var(--text-dark); }

/* =====================================================
   ADMIN PAGE STYLES
   ===================================================== */

.admin-body {
    background: #1a1a2e;
    min-height: 100vh;
}

/* Login Screen */
.login-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
}

.login-card {
    background: var(--light);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.login-card h1 { color: var(--primary-color); margin-bottom: 0.5rem; }
.login-card p { color: var(--text-light); margin-bottom: 2rem; }

.login-card input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: inherit;
}

.login-card input:focus { outline: none; border-color: var(--secondary-color); }

/* Admin Panel */
.admin-panel { display: none; }
.admin-panel.show { display: block; }

.admin-header {
    background: linear-gradient(135deg, var(--dark) 0%, #16213e 100%);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header h1 {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logout-btn {
    background: var(--danger-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
}

/* Tabs */
.tabs { display: flex; gap: 0.5rem; margin-bottom: 2rem; }

.tab-btn {
    padding: 1rem 2rem;
    border: none;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.tab-btn:hover { background: rgba(255,255,255,0.2); }
.tab-btn.active { background: var(--light); color: var(--dark); }

.tab-count {
    background: var(--danger-color);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

/* Admin Card */
.admin-card {
    background: var(--light);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    margin-bottom: 1.5rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.card-title { font-size: 1.3rem; color: var(--dark); }
.card-meta { font-size: 0.9rem; color: var(--text-light); }

/* Status badges */
.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.status-pending { background: #fff3cd; color: #856404; }
.status-approved { background: #d4edda; color: #155724; }
.status-rejected { background: #f8d7da; color: #721c24; }
.status-duplicate { background: #e2e3e5; color: #383d41; }

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item {
    background: var(--gray);
    padding: 1rem;
    border-radius: 8px;
}

.info-item label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item .value {
    font-weight: 600;
    color: var(--dark);
    margin-top: 0.25rem;
}

/* Verification Details */
.verification-details {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.verification-details h4 { margin-bottom: 0.75rem; color: var(--secondary-color); }

.costco-mini-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.costco-mini {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.costco-mini.visited { background: #d4edda; color: #155724; }
.costco-mini.missed { background: #f8d7da; color: #721c24; }

/* Action Buttons */
.action-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-approve { background: var(--success-color); color: white; }
.btn-reject { background: var(--danger-color); color: white; }
.btn-duplicate { background: #6c757d; color: white; }

/* Hash Warning */
.hash-warning {
    background: #fff3cd;
    border-left: 4px solid var(--warning-color);
    padding: 1rem;
    border-radius: 0 8px 8px 0;
    margin-bottom: 1rem;
}

.hash-warning strong { color: #856404; }

/* Admin loading spinner */
.admin-loading { text-align: center; padding: 3rem; color: white; }

.admin-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

/* =====================================================
   VERIFY/RESULTS RESPONSIVE STYLES
   ===================================================== */

@media (max-width: 768px) {
    .form-row, .form-row-3 { grid-template-columns: 1fr; }
    .verify-costco-grid { grid-template-columns: 1fr 1fr; }
    .ride-stats { grid-template-columns: repeat(2, 1fr); }
    .results-table th, .results-table td { padding: 0.6rem 0.4rem; font-size: 0.85rem; }
    .badge { font-size: 0.6rem; padding: 0.15rem 0.3rem; }
    .admin-header { flex-direction: column; gap: 1rem; text-align: center; }
    .tabs { flex-wrap: wrap; }
    .tab-btn { flex: 1; min-width: 120px; }
}

@media (max-width: 480px) {
    .verify-costco-grid { grid-template-columns: 1fr; }
    .btn { width: 100%; text-align: center; }
    .btn-group { flex-direction: column; }
    .ride-stats { grid-template-columns: 1fr 1fr; }
    .results-table { font-size: 0.8rem; }
    .stat-card .number { font-size: 2.5rem; }
}