    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    
    body {
    font-family: 'Segoe UI', 'Thai Sans Serif', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    min-height: 100vh;
    }
    
    .container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    overflow: hidden;
    }
    
    .header {
    background: linear-gradient(135deg, #1F4788 0%, #2C3E50 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
    }
    
    .header h1 {
    font-size: 32px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }
    
    .header p {
    font-size: 14px;
    opacity: 0.9;
    }
    
    .stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    padding: 30px 20px;
    background: #F8F9FA;
    border-bottom: 2px solid #E0E0E0;
    }
    
    .stat-card {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .stat-card .number {
    font-size: 36px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 5px;
    }
    
    .stat-card .label {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    }
    
    .content {
    padding: 30px 20px;
    }
    
    .section-title {
    font-size: 20px;
    color: #1F4788;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #667eea;
    font-weight: bold;
    }
    
    .summary-table {
    width: 100%;
    margin-bottom: 40px;
    border-collapse: collapse;
    }
    
    .summary-table thead {
    background: #2C3E50;
    color: white;
    }
    
    .summary-table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    }
    
    .summary-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #E0E0E0;
    }
    
    .summary-table tbody tr:hover {
    background: #F5F5F5;
    }
    
    .summary-table tbody tr:nth-child(odd) {
    background: #FAFAFA;
    }
    
    .rank {
    font-weight: bold;
    color: #667eea;
    width: 40px;
    }
    
    .province-name {
    font-weight: 500;
    color: #1F4788;
    }

    .province-link {
    color: #667eea;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    }

    .province-link:hover {
    color: #764ba2;
    border-bottom-color: #667eea;
    }
    
    .count {
    text-align: center;
    font-weight: bold;
    color: #764ba2;
    }
    
    .total-row {
    background: #2C3E50 !important;
    color: white;
    font-weight: bold;
    }
    
    .total-row td {
    color: white;
    }
    
    .detail-section {
    margin-bottom: 30px;
    }
    
    .province-card {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .province-header {
    padding: 15px 20px;
    color: white;
    font-weight: bold;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    }
    
    .province-count {
    background: rgba(255,255,255,0.3);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    }
    
    .athletes-list {
    background: white;
    padding: 15px 20px;
    }
    
    .athletes-list ol {
    list-style-position: inside;
    line-height: 1.8;
    }
    
    .athletes-list li {
    padding: 5px 0;
    font-size: 13px;
    color: #333;
    }

    .athlete-highlight {
    background-color: #FFEB3B;
    padding: 3px 6px;
    border-radius: 3px;
    font-weight: 600;
    display: inline-block;
    }
    
    .search-box {
    margin-bottom: 30px;
    }
    
    .search-box input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
    }
    
    .search-box input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }
    
    .footer {
    background: #F8F9FA;
    padding: 20px;
    text-align: center;
    color: #666;
    font-size: 12px;
    border-top: 1px solid #E0E0E0;
    }
    
    .tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #E0E0E0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
    white-space: nowrap;
    margin-bottom: 0;
    }
    .tabs::-webkit-scrollbar { display: none; }

    .tab-btn {
    padding: 14px 15px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #999;
    transition: all 0.25s;
    border-bottom: 3px solid transparent;
    position: relative;
    bottom: -2px;
    flex-shrink: 0;
    white-space: nowrap;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    }
    .tab-btn:active { background: rgba(102,126,234,0.08); }
    .tab-btn.active {
    color: #667eea;
    border-bottom-color: #667eea;
    background: rgba(102,126,234,0.06);
    }

    .tabs-wrapper {
    position: relative;
    margin-bottom: 30px;
    }
    .tabs-wrapper::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 2px;
    width: 32px;
    background: linear-gradient(to right, transparent, white 80%);
    pointer-events: none;
    }
    
    .tab-content {
    display: none;
    }
    
    .tab-content.active {
    display: block;
    }

    /* Schedule Styles */
    .schedule-legend-container {
    padding: 20px;
    background: #F8F9FA;
    border-bottom: 2px solid #E0E0E0;
    }

    .legend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    }

    .legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    border-left: 3px solid #667eea;
    font-size: 12px;
    color: #333;
    }

    .legend-color {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    flex-shrink: 0;
    border: 1px solid #ddd;
    }

    .sched-day-buttons {
    display: flex;
    gap: 10px;
    padding: 20px;
    background: white;
    border-bottom: 1px solid #E0E0E0;
    flex-wrap: wrap;
    }

    .sched-day-btn {
    padding: 10px 20px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #333;
    }

    .sched-day-btn:hover {
    border-color: #667eea;
    color: #667eea;
    }

    .sched-day-btn.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }

    .sched-day-panel {
    display: none;
    }

    .sched-day-panel.active {
    display: block;
    }

    .schedule-tables-container {
    padding: 20px;
    }

    .schedule-table {
    width: 100%;
    margin-bottom: 30px;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .schedule-table thead {
    background: #2C3E50;
    color: white;
    }

    .schedule-table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    }

    .schedule-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #E0E0E0;
    font-size: 13px;
    }

    .schedule-table tbody tr:hover {
    background: #F5F5F5;
    }

    .schedule-table tbody tr:nth-child(odd) {
    background: #FAFAFA;
    }

    .time-badge {
    font-weight: 600;
    color: #667eea;
    white-space: nowrap;
    }

    .event-name {
    color: #333;
    font-weight: 500;
    }
    
    /* Bar Chart Styles */
    .bar-chart-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    }
    
    .bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.3s ease;
    }
    
    .bar-item.hidden {
    display: none;
    }
    
    .bar-label {
    width: 180px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    flex-shrink: 0;
    }
    
    .bar-container {
    flex: 1;
    height: 40px;
    background: #F0F0F0;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
    }
    
    .bar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    color: white;
    font-weight: bold;
    font-size: 13px;
    transition: width 0.5s ease;
    border-radius: 6px;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    }
    
    .bar-count {
    width: 45px;
    text-align: right;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    flex-shrink: 0;
    }
    
    .rank-num {
    width: 30px;
    text-align: center;
    font-weight: bold;
    color: #667eea;
    flex-shrink: 0;
    }
    
    .no-results {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 16px;
    }
    
    /* Transport Gallery Styles */
    .transport-hero {
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 50%, #1565c0 100%);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    }

    .transport-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    pointer-events: none;
    }

    .transport-hero h2 {
    font-size: 24px;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .transport-hero p {
    font-size: 14px;
    opacity: 0.85;
    }

    .transport-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
    }

    .transport-info-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-top: 4px solid #667eea;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
    }

    .transport-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.2);
    }

    .transport-info-card .icon {
    font-size: 32px;
    margin-bottom: 10px;
    }

    .transport-info-card h4 {
    font-size: 14px;
    color: #1F4788;
    margin-bottom: 6px;
    font-weight: 700;
    }

    .transport-info-card p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    }

    .gallery-section-title {
    font-size: 18px;
    color: #1F4788;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #667eea;
    display: flex;
    align-items: center;
    gap: 8px;
    }

    .transport-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    }

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

    .gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.25);
    }

    .gallery-img-wrap {
    position: relative;
    width: 100%;
    padding-top: 66%;
    overflow: hidden;
    background: #e8eaf6;
    }

    .gallery-img-wrap img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    }

    .gallery-card:hover .gallery-img-wrap img {
    transform: scale(1.07);
    }

    .gallery-img-wrap .img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(31,71,136,0.5) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    }

    .gallery-card:hover .img-overlay {
    opacity: 1;
    }

    .gallery-img-placeholder {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #9e9e9e;
    font-size: 12px;
    gap: 6px;
    }

    .gallery-img-placeholder span {
    font-size: 32px;
    }

    .gallery-caption {
    padding: 14px 16px;
    }

    .gallery-caption h4 {
    font-size: 14px;
    color: #1F4788;
    font-weight: 600;
    margin-bottom: 4px;
    }

    .gallery-caption p {
    font-size: 12px;
    color: #777;
    }

    /* Lightbox */
    .lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    }

    .lightbox-overlay.open {
    display: flex;
    }

    .lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 0 60px rgba(0,0,0,0.5);
    object-fit: contain;
    }

    .lightbox-caption {
    margin-top: 14px;
    color: white;
    font-size: 15px;
    opacity: 0.85;
    }

    .lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: white;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
    }

    .lightbox-close:hover { opacity: 1; }

    .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 36px;
    cursor: pointer;
    padding: 10px 18px;
    opacity: 0.6;
    transition: opacity 0.2s;
    user-select: none;
    }

    .lightbox-nav:hover { opacity: 1; }
    .lightbox-prev { left: 15px; }
    .lightbox-next { right: 15px; }

    @media (max-width: 768px) {
    .stats {
        grid-template-columns: 1fr;
    }
    
    .header h1 {
        font-size: 24px;
    }
    
    .province-header {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .bar-label {
        width: 120px;
        font-size: 12px;
    }
    
    .bar-count {
        width: 35px;
        font-size: 12px;
    }
    }

    .athlete-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    }
    .athlete-table thead {
    background: #F0F4FF;
    }
    .athlete-table th {
    padding: 8px 12px;
    text-align: left;
    font-weight: 600;
    color: #444;
    font-size: 12px;
    border-bottom: 2px solid #E0E0E0;
    }
    .athlete-table th:first-child { width: 36px; text-align: center; }
    .athlete-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #F0F0F0;
    vertical-align: middle;
    }
    .athlete-table tbody tr:hover { background: #F8F9FF; }
    .athlete-num { text-align: center; color: #999; font-size: 12px; }
    .athlete-name { font-weight: 500; color: #222; }
    .athlete-cat { color: #666; font-size: 12px; }
    .game-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    }
    .athlete-row.athlete-highlight td { background: #FFFDE7 !important; }
    .athlete-row.athlete-highlight .athlete-name { color: #B8860B; font-weight: 700; }
    /* ===== About Surat Thani Styles ===== */
    .about-hero {
    background: linear-gradient(135deg, #1a6b3a 0%, #2e8b57 40%, #20b2aa 100%);
    border-radius: 16px;
    padding: 50px 30px;
    margin-bottom: 28px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    }
    .about-hero::before {
    content: '';
    position: absolute; top: -60%; left: -30%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%);
    pointer-events: none;
    }
    .about-hero-content { position: relative; z-index: 1; }
    .about-hero-emoji { font-size: 52px; margin-bottom: 10px; }
    .about-hero h2 { font-size: 36px; font-weight: 800; margin-bottom: 8px; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
    .about-hero-sub { font-size: 16px; opacity: 0.92; margin-bottom: 20px; letter-spacing: 0.5px; }
    .about-hero-badges { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
    .about-badge {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(4px);
    }
    .about-info-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
    }
    .about-info-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    border-top: 4px solid #2e8b57;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .about-info-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
    .about-info-icon { font-size: 28px; margin-bottom: 8px; }
    .about-info-card h4 { font-size: 14px; font-weight: 700; color: #1F4788; margin-bottom: 6px; }
    .about-info-card p { font-size: 13px; color: #555; line-height: 1.6; }
    .about-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
    }
    .about-gallery-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    cursor: pointer;
    background: #f0f4f0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .about-gallery-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
    .about-gallery-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
    .about-gallery-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
    .about-gallery-card:hover .about-gallery-img-wrap img { transform: scale(1.08); }
    .about-gallery-img-wrap .img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.5) 100%);
    opacity: 0; transition: opacity 0.3s;
    }
    .about-gallery-card:hover .img-overlay { opacity: 1; }
    .about-gallery-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: #aaa; font-size: 13px; background: #f5f5f5; }
    .about-gallery-placeholder span:first-child { font-size: 36px; }
    .about-gallery-caption { padding: 12px 14px; background: white; }
    .about-gallery-caption h4 { font-size: 13px; font-weight: 700; color: #1a6b3a; margin-bottom: 3px; }
    .about-gallery-caption p { font-size: 12px; color: #777; }
    .about-highlights { background: #F8F9FA; border-radius: 12px; padding: 24px; margin-bottom: 16px; }
    .about-section-header h3 { font-size: 18px; color: #1F4788; font-weight: 700; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 3px solid #667eea; }
    .highlights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; }
    .highlight-card { border-radius: 12px; padding: 22px 16px; text-align: center; color: white; box-shadow: 0 4px 14px rgba(0,0,0,0.15); }
    .highlight-blue   { background: linear-gradient(135deg, #1F4788, #3a6bc5); }
    .highlight-purple { background: linear-gradient(135deg, #764ba2, #a855d8); }
    .highlight-green  { background: linear-gradient(135deg, #1a6b3a, #2e8b57); }
    .highlight-orange { background: linear-gradient(135deg, #e67e22, #f39c12); }
    .highlight-num { font-size: 30px; font-weight: 900; margin-bottom: 4px; }
    .highlight-label { font-size: 12px; opacity: 0.9; font-weight: 500; }

    .about-hero-badges a {
text-decoration: none;
color: inherit;
}

.about-hero-badges a:hover .about-badge {
opacity: 0.85;
transform: translateY(-2px);
transition: all 0.2s ease;
}

    /* ===== Food & Shopping Tab ===== */
    .food-hero {
    background: linear-gradient(135deg, #c0392b 0%, #e67e22 50%, #f39c12 100%);
    border-radius: 12px;
    padding: 36px 24px;
    margin-bottom: 24px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    }
    .food-hero::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 60%);
    pointer-events: none;
    }
    .food-hero-emoji { font-size: 48px; margin-bottom: 12px; }
    .food-hero h2 { font-size: 24px; font-weight: 800; margin-bottom: 8px; text-shadow: 1px 2px 4px rgba(0,0,0,0.3); }
    .food-hero-sub { font-size: 14px; opacity: 0.9; }

    .food-filter-bar {
    display: flex; gap: 10px; flex-wrap: wrap;
    margin-bottom: 20px; padding: 16px;
    background: #FFF8F0; border-radius: 10px;
    border: 1px solid #f5cba7;
    }
    .food-filter-btn {
    padding: 8px 18px;
    border: 2px solid #e67e22;
    background: white; border-radius: 20px;
    cursor: pointer; font-size: 13px;
    font-weight: 600; color: #e67e22;
    transition: all 0.25s ease;
    }
    .food-filter-btn:hover { background: #FEF0E0; }
    .food-filter-btn.active {
    background: linear-gradient(135deg, #c0392b, #e67e22);
    color: white; border-color: transparent;
    box-shadow: 0 4px 12px rgba(230,126,34,0.35);
    }

    .food-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px; margin-bottom: 30px;
    }
    .food-card {
    border-radius: 10px; overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    background: white; cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .food-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
    .food-card-img-wrap {
    position: relative; height: 180px;
    overflow: hidden; background: #f5f5f5;
    }
    .food-card-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover; transition: transform 0.35s ease;
    }
    .food-card:hover .food-card-img-wrap img { transform: scale(1.06); }
    .food-card-img-wrap .img-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.25); opacity: 0;
    transition: opacity 0.3s;
    }
    .food-card:hover .food-card-img-wrap .img-overlay { opacity: 1; }
    .food-card-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 8px; color: #bbb; font-size: 13px; background: #f9f0e7;
    }
    .food-card-placeholder span:first-child { font-size: 36px; }
    .food-category-badge {
    position: absolute; top: 10px; left: 10px;
    padding: 3px 10px; border-radius: 12px;
    font-size: 11px; font-weight: 700;
    color: white; z-index: 2;
    }
    .badge-food     { background: #c0392b; }
    .badge-shopping { background: #2980b9; }
    .badge-cafe     { background: #6c3483; }
    .food-card-caption { padding: 12px 14px; }
    .food-card-caption h4 {
    font-size: 13px; font-weight: 700;
    color: #c0392b; margin-bottom: 4px;
    }
    .food-card-caption p { font-size: 12px; color: #777; line-height: 1.5; }

    .food-info-section { margin-bottom: 20px; }
    .food-section-header {
    font-size: 18px; color: #1F4788; font-weight: 700;
    margin-bottom: 16px; padding-bottom: 10px;
    border-bottom: 3px solid #e67e22;
    }
    .food-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
    }
    .food-info-card {
    background: white; border-radius: 10px;
    padding: 18px 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-top: 4px solid #e67e22;
    text-align: center;
    }
    .food-info-icon { font-size: 30px; margin-bottom: 8px; }
    .food-info-card h4 { font-size: 13px; font-weight: 700; color: #2c3e50; margin-bottom: 6px; }
    .food-info-card p { font-size: 12px; color: #777; line-height: 1.5; }

    /* Club Staff Styles */
    .clubstaff-hero {
    background: linear-gradient(135deg, #1F4788 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 40px 30px;
    margin-bottom: 30px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    }
    .clubstaff-hero::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    }
    .clubstaff-hero h2 {
    font-size: 26px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
    }
    .clubstaff-hero p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.6;
    }
    .clubstaff-photo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 36px;
    }
    .clubstaff-photo-frame {
    width: 100%;
    max-width: 720px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(31,71,136,0.18);
    border: 3px solid #667eea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    }
    .clubstaff-photo-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(102,126,234,0.28);
    }
    .clubstaff-photo-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    }
    .clubstaff-photo-placeholder {
    width: 100%;
    min-height: 320px;
    background: linear-gradient(135deg, #e8eaf6, #f3e5f5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #9e9e9e;
    font-size: 14px;
    gap: 12px;
    }
    .clubstaff-photo-placeholder span:first-child { font-size: 48px; }
    .clubstaff-photo-label {
    width: 100%;
    max-width: 720px;
    text-align: center;
    background: linear-gradient(90deg, #1F4788, #764ba2);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    }
    .clubstaff-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
    }
    .clubstaff-info-card {
    background: white;
    border-radius: 12px;
    padding: 22px 18px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    border-top: 4px solid #667eea;
    text-align: center;
    transition: transform 0.2s ease;
    }
    .clubstaff-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(102,126,234,0.18);
    }
    .clubstaff-info-icon { font-size: 34px; margin-bottom: 10px; }
    .clubstaff-info-card h4 { font-size: 14px; font-weight: 700; color: #1F4788; margin-bottom: 6px; }
    .clubstaff-info-card p { font-size: 13px; color: #555; line-height: 1.55; }
    .clubstaff-section-title {
    font-size: 18px;
    color: #1F4788;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 3px solid #667eea;
    display: flex;
    align-items: center;
    gap: 8px;
    }

