/* ════════════════════════════════════════════════════════════
   THE BOYZ — FACEBOOK-STYLE PROFILE v3.0
   Premium Blue Gaming Aesthetic with Glassmorphism
   ════════════════════════════════════════════════════════════ */

/* ── CSS Variables ───────────────────────────────────────── */
:root {
    --fb-primary: #3ec5e4;
    --fb-primary-dark: #233062;
    --fb-bg: #0E1535;
    --fb-bg-secondary: #151A27;
    --fb-text: #FFFFFF;
    --fb-text-muted: #9CA3AF;
    --fb-gradient-start: #14327A;
    --fb-gradient-mid: #0E1535;
    --fb-gradient-end: #0A2336;
    --fb-glass-bg: rgba(21, 26, 39, 0.7);
    --fb-glass-border: rgba(62, 197, 228, 0.15);
    --fb-glass-hover: rgba(62, 197, 228, 0.1);
    --fb-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --fb-glow: 0 0 20px rgba(62, 197, 228, 0.3);
}

/* ── Reset & Base ────────────────────────────────────────── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, var(--fb-gradient-start), var(--fb-gradient-mid), var(--fb-gradient-end));
    background-attachment: fixed;
    color: var(--fb-text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ── Back Button ─────────────────────────────────────────── */
.fb-back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(14, 21, 53, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--fb-glass-border);
    border-radius: 12px;
    color: var(--fb-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.fb-back-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.fb-back-btn:hover {
    background: var(--fb-primary);
    border-color: var(--fb-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(62, 197, 228, 0.4);
}

.fb-back-btn:hover i {
    transform: translateX(-4px);
}

/* ── Profile Wrapper ─────────────────────────────────────── */
.fb-profile-wrapper {
    position: relative;
    width: 100%;
}

/* ── Cover Photo ─────────────────────────────────────────── */
.fb-cover {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--fb-gradient-start), var(--fb-gradient-mid));
}

.fb-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.fb-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(14, 21, 53, 0.3) 0%,
            rgba(14, 21, 53, 0.7) 60%,
            var(--fb-bg) 100%);
}

/* ── Profile Info Bar ────────────────────────────────────── */
.fb-profile-bar {
    position: relative;
    margin-top: -80px;
    z-index: 10;
    padding: 0 20px 20px;
}

.fb-profile-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--fb-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--fb-glass-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--fb-shadow);
}

.fb-profile-left {
    display: flex;
    gap: 24px;
    align-items: flex-end;
    margin-bottom: 20px;
}

.fb-profile-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 4px solid var(--fb-bg);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, var(--fb-primary), var(--fb-primary-dark));
}

.fb-profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fb-profile-photo-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--fb-text);
    font-weight: bold;
}

.fb-profile-info {
    flex: 1;
    padding-bottom: 10px;
}

.fb-profile-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 2px;
    color: var(--fb-text);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.fb-verified-badge {
    color: #22c55e;
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.5));
}

.fb-profile-slogan {
    font-size: 1.1rem;
    color: var(--fb-text-muted);
    margin-bottom: 12px;
    font-weight: 500;
}

.fb-profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.fb-profile-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--fb-text-muted);
}

.fb-profile-meta i {
    color: var(--fb-primary);
    font-size: 0.9rem;
}

.fb-profile-social-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    color: var(--fb-text);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.fb-profile-social-link:hover {
    background: var(--fb-primary);
    border-color: var(--fb-primary);
    color: var(--fb-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(62, 197, 228, 0.3);
}

/* ── Profile Actions ─────────────────────────────────────── */
.fb-profile-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.fb-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.fb-btn-primary {
    background: linear-gradient(135deg, var(--fb-primary), var(--fb-primary-dark));
    color: var(--fb-text);
    box-shadow: 0 4px 12px rgba(62, 197, 228, 0.3);
}

.fb-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(62, 197, 228, 0.5);
}

.fb-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--fb-text);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.fb-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.fb-btn-live {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: var(--fb-text);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    }

    50% {
        box-shadow: 0 4px 20px rgba(239, 68, 68, 0.6);
    }
}

.fb-btn-live:hover {
    transform: translateY(-2px);
}

/* ── Sticky Navigation ───────────────────────────────────── */
.fb-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(14, 21, 53, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--fb-glass-border);
    margin-top: 20px;
}

.fb-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4px;
    padding: 0 20px;
    overflow-x: auto;
    scrollbar-width: none;
    align-items: center;
}

.fb-nav-container::-webkit-scrollbar {
    display: none;
}

.fb-nav-tab {
    background: transparent;
    color: var(--fb-text-muted);
    border: none;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    font-family: 'Outfit', sans-serif;
}

.fb-nav-tab:hover {
    color: var(--fb-text);
    background: rgba(255, 255, 255, 0.03);
}

.fb-nav-tab.active {
    color: var(--fb-primary);
    border-bottom-color: var(--fb-primary);
}

/* ── Main Content ────────────────────────────────────────── */
.fb-main {
    padding: 30px 20px;
}

.fb-container {
    max-width: 1200px;
    margin: 0 auto;
}

.fb-layout {
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    gap: 24px;
}

/* ── Cards ───────────────────────────────────────────────── */
.fb-card {
    background: var(--fb-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--fb-glass-border);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.fb-card:hover {
    border-color: rgba(62, 197, 228, 0.3);
    box-shadow: var(--fb-glow);
}

.fb-card-header {
    padding: 20px 24px 16px;
    border-bottom: 1px solid var(--fb-glass-border);
}

.fb-card-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--fb-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.fb-card-header h3 i {
    color: var(--fb-primary);
}

.fb-card-body {
    padding: 20px 24px;
}

/* ── Left Sidebar ────────────────────────────────────────── */
.fb-sidebar-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* About Team */
.fb-about-desc {
    font-size: 0.9rem;
    color: var(--fb-text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.fb-about-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.fb-about-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fb-about-item:last-child {
    border-bottom: none;
}

.fb-about-label {
    font-size: 0.85rem;
    color: var(--fb-text-muted);
    font-weight: 500;
}

.fb-about-value {
    font-size: 0.85rem;
    color: var(--fb-text);
    font-weight: 600;
    text-align: right;
}

.fb-social-links {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.fb-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fb-text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.fb-social-link:hover {
    background: var(--fb-primary);
    border-color: var(--fb-primary);
    color: var(--fb-text);
    transform: translateY(-2px);
}

/* Team Statistics */
.fb-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.fb-stat-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.fb-stat-item:hover {
    border-color: rgba(62, 197, 228, 0.2);
    background: rgba(62, 197, 228, 0.05);
    transform: translateY(-2px);
}

.fb-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--fb-primary), var(--fb-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fb-text);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.fb-stat-content {
    flex: 1;
}

.fb-stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--fb-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.fb-stat-label {
    font-size: 0.7rem;
    color: var(--fb-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Upcoming Match */
.fb-upcoming-match {
    text-align: center;
}

.fb-match-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.fb-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.fb-team img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--fb-primary);
}

.fb-team-logo-fallback {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fb-primary), var(--fb-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--fb-text);
    border: 2px solid var(--fb-primary);
}

.fb-team span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--fb-text);
}

.fb-match-vs {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--fb-primary);
    font-weight: bold;
}

.fb-match-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.fb-match-datetime,
.fb-match-tournament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--fb-text-muted);
}

.fb-match-datetime i,
.fb-match-tournament i {
    color: var(--fb-primary);
}

/* Countdown */
.fb-match-countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 8px;
}

.countdown-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--fb-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.countdown-label {
    font-size: 0.7rem;
    color: var(--fb-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fb-btn-block {
    width: 100%;
    justify-content: center;
}

/* Sponsors */
.fb-sponsors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.fb-sponsor-item {
    aspect-ratio: 16/9;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.fb-sponsor-item:hover {
    border-color: rgba(62, 197, 228, 0.2);
    background: rgba(62, 197, 228, 0.05);
    transform: translateY(-2px);
}

.fb-sponsor-placeholder {
    text-align: center;
    color: var(--fb-text-muted);
}

.fb-sponsor-placeholder i {
    font-size: 1.8rem;
    margin-bottom: 6px;
    display: block;
    opacity: 0.5;
}

.fb-sponsor-placeholder span {
    font-size: 0.75rem;
    font-weight: 500;
}

/* ── Center Feed ─────────────────────────────────────────── */
.fb-feed {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Create Post */
.fb-create-post {
    padding: 16px 24px;
}

.fb-create-post-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.fb-post-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--fb-primary);
}

.fb-post-avatar-fallback {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fb-primary), var(--fb-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    color: var(--fb-text);
    border: 2px solid var(--fb-primary);
}

.fb-create-post-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 10px 20px;
    color: var(--fb-text-muted);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
}

.fb-create-post-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.fb-create-post-actions {
    display: flex;
    justify-content: space-around;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.fb-create-action {
    background: transparent;
    border: none;
    color: var(--fb-text-muted);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fb-create-action:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--fb-text);
}

/* Posts */
.fb-post {
    background: var(--fb-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--fb-glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fb-post:hover {
    border-color: rgba(62, 197, 228, 0.2);
    box-shadow: var(--fb-glow);
}

.fb-post-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
}

.fb-post-meta {
    flex: 1;
}

.fb-post-author {
    font-weight: 700;
    color: var(--fb-text);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.fb-post-time {
    font-size: 0.8rem;
    color: var(--fb-text-muted);
}

.fb-post-time i {
    font-size: 0.75rem;
    margin-left: 4px;
}

.fb-post-menu {
    background: transparent;
    border: none;
    color: var(--fb-text-muted);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.fb-post-menu:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--fb-text);
}

.fb-post-content {
    padding: 0 20px 16px;
    color: var(--fb-text);
    font-size: 0.95rem;
    line-height: 1.7;
}

.fb-post-media {
    margin-bottom: 12px;
}

.fb-post-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
}

.fb-post-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.fb-post-gallery img:hover {
    transform: scale(1.02);
}

.fb-post-gallery img:first-child {
    grid-column: 1 / -1;
}

.fb-post-video {
    position: relative;
    cursor: pointer;
}

.fb-post-video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 8px;
    display: block;
}

.fb-post-video img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.fb-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: var(--fb-text);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease;
}

.fb-post-video:hover .fb-video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    color: var(--fb-primary);
}

.fb-video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--fb-text);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.fb-post-stats {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fb-post-stats span {
    font-size: 0.85rem;
    color: var(--fb-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.fb-post-stats i {
    font-size: 0.9rem;
}

.fb-post-actions {
    display: flex;
    justify-content: space-around;
    padding: 8px 20px;
}

.fb-post-action-btn {
    background: transparent;
    border: none;
    color: var(--fb-text-muted);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.fb-post-action-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--fb-text);
}

/* ── Right Sidebar ───────────────────────────────────────── */
.fb-sidebar-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Featured Players */
.fb-featured-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fb-featured-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.fb-featured-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.fb-featured-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--fb-primary);
    flex-shrink: 0;
}

.fb-featured-img-fallback {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fb-primary), var(--fb-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--fb-text);
    border: 2px solid var(--fb-primary);
    flex-shrink: 0;
}

.fb-featured-info {
    flex: 1;
    min-width: 0;
}

.fb-featured-name {
    font-weight: 700;
    color: var(--fb-text);
    font-size: 0.9rem;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fb-featured-role {
    font-size: 0.75rem;
    color: var(--fb-text-muted);
    margin-bottom: 4px;
}

.fb-featured-stats {
    display: flex;
    gap: 8px;
    font-size: 0.7rem;
    color: var(--fb-text-muted);
}

.fb-featured-stats i {
    color: var(--fb-primary);
    font-size: 0.65rem;
}

.fb-btn-follow {
    background: rgba(62, 197, 228, 0.1);
    border: 1px solid rgba(62, 197, 228, 0.3);
    color: var(--fb-primary);
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
}

.fb-btn-follow:hover {
    background: var(--fb-primary);
    color: var(--fb-text);
    transform: scale(1.05);
}

/* Latest Results */
.fb-results-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fb-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.fb-result-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.fb-result-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.fb-result-win .fb-result-badge {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: var(--fb-text);
}

.fb-result-loss .fb-result-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: var(--fb-text);
}

.fb-result-info {
    flex: 1;
    min-width: 0;
}

.fb-result-teams {
    font-weight: 600;
    color: var(--fb-text);
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.fb-result-score {
    font-size: 0.75rem;
    color: var(--fb-text-muted);
}

.fb-result-date {
    font-size: 0.75rem;
    color: var(--fb-text-muted);
    white-space: nowrap;
}

/* Announcements */
.fb-announcements-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fb-announcement-item {
    display: flex;
    gap: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border-left: 3px solid var(--fb-primary);
}

.fb-announcement-date {
    font-size: 0.75rem;
    color: var(--fb-primary);
    font-weight: 700;
    white-space: nowrap;
}

.fb-announcement-text {
    font-size: 0.85rem;
    color: var(--fb-text-muted);
    line-height: 1.5;
}

/* Fan Poll */
.fb-poll-question {
    font-size: 1rem;
    font-weight: 700;
    color: var(--fb-text);
    margin-bottom: 16px;
}

.fb-poll-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.fb-poll-option {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.fb-poll-option:hover {
    border-color: var(--fb-primary);
    background: rgba(62, 197, 228, 0.05);
}

.fb-poll-option-name {
    font-size: 0.9rem;
    color: var(--fb-text);
    font-weight: 600;
}

.fb-poll-option-percent {
    font-size: 0.85rem;
    color: var(--fb-primary);
    font-weight: 700;
}

.fb-poll-vote {
    width: 100%;
    justify-content: center;
}

/* Live Match Widget */
.fb-live-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    margin-right: 8px;
    animation: live-blink 1.5s ease-in-out infinite;
}

@keyframes live-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.fb-live-match {
    text-align: center;
}

.fb-live-teams,
.fb-live-opponent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.fb-live-team {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fb-live-team img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--fb-primary);
}

.fb-live-team span {
    font-weight: 700;
    color: var(--fb-text);
    font-size: 0.9rem;
}

.fb-live-score {
    text-align: center;
}

.fb-live-runs {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--fb-primary);
    line-height: 1;
}

.fb-live-overs {
    font-size: 0.75rem;
    color: var(--fb-text-muted);
}

.fb-live-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
    padding: 10px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 8px;
}

.fb-live-badge {
    background: #ef4444;
    color: var(--fb-text);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.fb-live-status span:last-child {
    font-size: 0.85rem;
    color: var(--fb-text-muted);
}

.fb-live-progress {
    margin-bottom: 12px;
}

.fb-progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.fb-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--fb-primary), var(--fb-primary-dark));
    border-radius: 4px;
    transition: width 0.5s ease;
}

.fb-live-rrr {
    font-size: 0.8rem;
    color: var(--fb-text-muted);
}

/* ── Sections (Players, Gallery, etc.) ──────────────────── */
.fb-section {
    padding: 60px 20px;
    display: none;
}

.fb-section.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fb-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.fb-section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 2px;
    color: var(--fb-text);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.fb-section-header h2 i {
    color: var(--fb-primary);
}

.fb-section-header p {
    font-size: 1.1rem;
    color: var(--fb-text-muted);
}

/* Players Grid */
.fb-players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.fb-player-card {
    background: var(--fb-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--fb-glass-border);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.fb-player-card:hover {
    border-color: rgba(62, 197, 228, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--fb-glow);
}

.fb-player-card-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--fb-text);
    margin-bottom: 4px;
}

.fb-player-card-role {
    font-size: 0.85rem;
    color: var(--fb-primary);
    margin-bottom: 12px;
}

.fb-player-card-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.fb-player-card-stat {
    text-align: center;
}

.fb-player-card-stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--fb-primary);
}

.fb-player-card-stat-label {
    font-size: 0.7rem;
    color: var(--fb-text-muted);
    text-transform: uppercase;
}

/* Player Card Additional Styles */
.fb-player-card-captain {
    background: linear-gradient(135deg, var(--fb-primary), var(--fb-primary-dark));
    color: var(--fb-text);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: inline-block;
}

.fb-player-card-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.fb-player-card-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--fb-text-muted);
}

.fb-player-card-detail i {
    color: var(--fb-primary);
    width: 16px;
    text-align: center;
}

.fb-player-card-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.fb-btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

/* Gallery */
.fb-gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.fb-gallery-filter {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--fb-text-muted);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
}

.fb-gallery-filter:hover,
.fb-gallery-filter.active {
    background: var(--fb-primary);
    border-color: var(--fb-primary);
    color: var(--fb-text);
}

.fb-gallery-masonry {
    column-count: 3;
    column-gap: 20px;
}

.fb-gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--fb-glass-border);
    transition: all 0.3s ease;
}

.fb-gallery-item:hover {
    border-color: rgba(62, 197, 228, 0.3);
    transform: scale(1.02);
}

.fb-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.fb-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fb-gallery-item:hover .fb-gallery-overlay {
    opacity: 1;
}

.fb-gallery-overlay i {
    font-size: 2.5rem;
    color: var(--fb-text);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

/* Videos Grid */
.fb-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.fb-video-card {
    background: var(--fb-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--fb-glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fb-video-card:hover {
    border-color: rgba(62, 197, 228, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--fb-glow);
}

.fb-video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.fb-video-thumbnail img,
.fb-video-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fb-video-card:hover .fb-video-thumbnail img {
    transform: scale(1.05);
}

.fb-video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.fb-video-play-overlay i {
    font-size: 3.5rem;
    color: var(--fb-text);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease;
}

.fb-video-card:hover .fb-video-play-overlay i {
    color: var(--fb-primary);
    transform: scale(1.1);
}

.fb-video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--fb-text);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.fb-video-info {
    padding: 16px;
}

.fb-video-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--fb-text);
    margin-bottom: 6px;
}

.fb-video-info p {
    font-size: 0.85rem;
    color: var(--fb-text-muted);
    margin-bottom: 10px;
}

.fb-video-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--fb-text-muted);
}

.fb-video-meta i {
    color: var(--fb-primary);
    margin-right: 4px;
}

/* Achievements Timeline */
.fb-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 60px;
    padding-left: 60px;
}

.fb-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--fb-primary), transparent);
}

.fb-timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.fb-timeline-year {
    position: absolute;
    left: -60px;
    top: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--fb-primary);
    letter-spacing: 2px;
}

.fb-timeline-content {
    background: var(--fb-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--fb-glass-border);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.fb-timeline-content:hover {
    border-color: rgba(62, 197, 228, 0.3);
    transform: translateX(8px);
}

.fb-timeline-content h4 {
    font-size: 1.2rem;
    color: var(--fb-text);
    margin-bottom: 8px;
}

.fb-timeline-content p {
    font-size: 0.9rem;
    color: var(--fb-text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.fb-timeline-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--fb-primary), var(--fb-primary-dark));
    color: var(--fb-text);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.fb-trophies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.fb-trophy-item {
    background: var(--fb-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--fb-glass-border);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.fb-trophy-item:hover {
    border-color: rgba(62, 197, 228, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--fb-glow);
}

.fb-trophy-icon {
    font-size: 3rem;
    color: var(--fb-primary);
    margin-bottom: 12px;
}

.fb-trophy-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--fb-text);
}

/* Sponsors Tier */
.fb-sponsors-tier {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.fb-sponsor-tier h3 {
    font-size: 1.5rem;
    color: var(--fb-text);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fb-sponsor-tier h3 i {
    color: var(--fb-primary);
}

.fb-sponsors-tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.fb-sponsor-tier-item {
    aspect-ratio: 16/9;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.fb-sponsor-tier-item:hover {
    border-color: rgba(62, 197, 228, 0.2);
    background: rgba(62, 197, 228, 0.05);
    transform: translateY(-2px);
}

.fb-sponsor-tier-placeholder {
    text-align: center;
    color: var(--fb-text-muted);
}

.fb-sponsor-tier-placeholder i {
    font-size: 2rem;
    margin-bottom: 8px;
    display: block;
    opacity: 0.5;
}

.fb-sponsor-tier-placeholder span {
    font-size: 0.85rem;
    font-weight: 500;
}

/* About Section */
.fb-about-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.fb-about-block {
    background: var(--fb-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--fb-glass-border);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.fb-about-block:hover {
    border-color: rgba(62, 197, 228, 0.2);
}

.fb-about-block h3 {
    font-size: 1.3rem;
    color: var(--fb-text);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fb-about-block h3 i {
    color: var(--fb-primary);
}

.fb-about-block p {
    color: var(--fb-text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.fb-management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.fb-management-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.fb-management-role {
    font-size: 0.8rem;
    color: var(--fb-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 6px;
}

.fb-management-name {
    font-size: 1rem;
    color: var(--fb-text);
    font-weight: 600;
}

.fb-map-placeholder {
    aspect-ratio: 16/9;
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--fb-text-muted);
    margin-top: 16px;
}

.fb-map-placeholder i {
    font-size: 3rem;
    opacity: 0.5;
}

.fb-social-links-large {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.fb-social-link-large {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--fb-text-muted);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.fb-social-link-large:hover {
    background: var(--fb-primary);
    border-color: var(--fb-primary);
    color: var(--fb-text);
    transform: translateY(-2px);
}

/* ── Footer ──────────────────────────────────────────────── */
.fb-footer {
    background: rgba(10, 15, 30, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--fb-glass-border);
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.fb-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.fb-footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.fb-footer-links a {
    color: var(--fb-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.fb-footer-links a:hover {
    color: var(--fb-primary);
}

.fb-footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.fb-footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fb-text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.fb-footer-social a:hover {
    background: var(--fb-primary);
    border-color: var(--fb-primary);
    color: var(--fb-text);
    transform: translateY(-3px);
}

.fb-footer-copy {
    font-size: 0.85rem;
    color: var(--fb-text-muted);
}

/* ── Lightbox ────────────────────────────────────────────── */
.fb-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.fb-lightbox.open {
    display: flex;
}

.fb-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--fb-text);
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fb-lightbox-close:hover {
    background: var(--fb-primary);
    transform: rotate(90deg);
}

.fb-lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

/* ── Responsive Design ───────────────────────────────────── */
@media (max-width: 1024px) {
    .fb-layout {
        grid-template-columns: 1fr;
    }

    .fb-sidebar-left,
    .fb-sidebar-right {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .fb-sidebar-left {
        order: 2;
    }

    .fb-feed {
        order: 1;
    }

    .fb-sidebar-right {
        order: 3;
    }
}

@media (max-width: 768px) {
    .fb-cover {
        height: 350px;
    }

    .fb-profile-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .fb-profile-photo {
        width: 120px;
        height: 120px;
    }

    .fb-profile-name {
        font-size: 2rem;
        justify-content: center;
    }

    .fb-profile-meta {
        justify-content: center;
    }

    .fb-profile-actions {
        justify-content: center;
    }

    .fb-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .fb-nav-tab {
        padding: 12px 14px;
        font-size: 0.8rem;
    }

    .fb-stats-grid {
        grid-template-columns: 1fr;
    }

    .fb-match-countdown {
        grid-template-columns: repeat(2, 1fr);
    }

    .fb-gallery-masonry {
        column-count: 2;
    }

    .fb-videos-grid {
        grid-template-columns: 1fr;
    }

    .fb-players-grid {
        grid-template-columns: 1fr;
    }

    .fb-timeline {
        padding-left: 40px;
    }

    .fb-timeline::before {
        left: 10px;
    }

    .fb-timeline-year {
        left: -40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .fb-cover {
        height: 280px;
    }

    .fb-profile-photo {
        width: 100px;
        height: 100px;
    }

    .fb-profile-name {
        font-size: 1.6rem;
    }

    .fb-profile-meta {
        flex-direction: column;
        gap: 8px;
    }

    .fb-profile-actions {
        flex-direction: column;
        width: 100%;
    }

    .fb-profile-actions .fb-btn {
        width: 100%;
        justify-content: center;
    }

    .fb-gallery-masonry {
        column-count: 1;
    }

    .fb-section-header h2 {
        font-size: 2.5rem;
    }
}

/* ── Scrollbar Styling ───────────────────────────────────── */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--fb-bg);
}

::-webkit-scrollbar-thumb {
    background: rgba(62, 197, 228, 0.3);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(62, 197, 228, 0.5);
}

/* ── Selection ───────────────────────────────────────────── */
::selection {
    background: var(--fb-primary);
    color: var(--fb-text);
}

/* ── Animations ──────────────────────────────────────────── */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fb-card {
    animation: slideInUp 0.5s ease forwards;
}

/* Smooth transitions for all interactive elements */
.fb-btn,
.fb-nav-tab,
.fb-social-link,
.fb-post-action-btn,
.fb-create-action,
.fb-poll-option,
.fb-gallery-filter {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Right Sidebar Additional Components ─────────────────── */
/* Sponsors List */
.fb-sponsors-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fb-sponsor-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.fb-sponsor-card:hover {
    border-color: rgba(62, 197, 228, 0.2);
    background: rgba(62, 197, 228, 0.05);
    transform: translateX(4px);
}

.fb-sponsor-logo-wrap {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--fb-primary), var(--fb-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.fb-sponsor-logo-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fb-text);
    font-size: 1.5rem;
}

.fb-sponsor-info {
    flex: 1;
    min-width: 0;
}

.fb-sponsor-name {
    font-weight: 700;
    color: var(--fb-text);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.fb-sponsor-tier {
    font-size: 0.75rem;
    color: var(--fb-text-muted);
}

/* Management List */
.fb-management-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fb-management-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.fb-management-item:hover {
    border-color: rgba(62, 197, 228, 0.2);
    background: rgba(62, 197, 228, 0.05);
}

.fb-management-role {
    font-size: 0.8rem;
    color: var(--fb-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fb-management-name {
    font-size: 0.85rem;
    color: var(--fb-text);
    font-weight: 600;
    text-align: right;
}

/* Contact List */
.fb-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fb-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    color: var(--fb-text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.fb-contact-item:hover {
    border-color: rgba(62, 197, 228, 0.2);
    background: rgba(62, 197, 228, 0.05);
    color: var(--fb-primary);
    transform: translateX(4px);
}

.fb-contact-item i {
    color: var(--fb-primary);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.fb-contact-item span {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Player Category Tags */
.fb-player-card-category {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.fb-category-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(62, 197, 228, 0.1);
    border: 1px solid rgba(62, 197, 228, 0.2);
    border-radius: 12px;
    color: var(--fb-primary);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fb-player-card-name {
    text-decoration: none;
}

.fb-player-card-name:hover {
    color: var(--fb-primary);
    text-decoration: underline;
}