/* ============================================================
   mma-research.css  —  MMA Research Hub styles
   DieOnYourFeet — premium dark combat sports aesthetic
   ============================================================ */

/* ── Keyframes ─────────────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(88, 101, 242, 0.3); }
    50%      { box-shadow: 0 0 40px rgba(88, 101, 242, 0.6); }
}
@keyframes ringPulse {
    0%   { transform: scale(0.8); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ── Hero Section ──────────────────────────────────────────── */
.research-hero {
    width: 100%;
    padding: 100px 0 60px;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(255,255,255,0.008) 40px,
            rgba(255,255,255,0.008) 80px
        ),
        linear-gradient(180deg, var(--bg0) 0%, var(--bg2) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.research-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(230,57,70,0.04) 0%, transparent 60%);
    pointer-events: none;
}
.research-hero .hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--txt);
    margin-bottom: 16px;
    animation: fadeInUp 0.6s ease-out;
}
.research-hero .hero-title span {
    color: var(--red);
}
.research-hero .hero-subtitle {
    color: var(--sub);
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease-out 0.15s both;
}
.research-hero .api-badge {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* MMA-specific hero override — subtle blue tint for MMA branding */
.mma-research-hero {
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(255,255,255,0.008) 40px,
            rgba(255,255,255,0.008) 80px
        ),
        linear-gradient(180deg, var(--bg0) 0%, #0d0f14 50%, var(--bg2) 100%);
}
.mma-research-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 30%, rgba(88,101,242,0.05) 0%, transparent 60%);
    pointer-events: none;
}

/* ── Sticky Tab Bar ────────────────────────────────────────── */
.research-tabs {
    position: sticky;
    top: 72px;
    z-index: 100;
    background: var(--bg1);
    border-bottom: 2px solid var(--bdr);
    padding: 12px 0;
}
.tabs-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2px;
}
.tabs-scroll::-webkit-scrollbar {
    display: none;
}

/* Tab buttons */
.research-tab {
    background: transparent;
    color: var(--sub);
    border: 1px solid var(--bdr);
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}
.research-tab i {
    font-size: 0.75rem;
}
.research-tab:hover {
    color: var(--txt);
    border-color: var(--red);
}
.research-tab.active {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

/* ── Research Sections ─────────────────────────────────────── */
.research-section {
    padding: 60px 0;
    background: var(--bg0);
}
.research-section:nth-child(even) {
    background: var(--bg1);
}

/* ── Search Bar ────────────────────────────────────────────── */
.research-search {
    max-width: 500px;
    margin: 0 auto 40px;
    position: relative;
}
.research-search input {
    width: 100%;
    background: var(--bg2);
    border: 1px solid var(--bdr);
    color: var(--txt);
    padding: 12px 20px 12px 44px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-family: 'Barlow', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}
.research-search input::placeholder {
    color: var(--sub);
}
.research-search input:focus {
    border-color: var(--red);
    box-shadow: 0 0 20px rgba(230,57,70,0.15);
}
.research-search > i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--sub);
    font-size: 0.9rem;
    pointer-events: none;
}

/* ── No Results ────────────────────────────────────────────── */
.no-results-msg {
    text-align: center;
    padding: 40px 20px;
    color: var(--sub);
}
.no-results-msg i {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
    opacity: 0.5;
}
.no-results-msg p {
    font-size: 1rem;
}

/* ── Fight Result Cards ────────────────────────────────────── */
.fight-result-card {
    background: var(--bg2);
    border: 1px solid var(--bdr);
    border-radius: 10px;
    padding: 24px 20px 20px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.5s ease-out both;
}
.fight-card-wrapper:nth-child(2) .fight-result-card { animation-delay: 0.08s; }
.fight-card-wrapper:nth-child(3) .fight-result-card { animation-delay: 0.16s; }
.fight-card-wrapper:nth-child(4) .fight-result-card { animation-delay: 0.24s; }
.fight-card-wrapper:nth-child(5) .fight-result-card { animation-delay: 0.32s; }
.fight-card-wrapper:nth-child(6) .fight-result-card { animation-delay: 0.40s; }

.fight-result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.fight-result-card:hover {
    transform: translateY(-4px);
    border-color: var(--red);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4), 0 0 20px rgba(230,57,70,0.08);
}
.fight-result-card:hover::before {
    opacity: 1;
}

/* Event tag */
.fight-event-tag {
    display: inline-block;
    background: rgba(230,57,70,0.12);
    color: var(--red);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid rgba(230,57,70,0.2);
}

/* VS layout */
.fight-vs-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}
.fight-fighter {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}
.fight-fighter:last-child {
    justify-content: flex-end;
    flex-direction: row-reverse;
}
.fighter-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    flex-shrink: 0;
}
.winner-label {
    background: rgba(34,197,94,0.15);
    color: #22c55e;
    border: 1px solid rgba(34,197,94,0.3);
}
.loser-label {
    background: rgba(239,68,68,0.1);
    color: #777;
    border: 1px solid rgba(255,255,255,0.08);
}
.fight-fighter-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--txt);
    line-height: 1.2;
}
.fight-vs {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--gold);
    flex-shrink: 0;
}

/* Fight meta */
.fight-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.fight-meta span {
    font-size: 0.82rem;
    color: var(--sub);
    display: flex;
    align-items: center;
    gap: 5px;
}
.fight-meta i {
    font-size: 0.7rem;
    color: var(--red);
}

/* Details link */
.fight-details-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: auto;
    transition: all 0.3s ease;
}
.fight-details-link:hover {
    color: #fff;
    gap: 10px;
}
.fight-details-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}
.fight-details-link:hover i {
    transform: translateX(3px);
}

/* ── Fighter Lookup Cards ──────────────────────────────────── */
.fighter-profile-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}
.fighter-lookup-card {
    background: var(--bg2);
    border: 1px solid var(--bdr);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.35s ease;
    height: 100%;
    animation: fadeInUp 0.5s ease-out both;
}
.fighter-card-wrapper:nth-child(2) .fighter-lookup-card { animation-delay: 0.08s; }
.fighter-card-wrapper:nth-child(3) .fighter-lookup-card { animation-delay: 0.16s; }
.fighter-card-wrapper:nth-child(4) .fighter-lookup-card { animation-delay: 0.24s; }
.fighter-card-wrapper:nth-child(5) .fighter-lookup-card { animation-delay: 0.32s; }
.fighter-card-wrapper:nth-child(6) .fighter-lookup-card { animation-delay: 0.40s; }

.fighter-lookup-card:hover {
    transform: translateY(-5px);
    border-color: var(--red);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4), 0 0 20px rgba(230,57,70,0.08);
}

/* Fighter card image */
.fighter-card-img {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg1) 0%, var(--bg3) 100%);
}
.fighter-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}
.fighter-lookup-card:hover .fighter-card-img img {
    transform: scale(1.05);
}
.fighter-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--bg2) 0%, transparent 100%);
    pointer-events: none;
}
.fighter-card-flag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.6);
    padding: 4px 6px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}
.fighter-card-flag img {
    position: static;
    width: 24px;
    height: auto;
    display: block;
}

/* Fighter card info */
.fighter-card-info {
    padding: 18px 20px;
}
.fighter-card-info h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.fighter-card-stats {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}
.fighter-record {
    background: rgba(34,197,94,0.12);
    color: #22c55e;
    padding: 3px 10px;
    border-radius: 12px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid rgba(34,197,94,0.2);
}
.fighter-division {
    background: rgba(244,165,0,0.1);
    color: var(--gold);
    padding: 3px 10px;
    border-radius: 12px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(244,165,0,0.2);
}
.fighter-country {
    font-size: 0.82rem;
    color: var(--sub);
}
.fighter-country i {
    color: var(--red);
    margin-right: 4px;
    font-size: 0.75rem;
}

/* ── Odds Table ────────────────────────────────────────────── */
.odds-table-wrapper {
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid var(--bdr);
}
.odds-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Barlow', sans-serif;
}
.odds-table thead {
    background: var(--bg1);
}
.odds-table th {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sub);
    padding: 14px 18px;
    border-bottom: 2px solid var(--red);
    text-align: left;
    white-space: nowrap;
}
.odds-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--bdr);
    font-size: 0.92rem;
    color: var(--txt);
    white-space: nowrap;
}
.odds-table tbody tr {
    background: var(--bg2);
    transition: all 0.3s ease;
}
.odds-table tbody tr:hover {
    background: var(--bg3);
}
.odds-table tbody tr:last-child td {
    border-bottom: none;
}

/* Odds colours */
.odds-fight-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.95rem !important;
    color: #fff !important;
}
.odds-fighter-name {
    font-weight: 500;
}
.odds-favorite {
    color: #22c55e !important;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem !important;
}
.odds-underdog {
    color: var(--gold) !important;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem !important;
}
.odds-event-pill {
    display: inline-block;
    background: rgba(230,57,70,0.1);
    color: var(--red);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 10px;
    border: 1px solid rgba(230,57,70,0.2);
}

/* ── Upcoming Event Cards ──────────────────────────────────── */
.upcoming-event-card {
    display: flex;
    align-items: stretch;
    background: var(--bg2);
    border: 1px solid var(--bdr);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.35s ease;
    animation: fadeInUp 0.5s ease-out both;
}
.upcoming-event-card:hover {
    transform: translateY(-3px);
    border-color: var(--red);
    box-shadow: 0 10px 24px rgba(0,0,0,0.4);
}

.event-date-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--red), #b22230);
    padding: 20px 22px;
    min-width: 90px;
    flex-shrink: 0;
}
.event-month {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
}
.event-day {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin: 2px 0;
}
.event-year {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
}

.event-info-block {
    padding: 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.event-name-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.event-name-row h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}
.event-status-pill {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 2px 10px;
    border-radius: 10px;
}
.event-status-pill.upcoming {
    background: rgba(244,165,0,0.12);
    color: var(--gold);
    border: 1px solid rgba(244,165,0,0.25);
}
.event-venue {
    font-size: 0.88rem;
    color: var(--sub);
    margin: 0 0 4px;
}
.event-venue i {
    color: var(--red);
    margin-right: 4px;
    font-size: 0.78rem;
}
.event-extra {
    font-size: 0.82rem;
    color: #555;
    margin: 0;
}
.event-extra i {
    margin-right: 4px;
}

/* ── On This Day — Timeline ────────────────────────────────── */
.otd-timeline {
    position: relative;
    padding-left: 36px;
}
.otd-timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--red), var(--bdr));
}

.otd-card {
    position: relative;
    margin-bottom: 32px;
    animation: slideInLeft 0.5s ease-out both;
}
.otd-card:nth-child(2) { animation-delay: 0.15s; }
.otd-card:nth-child(3) { animation-delay: 0.3s; }

.otd-dot {
    position: absolute;
    left: -30px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--red);
    border: 3px solid var(--bg0);
    z-index: 2;
    box-shadow: 0 0 12px rgba(230,57,70,0.4);
}
.otd-line {
    position: absolute;
    left: -23px;
    top: 20px;
    width: 23px;
    height: 2px;
    background: var(--bdr);
}

.otd-content {
    background: var(--bg2);
    border: 1px solid var(--bdr);
    border-radius: 10px;
    padding: 24px;
    transition: all 0.35s ease;
}
.otd-content:hover {
    border-color: var(--red);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.otd-year {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    background: rgba(230,57,70,0.1);
    padding: 3px 12px;
    border-radius: 10px;
    margin-bottom: 12px;
    border: 1px solid rgba(230,57,70,0.2);
}
.otd-content h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.otd-content p {
    color: #bbb;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.otd-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.otd-meta span {
    font-size: 0.8rem;
    color: var(--sub);
    display: flex;
    align-items: center;
    gap: 5px;
}
.otd-meta i {
    color: var(--gold);
    font-size: 0.72rem;
}

.otd-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}
.otd-link:hover {
    color: #fff;
    gap: 10px;
}
.otd-link i {
    font-size: 0.7rem;
}

/* ── Discord CTA ───────────────────────────────────────────── */
.discord-cta {
    background: linear-gradient(135deg, #5865F2 0%, #404EED 100%);
    border-radius: 16px;
    padding: 48px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}
.discord-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(0,0,0,0.15) 0%, transparent 40%);
    pointer-events: none;
}

.discord-content {
    flex: 1;
    position: relative;
    z-index: 2;
}
.discord-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255,255,255,0.15);
    margin-bottom: 18px;
    font-size: 1.8rem;
    color: #fff;
    backdrop-filter: blur(8px);
}
.discord-content h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 12px;
}
.discord-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 500px;
}

.discord-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #5865F2;
    padding: 14px 36px;
    border-radius: 30px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.discord-join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    color: #404EED;
}
.discord-join-btn i {
    font-size: 1.2rem;
}

.discord-subtext {
    display: block;
    margin-top: 14px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
}

/* Discord graphic side */
.discord-graphic {
    position: relative;
    flex: 0 0 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.discord-bg-icon {
    font-size: 6rem;
    color: rgba(255,255,255,0.08);
    position: relative;
    z-index: 1;
}
.discord-rings {
    position: absolute;
    inset: 0;
}
.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
}
.ring-1 {
    width: 100px;
    height: 100px;
    animation: ringPulse 3s ease-out infinite;
}
.ring-2 {
    width: 150px;
    height: 150px;
    animation: ringPulse 3s ease-out 1s infinite;
}
.ring-3 {
    width: 200px;
    height: 200px;
    animation: ringPulse 3s ease-out 2s infinite;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 991px) {
    .research-hero .hero-title {
        font-size: 2.8rem;
    }
    .discord-cta {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
    }
    .discord-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .discord-graphic {
        display: none;
    }
}

@media (max-width: 768px) {
    .research-hero {
        padding: 80px 0 40px;
    }
    .research-hero .hero-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    .research-hero .hero-subtitle {
        font-size: 0.95rem;
    }
    .research-tabs {
        top: 58px;
        padding: 10px 0;
    }
    .tabs-scroll {
        gap: 6px;
        padding: 0 4px;
    }
    .research-tab {
        padding: 6px 14px;
        font-size: 0.72rem;
    }
    .research-section {
        padding: 40px 0;
    }

    /* Fight cards */
    .fight-vs-layout {
        flex-direction: column;
        gap: 6px;
    }
    .fight-fighter,
    .fight-fighter:last-child {
        justify-content: center;
        flex-direction: row;
    }
    .fight-vs {
        font-size: 0.72rem;
    }
    .fight-meta {
        justify-content: center;
    }
    .fight-details-link {
        text-align: center;
        width: 100%;
        justify-content: center;
    }

    /* Event cards */
    .upcoming-event-card {
        flex-direction: column;
    }
    .event-date-block {
        flex-direction: row;
        gap: 8px;
        padding: 12px 20px;
        min-width: auto;
    }
    .event-day {
        font-size: 1.6rem;
    }

    /* OTD timeline */
    .otd-timeline {
        padding-left: 28px;
    }
    .otd-dot {
        left: -22px;
        width: 10px;
        height: 10px;
    }
    .otd-line {
        left: -17px;
        width: 17px;
    }
    .otd-content {
        padding: 18px;
    }

    /* Odds table */
    .odds-table th,
    .odds-table td {
        padding: 10px 12px;
        font-size: 0.82rem;
    }

    /* Discord */
    .discord-cta {
        padding: 28px 20px;
    }
    .discord-content h2 {
        font-size: 1.5rem;
    }
    .discord-join-btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .research-hero .hero-title {
        font-size: 1.8rem;
    }
    .fight-fighter-name {
        font-size: 0.88rem;
    }
    .event-name-row h3 {
        font-size: 1.1rem;
    }
}
