*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #F4F7F4;
    color: #1a2e1a;
    min-height: 100vh;
}

.site-header {
    background: #1B4332;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-logo { color: #D4A017; font-size: 18px; font-weight: 700; text-decoration: none; }
.site-logo span { color: #fff; font-weight: 400; }
.site-nav a {
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    text-decoration: none;
    margin-left: 16px;
}

.hero {
    background: #1B4332;
    padding: 28px 20px 36px;
    text-align: center;
}
.hero-badge {
    display: inline-block;
    background: #D4A017;
    color: #5C3A00;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.hero h1 { color: #fff; font-size: 24px; font-weight: 600; margin-bottom: 6px; }
.hero p { color: rgba(255,255,255,0.6); font-size: 14px; }

.page {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 16px 48px;
}

/* Filter chips */
.chip-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 16px 0 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.chip-row::-webkit-scrollbar { display: none; }
.chip {
    background: #fff;
    border: 1px solid #C8DEC8;
    color: #2D5A2D;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 20px;
    white-space: nowrap;
    cursor: pointer;
    flex-shrink: 0;
}
.chip.active { background: #1B4332; color: #fff; border-color: #1B4332; }

.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #4B7A5A;
    margin: 8px 0 14px;
    padding-bottom: 8px;
    border-bottom: 1.5px solid #D4E8D4;
}

/* Card grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
}

.result-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #D8EAD8;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow 0.15s, transform 0.15s;
}
.result-card:hover {
    box-shadow: 0 4px 16px rgba(27,67,50,0.12);
    transform: translateY(-2px);
}

/* Ticket stub header */
.card-stub {
    background: #1B4332;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.stub-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(212,160,23,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.stub-icon svg { width: 15px; height: 15px; fill: #D4A017; }
.stub-lines {
    border-left: 2px dashed rgba(212,160,23,0.4);
    padding-left: 10px;
}
.stub-code {
    color: #D4A017;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}
.stub-name {
    color: rgba(255,255,255,0.65);
    font-size: 10px;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card body */
.card-body {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.card-date {
    font-size: 12px;
    color: #5A7A5A;
}
.card-cta {
    font-size: 12px;
    color: #1B4332;
    font-weight: 600;
    margin-top: auto;
}

/* Info section */
.info-section {
    background: #fff;
    border: 1px solid #D8EAD8;
    border-radius: 12px;
    padding: 20px;
    margin-top: 28px;
}
.info-section h2 {
    font-size: 15px;
    font-weight: 600;
    color: #1B4332;
    margin-bottom: 10px;
}
.info-section p {
    font-size: 13px;
    color: #4A6A4A;
    line-height: 1.7;
    margin-bottom: 6px;
}

.disclaimer {
    font-size: 11px;
    color: #7A9A7A;
    text-align: center;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #E0EDE0;
}




/* Mobile */
@media (max-width: 480px) {
    .results-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .hero h1 { font-size: 20px; }
    .site-nav { display: none; }
}

@media (max-width: 340px) {
    .results-grid { grid-template-columns: 1fr; }
}