/* ==========================================================================
   TVHub — Be Vietnam Pro / Gold + Red theme (port from tvhub.html)
   ========================================================================== */

:root {
    --gold: #f5c518;
    --red: #e50914;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
}

/* ── Base ── */
body {
    font-family: 'Be Vietnam Pro', sans-serif;
    background: var(--dark-bg);
    color: #e5e5e5;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: #fff;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

/* ── Navbar ── */
#mainNav {
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.97), transparent);
    backdrop-filter: blur(6px);
    transition: background 0.3s;
}

#mainNav.scrolled {
    background: rgba(10, 10, 10, 0.98) !important;
}

.navbar-brand .logo-text {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--gold);
    text-shadow: 0 0 24px rgba(245, 197, 24, 0.4);
}

.navbar-brand .logo-text span {
    color: var(--red);
}

.navbar-nav .nav-link {
    color: #ccc !important;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-login-nav {
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 6px 18px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-login-nav:hover {
    background: #c1070f;
    color: #fff;
}

.nav-icon-btn {
    background: none;
    border: none;
    color: #aaa;
    font-size: 1.15rem;
    cursor: pointer;
    padding: 4px 6px;
    transition: color 0.2s;
    position: relative;
}

.nav-icon-btn:hover {
    color: #fff;
}

/* Language select inside navbar */
.lang-select {
    background-color: rgba(0, 0, 0, 0.5);
    color: #ccc;
    border: 1px solid #333;
    font-size: 0.85rem;
    font-family: 'Be Vietnam Pro', sans-serif;
}

.lang-select:focus {
    border-color: var(--gold);
    box-shadow: none;
    color: #fff;
    background-color: #1a1a1a;
}

/* ── Notification dropdown ── */
.notify-wrapper {
    position: relative;
}

.notify-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    border: 1.5px solid var(--dark-bg);
}

.notify-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    width: 320px;
    background: #181818;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    overflow: hidden;
}

.notify-dropdown.show {
    display: block;
}

.notify-header {
    padding: 14px 16px 10px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    border-bottom: 1px solid #252525;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notify-header span {
    color: var(--gold);
    font-size: 0.75rem;
    cursor: pointer;
    font-weight: 500;
}

.notify-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 16px;
    border-bottom: 1px solid #1e1e1e;
    transition: background 0.15s;
    cursor: pointer;
}

.notify-item:hover {
    background: #202020;
}

.notify-item:last-child {
    border-bottom: none;
}

.notify-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.notify-icon.live {
    background: rgba(229, 9, 20, 0.15);
}

.notify-icon.new {
    background: rgba(245, 197, 24, 0.12);
}

.notify-icon.info {
    background: rgba(59, 130, 246, 0.12);
}

.notify-text h6 {
    font-size: 0.82rem;
    font-weight: 600;
    color: #e5e5e5;
    margin: 0 0 3px;
}

.notify-text p {
    font-size: 0.74rem;
    color: #777;
    margin: 0;
}

/* ── Ticker ── */
.ticker-bar {
    background: var(--red);
    overflow: hidden;
    white-space: nowrap;
    padding: 9px 0;
}

.ticker-label {
    background: #fff;
    color: var(--red);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 3px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-content {
    display: inline-block;
    animation: tickerMove 35s linear infinite;
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
}

@keyframes tickerMove {
    0% {
        transform: translateX(60vw);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ── Hero Carousel ── */
#heroCarousel {
    position: relative;
}

.hero-slide {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 90px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, var(--dark-bg) 0%, rgba(10, 10, 10, 0.1) 55%, transparent 100%),
        linear-gradient(to right, rgba(10, 10, 10, 0.78) 0%, transparent 58%);
}

.hero-slide-inner {
    position: relative;
    z-index: 2;
    max-width: 580px;
}

.hero-badge {
    display: inline-block;
    background: var(--gold);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 4px 12px;
    border-radius: 3px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.hero-desc {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.65;
    max-width: 440px;
}

.btn-play-hero {
    background: #fff;
    color: #000;
    font-size: 1rem;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 5px;
    transition: background 0.2s, transform 0.15s;
    border: none;
}

.btn-play-hero:hover {
    background: #ddd;
    transform: scale(1.03);
    color: #000;
}

.btn-more-hero {
    background: rgba(100, 100, 100, 0.45);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 5px;
    backdrop-filter: blur(6px);
    border: none;
    transition: background 0.2s;
}

.btn-more-hero:hover {
    background: rgba(140, 140, 140, 0.5);
    color: #fff;
}

#heroCarousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    margin: 0 4px;
}

#heroCarousel .carousel-indicators .active {
    background: var(--gold);
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 48px;
    opacity: 0.7;
}

/* ── Category pills ── */
.cat-pill {
    background: transparent;
    color: #ccc;
    border: 1.5px solid #333;
    border-radius: 20px;
    padding: 7px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Be Vietnam Pro', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
}

.cat-pill:hover,
.cat-pill.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    font-weight: 700;
}

/* ── Section titles ── */
.section-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.section-more {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
}

.section-more:hover {
    text-decoration: underline;
    color: var(--gold);
}

/* ── Video cards (16:9) ── */
.video-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: var(--card-bg);
    cursor: pointer;
    aspect-ratio: 16/9;
    transition: transform 0.25s, box-shadow 0.25s;
}

.video-card:hover {
    transform: scale(1.06) translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85), 0 0 0 2px var(--gold);
    z-index: 10;
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.25s;
}

.video-card:hover img {
    filter: brightness(0.55);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.25s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px;
}

.video-card:hover .card-overlay {
    opacity: 1;
}

.card-title-text {
    font-size: 0.83rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.card-rating {
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
}

.card-ep {
    color: #aaa;
    font-size: 0.72rem;
}

.card-icon-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid #aaa;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 0.75rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.card-icon-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.card-icon-btn.play {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.badge-live {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--red);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 3px;
    text-transform: uppercase;
}

.badge-new {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--gold);
    color: #000;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 3px;
    text-transform: uppercase;
}

/* ── Featured cards (16:9 large) ── */
.featured-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
    transition: transform 0.25s, box-shadow 0.25s;
}

.featured-card:hover {
    transform: scale(1.04);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
}

.featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-card .fc-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 16px 14px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.92));
}

.fc-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.fc-info p {
    font-size: 0.76rem;
    color: #bbb;
    margin: 0;
}

/* ── Spotlight grid (Hot Videos / TV Shows: 1 big + N small) ── */
.spotlight-row {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 1rem;
    align-items: stretch;
}

.spotlight-main,
.spotlight-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.spotlight-main .spotlight-thumb {
    flex: 1;
}

.spotlight-thumb {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: var(--card-bg);
    aspect-ratio: 16/9;
}

.spotlight-main .spotlight-thumb {
    aspect-ratio: auto;
}

.spotlight-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s;
}

.spotlight-main:hover .spotlight-thumb img,
.spotlight-item:hover .spotlight-thumb img {
    transform: scale(1.04);
}

.spotlight-cap {
    padding-top: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #e5e5e5;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.spotlight-main:hover .spotlight-cap,
.spotlight-item:hover .spotlight-cap {
    color: var(--gold);
}

.spotlight-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spotlight-side .spotlight-item {
    flex: 1;
}

.spotlight-side.grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.spotlight-side.grid-2x2 .spotlight-item {
    height: 100%;
}

.spotlight-side.grid-2x2 .spotlight-thumb {
    flex: 1;
    aspect-ratio: auto;
}

.spotlight-next {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.85);
    border: 1px solid #333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background 0.2s, border-color 0.2s;
    z-index: 3;
}

.spotlight-next:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

@media (max-width: 767px) {
    .spotlight-row {
        grid-template-columns: 1fr;
    }

    .spotlight-main .spotlight-thumb {
        aspect-ratio: 16/9;
    }

    .spotlight-side.grid-2x2 {
        grid-template-columns: 1fr 1fr;
    }

    .spotlight-next {
        display: none;
    }
}

/* ── News cards ── */
.news-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    text-decoration: none;
    display: block;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.news-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.news-body {
    padding: 14px;
}

.news-tag {
    display: inline-block;
    background: rgba(245, 197, 24, 0.13);
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 3px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.news-body h4 {
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.45;
    margin-bottom: 6px;
}

.news-body p {
    font-size: 0.76rem;
    color: #888;
    line-height: 1.55;
    margin: 0;
}

.news-date {
    font-size: 0.7rem;
    color: #555;
    margin-top: 10px;
}

/* ── Episode list (show detail) ── */
.episode-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem;
    border-radius: 6px;
    background: var(--card-bg);
    margin-bottom: 0.65rem;
    text-decoration: none;
    transition: background 0.2s;
}

.episode-row:hover {
    background: #242424;
}

.episode-row img {
    width: 160px;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.episode-row .episode-num {
    font-size: 1.6rem;
    font-weight: 900;
    color: #444;
    width: 2.5rem;
    text-align: center;
    flex-shrink: 0;
}

.episode-info h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e5e5e5;
    margin-bottom: 4px;
}

.episode-info p {
    font-size: 0.78rem;
    color: #666;
    margin: 0;
}

/* ── Backdrop header (show detail) ── */
.detail-backdrop {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 7rem 0 3rem;
    margin-bottom: 0;
}

.detail-backdrop::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--dark-bg) 5%, rgba(10, 10, 10, 0.7) 60%, rgba(0, 0, 0, 0.5) 100%);
}

.detail-backdrop>.container-fluid {
    position: relative;
    z-index: 2;
}

.detail-poster {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

/* ── Player page ── */
.ratio iframe {
    border-radius: 6px;
    background: #000;
}

.breadcrumb {
    --bs-breadcrumb-divider-color: #444;
}

.breadcrumb-item a {
    color: #888;
}

.breadcrumb-item.active {
    color: #e5e5e5;
}

/* ── Forms ── */
.form-control,
.form-select {
    background: var(--card-bg);
    color: #e5e5e5;
    border: 1px solid #333;
    font-family: 'Be Vietnam Pro', sans-serif;
}

.form-control:focus,
.form-select:focus {
    background: var(--card-bg);
    color: #fff;
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(245, 197, 24, 0.2);
}

.form-control::placeholder {
    color: #555;
}

.form-label {
    color: #aaa;
    font-weight: 500;
}

.form-text {
    color: #555;
}

.btn-primary {
    background: var(--red);
    border-color: var(--red);
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 600;
}

.purpose-pill {
    background: var(--card-bg);
    border: 1px solid #333;
    color: #aaa;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.purpose-pill:hover {
    border-color: var(--red);
    color: #fff;
}

.btn-check:checked + .purpose-pill {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.btn-check:focus-visible + .purpose-pill {
    box-shadow: 0 0 0 0.2rem rgba(229, 9, 20, 0.35);
}

.contact-info-card {
    background: var(--card-bg);
    border: 1px solid #262626;
    border-radius: 12px;
    padding: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-info-item + .contact-info-item {
    margin-top: 20px;
}

.contact-info-item i {
    color: var(--red);
    font-size: 1.1rem;
    margin-top: 2px;
}

.contact-info-label {
    color: #888;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 2px;
}

.contact-info-item a {
    color: #e5e5e5;
}

.contact-info-item a:hover {
    color: var(--gold);
}

.contact-map-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #262626;
}

.contact-map-wrap iframe {
    width: 100%;
    height: 260px;
    border: 0;
    display: block;
}

.btn-primary:hover {
    background: #c1070f;
    border-color: #c1070f;
}

/* ── Pagination ── */
.pagination .page-link {
    background: var(--card-bg);
    border-color: #2a2a2a;
    color: #aaa;
    font-family: 'Be Vietnam Pro', sans-serif;
}

.pagination .page-link:hover {
    background: #242424;
    color: #fff;
    border-color: #333;
}

.pagination .page-item.disabled .page-link {
    background: transparent;
    border-color: transparent;
    color: #555;
}

/* ── Footer ── */
footer {
    background: #0d0d0d;
    border-top: 1px solid #1e1e1e;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
}

.footer-logo span {
    color: var(--red);
}

.footer-col-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.footer-link {
    display: block;
    color: #555;
    font-size: 0.8rem;
    text-decoration: none;
    margin-bottom: 9px;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #ccc;
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
}

/* ── Search modal ── */
#searchModal .modal-content {
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
}

#searchModal .modal-header {
    border-bottom: 1px solid #222;
}

#searchModal .search-input {
    background: #1e1e1e;
    border: 1.5px solid #333;
    color: #fff;
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 1rem;
    font-family: 'Be Vietnam Pro', sans-serif;
    transition: border-color 0.2s;
    width: 100%;
}

#searchModal .search-input:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.15);
}

.search-suggest a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    text-decoration: none;
    padding: 9px 12px;
    border-radius: 6px;
    font-size: 0.88rem;
    transition: background 0.15s;
}

.search-suggest a:hover {
    background: #1e1e1e;
    color: #fff;
}

.search-suggest .si {
    color: var(--gold);
}

/* ── Alert ── */
.alert {
    border: none;
    border-radius: 6px;
}

/* ── news-content (news detail body) ── */
.news-content {
    color: #d0d0d0;
    line-height: 1.8;
}

.news-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .hero-slide {
        min-height: 65vh;
        padding-bottom: 60px;
    }

    .episode-row img {
        width: 110px;
    }
}

/* ── About page ── */
.about-content h2,
.about-content h3 {
    color: #fff;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 12px;
}

.about-content h2 {
    font-size: 1.35rem;
}

.about-content h3 {
    font-size: 1.1rem;
}

.about-content p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.team-card {
    text-align: center;
    background: #33352f;
    /* padding: 12px; */
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
}

.team-card .team-photo {
    width: 100%;
    aspect-ratio: 3/3;
    object-fit: cover;
    background: var(--card-bg);
    display: block;
    margin-bottom: 12px;
}

.team-card .team-photo-placeholder {
    width: 100%;
    aspect-ratio: 3/3.4;
    border-radius: 8px;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.team-card h5 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.team-card p {
    font-size: 0.78rem;
    color: #888;
    margin: 0;
}