/* ============================================================
   TONIGHT PAGE UPGRADE - Full sections above Tonight's Picks
   ============================================================ */

/* Hide old elements replaced by new upgrade sections */
.tonight-stats-bar,
#tonight-in-boston-bar {
    display: none !important;
}

/* Hide the old hero section (replaced by new upgrade sections) */
.tp-hero {
    display: none !important;
}

/* Hide the old stats banner inside tp-content */
.tp-stats-banner {
    display: none !important;
}

/* ============================================================
   TONIGHT STATUS HERO
   ============================================================ */
.tn-status-hero {
    padding: 40px 5% 30px;
    text-align: center;
    background: linear-gradient(180deg, rgba(212,175,55,0.06) 0%, transparent 100%);
    border-bottom: 1px solid rgba(212,175,55,0.1);
}

.tn-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
    color: #D4AF37;
    margin-bottom: 16px;
}

.tn-status-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: tnPulse 2s ease-in-out infinite;
}

@keyframes tnPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.tn-status-title {
    font-size: 28px;
    font-weight: 700;
    color: #D4AF37;
    margin: 0 0 8px;
}

.tn-status-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    margin: 0 0 28px;
}

.tn-status-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.tn-stat-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 14px;
    padding: 20px 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.tn-stat-card:hover {
    border-color: rgba(212,175,55,0.35);
    background: rgba(212,175,55,0.05);
    transform: translateY(-2px);
}

.tn-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: #D4AF37;
    display: block;
    line-height: 1.2;
}

.tn-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* ============================================================
   TOP TOGGLES
   ============================================================ */
.tn-toggles {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 24px 5% 0;
}

.tn-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 25px;
    border: 1px solid rgba(212,175,55,0.2);
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tn-toggle-btn:hover {
    border-color: rgba(212,175,55,0.4);
    background: rgba(212,175,55,0.08);
    color: #fff;
}

.tn-toggle-btn.active {
    background: linear-gradient(135deg, #D4AF37 0%, #b8962e 100%);
    color: #111;
    border-color: #D4AF37;
}

.tn-toggle-btn .tn-toggle-icon {
    font-size: 16px;
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.tn-section {
    padding: 32px 5%;
}

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

.tn-section-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tn-section-title .tn-icon {
    font-size: 20px;
}

.tn-section-count {
    background: rgba(212,175,55,0.15);
    color: #D4AF37;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.tn-view-all {
    color: #D4AF37;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.tn-view-all:hover {
    color: #e8c94b;
}

/* ============================================================
   WHERE PEOPLE ARE GOING
   ============================================================ */
.tn-going-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.tn-going-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tn-going-card:hover {
    border-color: rgba(212,175,55,0.3);
    background: rgba(212,175,55,0.05);
    transform: translateY(-2px);
}

.tn-going-card-img {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.tn-going-card-info {
    flex: 1;
    min-width: 0;
}

.tn-going-card-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tn-going-card-meta {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.tn-going-card-count {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.tn-going-card-count .tn-count-num {
    font-size: 20px;
    font-weight: 800;
    color: #D4AF37;
}

.tn-going-card-count .tn-count-label {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
}

.tn-going-card .live-pulse {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: tnPulse 2s ease-in-out infinite;
    position: absolute;
    top: 12px;
    right: 12px;
}

/* ============================================================
   TRENDING NOW
   ============================================================ */
.tn-trending-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.tn-trending-scroll::-webkit-scrollbar {
    height: 4px;
}

.tn-trending-scroll::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
}

.tn-trending-scroll::-webkit-scrollbar-thumb {
    background: rgba(212,175,55,0.3);
    border-radius: 2px;
}

.tn-trending-card {
    min-width: 260px;
    max-width: 260px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.tn-trending-card:hover {
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.tn-trending-card-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    position: relative;
}

.tn-trending-card-img-wrap {
    position: relative;
    overflow: hidden;
}

.tn-trending-card-img-wrap img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.tn-trending-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(212,175,55,0.9);
    color: #111;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    text-transform: uppercase;
}

.tn-trending-card-body {
    padding: 14px;
}

.tn-trending-card-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.tn-trending-card-type {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

.tn-trending-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tn-trending-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #D4AF37;
    font-size: 13px;
    font-weight: 700;
}

.tn-trending-card-people {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ============================================================
   JOIN THE CLUB
   ============================================================ */
.tn-join-club {
    background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, rgba(139,92,246,0.06) 100%);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 20px;
    padding: 36px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0 5%;
}

.tn-join-club-text {
    flex: 1;
}

.tn-join-club-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.tn-join-club-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin: 0 0 20px;
    line-height: 1.6;
}

.tn-join-club-perks {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tn-join-perk {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.tn-join-perk i {
    color: #D4AF37;
    font-size: 14px;
}

.tn-join-club-action {
    flex-shrink: 0;
    text-align: center;
}

.tn-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #D4AF37 0%, #b8962e 100%);
    color: #111;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.tn-join-members {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-top: 8px;
}

/* ============================================================
   GETTING BUSY
   ============================================================ */
.tn-busy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.tn-busy-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tn-busy-card:hover {
    border-color: rgba(212,175,55,0.3);
    background: rgba(212,175,55,0.05);
}

.tn-busy-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.tn-busy-card-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70%;
}

.tn-busy-card-status {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 6px;
}

.tn-busy-card-status.tn-packed {
    background: rgba(239,68,68,0.15);
    color: #ef4444;
}

.tn-busy-card-status.tn-busy {
    background: rgba(234,179,8,0.15);
    color: #eab308;
}

.tn-busy-card-status.tn-moderate {
    background: rgba(34,197,94,0.15);
    color: #22c55e;
}

.tn-busy-bar-wrap {
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    height: 6px;
    overflow: hidden;
    margin-bottom: 8px;
}

.tn-busy-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

.tn-busy-bar.tn-packed {
    background: linear-gradient(90deg, #ef4444, #f97316);
}

.tn-busy-bar.tn-busy {
    background: linear-gradient(90deg, #eab308, #f59e0b);
}

.tn-busy-bar.tn-moderate {
    background: linear-gradient(90deg, #22c55e, #4ade80);
}

.tn-busy-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tn-busy-card-type {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
}

.tn-busy-card-people {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 3px;
}

.tn-busy-card-people i {
    font-size: 10px;
    color: #D4AF37;
}

/* ============================================================
   TONIGHT'S PLAN
   ============================================================ */
.tn-plan-section {
    padding: 32px 5%;
}

.tn-plan-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.tn-plan-step {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tn-plan-step:hover {
    border-color: rgba(212,175,55,0.3);
    background: rgba(212,175,55,0.05);
    transform: translateY(-3px);
}

.tn-plan-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37, #b8962e);
    color: #111;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.tn-plan-step-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.tn-plan-step-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

.tn-plan-cta {
    text-align: center;
    margin-top: 24px;
}

.tn-plan-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: linear-gradient(135deg, #D4AF37 0%, #b8962e 100%);
    color: #111;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* ============================================================
   DIVIDER
   ============================================================ */
.tn-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212,175,55,0.2) 50%, transparent 100%);
    margin: 10px 5%;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .tn-going-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tn-busy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tn-plan-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .tn-status-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .tn-going-grid {
        grid-template-columns: 1fr;
    }
    .tn-busy-grid {
        grid-template-columns: 1fr;
    }
    .tn-plan-steps {
        grid-template-columns: 1fr;
    }
    .tn-status-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .tn-join-club {
        flex-direction: column;
        text-align: center;
    }
    .tn-join-club-perks {
        justify-content: center;
    }
    .tn-toggles {
        flex-wrap: wrap;
    }
    .tn-status-title {
        font-size: 22px;
    }
}