/* ============================================================
   SceneLink Tonight's Picks v3 — Competition-Defining Design
   ============================================================ */

/* === CSS Variables === */
:root {
    --tp-gold: #D4AF37;
    --tp-gold-light: #F4D03F;
    --tp-gold-dark: #b8941f;
    --tp-bg: #0a0a0a;
    --tp-card-bg: rgba(255,255,255,0.04);
    --tp-card-border: rgba(212,175,55,0.12);
    --tp-text: #e0e0e0;
    --tp-text-muted: #888;
    --tp-radius: 16px;
    --tp-glass: rgba(255,255,255,0.06);
    --tp-glass-border: rgba(255,255,255,0.1);
}

/* === Page Base === */
.tp-page {
    background: var(--tp-bg);
    min-height: 100vh;
    color: var(--tp-text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
}

/* === Hero Section === */
.tp-hero {
    position: relative;
    padding: 100px 0 60px;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.08) 0%, transparent 60%);
}

.tp-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(212,175,55,0.04) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(212,175,55,0.03) 0%, transparent 50%);
    animation: heroGlow 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroGlow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(2%, -1%) rotate(1deg); }
    66% { transform: translate(-1%, 2%) rotate(-1deg); }
}

.tp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 50px;
    font-size: 13px;
    color: var(--tp-gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    animation: fadeInDown 0.6s ease;
}

.tp-hero-badge .live-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.tp-hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, var(--tp-gold) 50%, var(--tp-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 12px;
    line-height: 1.15;
    animation: fadeInUp 0.8s ease;
}

.tp-hero-subtitle {
    font-size: 18px;
    color: var(--tp-text-muted);
    margin: 0 0 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.1s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === Time Segments === */
.tp-time-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.tp-time-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--tp-glass);
    border: 1px solid var(--tp-glass-border);
    border-radius: 50px;
    color: var(--tp-text-muted);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tp-time-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--tp-gold), var(--tp-gold-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.tp-time-btn:hover {
    border-color: rgba(212,175,55,0.3);
    color: #fff;
    transform: translateY(-2px);
}

.tp-time-btn.active {
    border-color: var(--tp-gold);
    color: #111;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}

.tp-time-btn.active::before {
    opacity: 1;
}

.tp-time-btn span, .tp-time-btn .tp-time-icon {
    position: relative;
    z-index: 1;
}

/* === Main Content Layout === */
.tp-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

/* === Smart Filter Bar === */
.tp-filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    padding: 16px 20px;
    background: var(--tp-glass);
    border: 1px solid var(--tp-glass-border);
    border-radius: var(--tp-radius);
    animation: fadeInUp 0.8s ease 0.3s both;
}

.tp-filter-bar .tp-filter-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--tp-gold);
    font-weight: 600;
    margin-right: 4px;
}

.tp-filter-chip {
    padding: 8px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    color: var(--tp-text-muted);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.tp-filter-chip:hover {
    background: rgba(212,175,55,0.1);
    border-color: rgba(212,175,55,0.3);
    color: var(--tp-gold);
}

.tp-filter-chip.active {
    background: linear-gradient(135deg, var(--tp-gold), var(--tp-gold-dark));
    border-color: var(--tp-gold);
    color: #111;
    font-weight: 600;
}

.tp-filter-divider {
    width: 1px;
    height: 24px;
    background: rgba(255,255,255,0.1);
    margin: 0 4px;
}

.tp-filter-search {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    margin-left: auto;
}

.tp-filter-search i {
    color: var(--tp-text-muted);
    font-size: 14px;
}

.tp-filter-search input {
    flex: 1;
    background: none;
    border: none;
    color: #fff;
    font-size: 13px;
    outline: none;
}

.tp-filter-search input::placeholder {
    color: #666;
}

/* === Featured Spotlight === */
.tp-spotlight {
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.tp-spotlight-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(212,175,55,0.06), rgba(212,175,55,0.02));
    border: 1px solid rgba(212,175,55,0.15);
    position: relative;
    transition: all 0.4s ease;
}

.tp-spotlight-card:hover {
    border-color: rgba(212,175,55,0.3);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 60px rgba(212,175,55,0.08);
    transform: translateY(-2px);
}

.tp-spotlight-image {
    position: relative;
    min-height: 380px;
    overflow: hidden;
}

.tp-spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tp-spotlight-card:hover .tp-spotlight-image img {
    transform: scale(1.05);
}

.tp-spotlight-image .tp-badge-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 8px;
}

.tp-badge {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tp-badge-featured {
    background: linear-gradient(135deg, var(--tp-gold), var(--tp-gold-dark));
    color: #111;
}

.tp-badge-live {
    background: rgba(76,175,80,0.9);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tp-badge-live::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.tp-spotlight-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tp-spotlight-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--tp-gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.tp-spotlight-name {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.2;
}

.tp-spotlight-desc {
    font-size: 15px;
    color: var(--tp-text-muted);
    line-height: 1.7;
    margin: 0 0 20px;
}

.tp-spotlight-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.tp-spotlight-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--tp-text);
}

.tp-spotlight-meta-item i {
    color: var(--tp-gold);
    font-size: 14px;
}

.tp-spotlight-offer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--tp-gold);
}

.tp-spotlight-offer i {
    font-size: 18px;
}

.tp-spotlight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.tp-tag {
    padding: 5px 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 12px;
    color: var(--tp-text-muted);
}

.tp-spotlight-actions {
    display: flex;
    gap: 12px;
}

.tp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--tp-gold), var(--tp-gold-dark));
    border: none;
    border-radius: 12px;
    color: #111;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,175,55,0.35);
}

.tp-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--tp-glass);
    border: 1px solid var(--tp-glass-border);
    border-radius: 12px;
    color: var(--tp-text);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tp-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(212,175,55,0.3);
    color: var(--tp-gold);
    transform: translateY(-2px);
}

.tp-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--tp-glass);
    border: 1px solid var(--tp-glass-border);
    border-radius: 12px;
    color: var(--tp-text);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tp-btn-icon:hover {
    background: rgba(212,175,55,0.1);
    border-color: rgba(212,175,55,0.3);
    color: var(--tp-gold);
}

/* === Section Headers === */
.tp-section {
    margin-bottom: 48px;
}

.tp-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.tp-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tp-section-title h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.tp-section-title .tp-count {
    padding: 4px 12px;
    background: rgba(212,175,55,0.15);
    border-radius: 50px;
    font-size: 12px;
    color: var(--tp-gold);
    font-weight: 600;
}

.tp-section-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--tp-gold);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.tp-section-link:hover {
    gap: 10px;
}

/* === Venue Grid === */
.tp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* === Venue Card === */
.tp-venue-card {
    background: var(--tp-card-bg);
    border: 1px solid var(--tp-card-border);
    border-radius: var(--tp-radius);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.tp-venue-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212,175,55,0.3);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 40px rgba(212,175,55,0.06);
}

.tp-venue-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tp-venue-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tp-venue-card:hover .tp-venue-card-image img {
    transform: scale(1.08);
}

.tp-venue-card-image .tp-card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
}

.tp-venue-card-image .tp-card-save {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tp-venue-card-image .tp-card-save:hover,
.tp-venue-card-image .tp-card-save.saved {
    background: var(--tp-gold);
    color: #111;
    border-color: var(--tp-gold);
}

.tp-venue-card-image .tp-card-status {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 11px;
    color: #4CAF50;
    font-weight: 600;
}

.tp-venue-card-image .tp-card-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

.tp-venue-card-body {
    padding: 18px;
}

.tp-venue-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 8px;
}

.tp-venue-card-name {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.tp-venue-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(212,175,55,0.12);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--tp-gold);
    white-space: nowrap;
}

.tp-venue-card-rating i {
    font-size: 11px;
}

.tp-venue-card-category {
    font-size: 13px;
    color: var(--tp-text-muted);
    margin-bottom: 10px;
}

.tp-venue-card-desc {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tp-venue-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 12px;
    color: var(--tp-text-muted);
}

.tp-venue-card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tp-venue-card-meta i {
    color: var(--tp-gold);
    font-size: 12px;
}

.tp-venue-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.tp-venue-card-tags .tp-tag {
    padding: 3px 10px;
    font-size: 11px;
}

.tp-venue-card-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.tp-venue-card-footer .tp-btn-primary {
    flex: 1;
    justify-content: center;
    padding: 10px 16px;
    font-size: 13px;
    border-radius: 10px;
}

.tp-venue-card-footer .tp-btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 14px;
}

/* === Social Proof Bar === */
.tp-social-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
    padding: 20px 24px;
    background: var(--tp-glass);
    border: 1px solid var(--tp-glass-border);
    border-radius: var(--tp-radius);
    overflow-x: auto;
    animation: fadeInUp 0.8s ease 0.35s both;
}

.tp-social-item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}

.tp-social-avatars {
    display: flex;
}

.tp-social-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--tp-bg);
    margin-left: -8px;
    object-fit: cover;
}

.tp-social-avatars img:first-child {
    margin-left: 0;
}

.tp-social-text {
    font-size: 13px;
    color: var(--tp-text-muted);
}

.tp-social-text strong {
    color: #fff;
    font-weight: 600;
}

.tp-social-text .tp-venue-name {
    color: var(--tp-gold);
    font-weight: 600;
}

.tp-social-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

/* === Venue Detail Modal === */
.tp-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tp-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.tp-modal {
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    background: #111;
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.tp-modal-overlay.active .tp-modal {
    transform: scale(1);
}

.tp-modal-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    flex-shrink: 0;
}

.tp-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tp-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.tp-modal-close:hover {
    background: var(--tp-gold);
    color: #111;
    border-color: var(--tp-gold);
}

.tp-modal-body {
    padding: 32px;
    overflow-y: auto;
    flex: 1;
}

.tp-modal-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--tp-gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.tp-modal-name {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
}

.tp-modal-rating-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.tp-modal-stars {
    display: flex;
    gap: 3px;
    color: var(--tp-gold);
    font-size: 16px;
}

.tp-modal-rating-num {
    font-size: 16px;
    font-weight: 700;
    color: var(--tp-gold);
}

.tp-modal-price {
    font-size: 15px;
    color: var(--tp-text-muted);
}

.tp-modal-desc {
    font-size: 15px;
    color: var(--tp-text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.tp-modal-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.tp-modal-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
}

.tp-modal-detail i {
    color: var(--tp-gold);
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.tp-modal-detail-text {
    display: flex;
    flex-direction: column;
}

.tp-modal-detail-label {
    font-size: 11px;
    color: var(--tp-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tp-modal-detail-value {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}

.tp-modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.tp-modal-actions {
    display: flex;
    gap: 12px;
}

.tp-modal-actions .tp-btn-primary {
    flex: 1;
    justify-content: center;
}

/* === Quick Stats Banner === */
.tp-stats-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.35s both;
}

.tp-stat-card {
    text-align: center;
    padding: 24px 16px;
    background: var(--tp-glass);
    border: 1px solid var(--tp-glass-border);
    border-radius: var(--tp-radius);
    transition: all 0.3s ease;
}

.tp-stat-card:hover {
    border-color: rgba(212,175,55,0.2);
    transform: translateY(-2px);
}

.tp-stat-number {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--tp-gold), var(--tp-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.tp-stat-label {
    font-size: 13px;
    color: var(--tp-text-muted);
}

/* === Responsive === */
@media (max-width: 1024px) {
    .tp-spotlight-card {
        grid-template-columns: 1fr;
    }
    .tp-spotlight-image {
        min-height: 250px;
    }
    .tp-stats-banner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tp-hero {
        padding: 80px 20px 40px;
    }
    .tp-time-nav {
        flex-wrap: wrap;
    }
    .tp-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .tp-filter-search {
        margin-left: 0;
    }
    .tp-grid {
        grid-template-columns: 1fr;
    }
    .tp-spotlight-info {
        padding: 24px;
    }
    .tp-spotlight-name {
        font-size: 24px;
    }
    .tp-modal-details {
        grid-template-columns: 1fr;
    }
    .tp-social-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .tp-social-divider {
        width: 100%;
        height: 1px;
    }
    .tp-stats-banner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .tp-hero h1 {
        font-size: 28px;
    }
    .tp-spotlight-actions {
        flex-direction: column;
    }
    .tp-modal-actions {
        flex-direction: column;
    }
    .tp-stats-banner {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}