﻿/* Base and Variables */
:root {
    --val-red: #ff4655;
    --val-dark: #111111;
    --val-darker: #0f1923;
    --val-white: #ece8e1;
    --val-grey: #8b978f;
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-padding-top: 100px; /* Zabranuje prekyvavani navbaru */
}

body {
    background-color: var(--val-darker);
    color: var(--val-white);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, .logo-text, .section-title {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(15, 25, 35, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--val-red);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 2rem;
    color: var(--val-red);
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--val-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--val-red);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--val-red);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--val-darker) 0%, var(--val-dark) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background-color: var(--val-red);
    transform: rotate(25deg);
    z-index: 0;
    opacity: 0.05;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero-logo {
    margin-bottom: 2rem;
}

.vinfo-logo-placeholder {
    font-size: 6rem;
    background-color: var(--val-red);
    width: 150px;
    height: 150px;
    line-height: 150px;
    border-radius: 50%;
    margin: 0 auto;
    border: 4px solid var(--val-white);
    box-shadow: 0 0 30px rgba(255, 70, 85, 0.4);
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1rem;
    letter-spacing: 4px;
    text-shadow: 4px 4px 0 var(--val-red);
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--val-grey);
    margin-bottom: 3rem;
    animation: fadeIn 1.5s ease;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--val-red);
    color: var(--val-white);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, background-color 0.2s;
    border: 1px solid var(--val-red);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--val-white);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover {
    color: var(--val-darker);
}

.cta-button:hover::before {
    left: 0;
}

/* Sections */
.roster-section, .about-section {
    padding: 100px 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 4rem;
    color: var(--val-red);
    position: relative;
    display: inline-block;
}

.section-line {
    height: 4px;
    width: 100px;
    background-color: var(--val-white);
    margin-top: 1rem;
}

/* Roster Grid */
.roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.player-card {
    background-color: var(--val-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.player-card:hover {
    transform: translateY(-10px);
    border-color: var(--val-red);
}

.player-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background-color: var(--val-red);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.player-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.bg-red { background-color: #3b191c; }
.bg-black { background-color: #1a1a1a; }

.player-info {
    padding: 1.5rem;
}

.player-role {
    color: var(--val-red);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.player-name {
    font-size: 2.5rem;
    margin: 0.5rem 0;
}

.player-mains {
    color: var(--val-grey);
    font-size: 0.9rem;
}

/* About Section */
.about-section {
    background-color: var(--val-white);
    color: var(--val-darker);
    max-width: 100%;
    padding: 100px 10%;
    position: relative;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 4rem;
    color: var(--val-red);
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-box {
    background-color: var(--val-darker);
    color: var(--val-white);
    padding: 2rem;
    text-align: center;
    border-left: 4px solid var(--val-red);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--val-red);
}

.stat-label {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--val-dark);
    border-top: 1px solid rgba(255, 70, 85, 0.2);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--val-red);
    margin-bottom: 1rem;
}

.social-links {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    color: var(--val-white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--val-red);
}

.copyright {
    color: var(--val-grey);
    font-size: 0.9rem;
}

/* Legacy Section */
.legacy-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.legacy-column h3 {
    font-size: 2.5rem;
    color: var(--val-white);
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 70, 85, 0.3);
    padding-bottom: 1rem;
}

.match-list, .milestone-list {
    list-style: none;
    padding: 0;
}

.match-list li, .milestone-list li {
    background-color: var(--val-dark);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--val-grey);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    transition: transform 0.2s;
}

.match-list li:hover, .milestone-list li:hover {
    transform: translateX(10px);
}

.match-result {
    font-family: var(--font-heading);
    padding: 0.2rem 0.8rem;
    border-radius: 4px;
    margin-right: 1rem;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.win {
    background-color: var(--val-red);
    color: var(--val-white);
}

.loss {
    background-color: #333;
    color: var(--val-grey);
}

.match-score {
    margin-left: auto;
    font-weight: 800;
    color: var(--val-white);
}

/* Animations */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Match Cards */
.match-card { text-decoration: none; display: flex; justify-content: space-between; align-items: center; background-color: var(--val-dark); border: 2px solid rgba(255, 255, 255, 0.1); padding: 1.5rem 2rem; transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s; }
.match-card:hover { transform: translateY(-3px); }
.match-card.featured { border-color: var(--val-red); box-shadow: 0 0 15px rgba(255, 70, 85, 0.2); }
.match-card.featured:hover { box-shadow: 0 0 25px rgba(255, 70, 85, 0.4); }
.match-card-team-1, .match-card-team-2 { flex: 1; font-family: var(--font-heading); font-size: 2rem; }
.match-card-team-1 { text-align: right; color: var(--val-white); }
.match-card-team-2 { text-align: left; color: var(--val-white); }
.match-card-info { flex: 0 0 220px; text-align: center; position: relative; padding: 0 1rem; }
.match-card-badge { flex: 0 0 100px; text-align: right; }
@media (max-width: 768px) {
  .match-card { flex-direction: column; gap: 1.5rem; text-align: center; }
  .match-card-team-1 { text-align: center; font-size: 2.5rem; }
  .match-card-team-2 { text-align: center; font-size: 1.8rem; }
  .match-card-info { flex: auto; }
  .match-card-badge { flex: auto; text-align: center; }
}

/* Fade In Up Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ Accordion Styles */
.faq-item {
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--val-red);
    background-color: var(--val-dark);
    border-radius: 0 8px 8px 0;
    overflow: hidden;
}
.faq-question {
    padding: 1.5rem;
    font-size: 1.4rem;
    color: var(--val-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    user-select: none;
    transition: background-color 0.2s;
}
.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}
.faq-icon {
    color: var(--val-red);
    font-size: 1.5rem;
    transition: transform 0.3s;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.faq-answer-inner {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--val-grey);
    line-height: 1.6;
}

/* LIVE BADGE */
.live-badge {
    width: 8px;
    height: 8px;
    background-color: var(--val-red);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(255, 70, 85, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 70, 85, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 70, 85, 0); }
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* Custom Cursor Removed */

/* Player Modal */
.player-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 25, 35, 0.95); z-index: 100000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; backdrop-filter: blur(10px); }
.player-modal.active { opacity: 1; visibility: visible; }
.player-modal-content { background: var(--val-dark); border: 1px solid var(--val-red); width: 90%; max-width: 800px; position: relative; box-shadow: 0 20px 50px rgba(255, 70, 85, 0.2); transform: scale(0.9); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.player-modal.active .player-modal-content { transform: scale(1); }
.close-modal { position: absolute; top: 10px; right: 20px; font-size: 2.5rem; color: var(--val-grey); background: none; border: none; cursor: pointer; z-index: 10; transition: color 0.2s; }
.close-modal:hover { color: var(--val-red); }
.modal-body { display: flex; flex-wrap: wrap; }
.modal-image { flex: 1 1 300px; min-height: 400px; background-size: cover; background-position: center top; border-right: 1px solid rgba(255,255,255,0.1); }
.modal-info { flex: 1 1 300px; padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.modal-role { color: var(--val-grey); letter-spacing: 3px; font-weight: 800; font-size: 0.9rem; }
.modal-name { font-family: var(--font-heading); font-size: 3.5rem; color: var(--val-white); margin: 5px 0; text-transform: uppercase; }
.modal-stats { display: flex; gap: 1.5rem; margin-top: 2rem; background: rgba(255,255,255,0.03); padding: 1.5rem; border-radius: 4px; }
.m-stat { display: flex; flex-direction: column; }
.m-stat span { color: var(--val-grey); font-size: 0.8rem; letter-spacing: 1px; }
.m-stat strong { color: var(--val-white); font-size: 1.5rem; font-family: var(--font-heading); }
@media (max-width: 600px) { .modal-image { min-height: 250px; } .modal-info { padding: 1.5rem; } }

.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(30, 35, 45, 0.9) 0%, rgba(15, 25, 35, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--val-grey);
    transition: width 0.3s ease;
}

.timeline-item.win::before {
    background: #53fc18;
    box-shadow: 0 0 15px #53fc18;
}

.timeline-item.loss::before {
    background: var(--val-red);
    box-shadow: 0 0 15px var(--val-red);
}

.timeline-item:hover {
    transform: translateX(10px) scale(1.01);
    background: linear-gradient(90deg, rgba(40, 45, 55, 0.9) 0%, rgba(25, 35, 45, 0.8) 100%);
    border-color: rgba(255, 255, 255, 0.1);
}

.timeline-item:hover::before {
    width: 10px;
}

.timeline-date {
    flex: 0 0 140px;
    color: var(--val-grey);
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.timeline-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeline-tournament {
    background: rgba(255, 70, 85, 0.15);
    color: var(--val-red);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    border: 1px solid rgba(255, 70, 85, 0.3);
}

.timeline-match {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: white;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.timeline-match span {
    color: var(--val-white);
    font-size: 2.2rem;
    padding: 0.2rem 1rem;
    background: rgba(0,0,0,0.4);
    border-radius: 8px;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
}

.timeline-item.win .timeline-match span {
    color: #53fc18;
    border: 1px solid rgba(83, 252, 24, 0.3);
}

.timeline-item.loss .timeline-match span {
    color: var(--val-red);
    border: 1px solid rgba(255, 70, 85, 0.3);
}

@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem;
    }
    .timeline-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
    }
    .timeline-match {
        font-size: 1.4rem;
        width: 100%;
        justify-content: space-between;
    }
}


/* Countdown Styles */
.countdown-wrapper {
    display: flex;
    gap: 1rem;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--val-white);
    text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
}

.countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0,0,0,0.3);
    padding: 10px;
    border-radius: 4px;
    min-width: 80px;
    border: 1px solid rgba(255, 70, 85, 0.3);
    box-shadow: 0 0 15px rgba(255, 70, 85, 0.4);
}

.countdown-number {
    text-shadow: 0 0 10px rgba(255, 70, 85, 0.6);
}

.countdown-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--val-grey);
    letter-spacing: 1px;
}

.countdown-separator {
    color: var(--val-red);
    align-self: center;
    margin-top: -15px;
    text-shadow: 0 0 10px rgba(255, 70, 85, 0.8);
}

/* ============================================
   MOBILE MENU BUTTON
   ============================================ */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
    background: none;
    border: none;
}
.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: var(--val-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================
   RESPONSIVE — TABLET & MOBILE (≤ 900px)
   ============================================ */
@media (max-width: 900px) {

    /* --- NAVBAR --- */
    .nav-container {
        flex-direction: row !important;
        padding: 1rem 1.5rem !important;
        gap: 0 !important;
        position: relative;
    }
    .mobile-menu-btn { display: flex !important; }

    .nav-links {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background: rgba(10, 18, 28, 0.99) !important;
        backdrop-filter: blur(16px) !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0 !important;
        padding: 0 !important;
        border-bottom: 2px solid var(--val-red) !important;
        z-index: 1050 !important;
        overflow-x: unset !important;
    }
    .nav-links.nav-open {
        display: flex !important;
    }
    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .nav-links li.lang-switcher {
        justify-content: center;
        padding: 1rem 0;
    }
    .nav-links a {
        display: block !important;
        padding: 1rem 2rem !important;
        font-size: 1.1rem !important;
        white-space: nowrap !important;
        letter-spacing: 1px;
    }
    .nav-links a:hover { background: rgba(255,70,85,0.08); }

    /* --- HERO --- */
    .hero { height: 100svh; min-height: 600px; }
    .hero-content { padding: 1.5rem !important; }
    .hero-title { font-size: 2.8rem !important; letter-spacing: 2px !important; }
    .hero-subtitle { font-size: 0.95rem !important; padding: 0 0.5rem; }
    .vinfo-logo-image, img.vinfo-logo-image { width: 130px !important; height: 130px !important; }
    .cta-button { font-size: 1.1rem !important; padding: 0.8rem 2rem !important; }

    /* Hero links row */
    div[style*="display: flex"][style*="gap: 2rem"] {
        gap: 1rem !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    /* --- SECTIONS GENERAL --- */
    .section-title { font-size: 2.4rem !important; }
    .roster-section, .about-section { padding: 60px 1.2rem !important; }
    section { padding-left: 1.2rem !important; padding-right: 1.2rem !important; }

    /* --- STAT COUNTERS (hero area) --- */
    div[style*="grid-template-columns: repeat(auto-fit, minmax(180px"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0 !important;
    }
    span.stat-counter { font-size: 3rem !important; }

    /* --- SCHEDULE / MATCH CARDS --- */
    div[style*="max-width: 800px"] {
        padding: 1.5rem 1rem !important;
    }
    div[style*="font-size: 3.5rem"] { font-size: 2rem !important; }
    div[style*="font-size: 3rem"] { font-size: 1.8rem !important; }

    /* COUNTDOWN */
    .countdown-wrapper { gap: 0.3rem !important; font-size: 1.5rem !important; }
    .countdown-box { min-width: 52px !important; padding: 6px 4px !important; }
    .countdown-label { font-size: 0.55rem !important; }
    .countdown-separator { margin-top: -8px !important; }

    /* --- ABOUT SECTION --- */
    .about-section { clip-path: none !important; padding: 50px 1.5rem !important; }
    .about-container { flex-direction: column !important; }
    .about-text h2 { font-size: 2.5rem !important; }
    .about-text p { font-size: 1rem !important; margin-bottom: 2rem !important; }
    .stats-grid { grid-template-columns: 1fr 1fr !important; gap: 1rem !important; }
    .stat-box { padding: 1.2rem !important; }
    .stat-number { font-size: 2.5rem !important; }

    /* --- ROSTER --- */
    .roster-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) !important; gap: 1rem !important; }
    .player-image { height: 200px !important; }
    .player-name { font-size: 1.8rem !important; }

    /* --- LEGACY / TIMELINE --- */
    .legacy-container { grid-template-columns: 1fr !important; gap: 2rem !important; }
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
        padding: 1rem 1rem 1rem 1.2rem !important;
    }
    .timeline-date { flex: none !important; font-size: 0.8rem !important; letter-spacing: 1px !important; }
    .timeline-content { flex-direction: row !important; align-items: center !important; gap: 0.8rem !important; flex-wrap: wrap !important; width: 100% !important; }
    .timeline-match { font-size: 1.1rem !important; gap: 0.5rem !important; }
    .timeline-match span { font-size: 1.2rem !important; padding: 0.1rem 0.6rem !important; }
    .timeline-tournament { font-size: 0.7rem !important; padding: 0.3rem 0.7rem !important; }
    .timeline-item:hover { transform: none !important; }

    /* --- TROPHIES --- */
    div[style*="grid-template-columns: repeat(3"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* --- FAQ --- */
    .faq-question { font-size: 1rem !important; padding: 1rem !important; }

    /* --- SCRIM FORM --- */
    #scrim-form { padding: 1.5rem !important; }
    div[style*="max-width: 1200px"][style*="flex-wrap: wrap"] > div {
        flex: 1 1 100% !important;
    }

    /* --- PLAYER MODAL --- */
    .modal-image { min-height: 220px !important; }
    .modal-info { padding: 1.2rem !important; }
    .modal-name { font-size: 2.5rem !important; }
    .modal-stats { flex-wrap: wrap !important; gap: 1rem !important; }

    /* --- MISC INLINE OVERRIDES --- */
    div[style*="padding: 2.5rem 4rem"] { padding: 1.5rem 1rem !important; }
    div[style*="padding: 100px"] { padding: 50px 1.2rem !important; }
    div[style*="font-size: 4.5rem"] { font-size: 2.5rem !important; }

    /* Scrim contact buttons */
    .scrim-btn { font-size: 1.1rem !important; padding: 0.9rem !important; }
}

/* ============================================
   EXTRA SMALL (≤ 480px)
   ============================================ */
@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem !important; }
    .section-title { font-size: 2rem !important; }
    .stats-grid { grid-template-columns: 1fr !important; }
    .roster-grid { grid-template-columns: 1fr 1fr !important; }
    .player-image { height: 170px !important; }
    .player-name { font-size: 1.5rem !important; }
    .timeline-content { flex-direction: column !important; align-items: flex-start !important; }
    .vinfo-logo-image, img.vinfo-logo-image { width: 100px !important; height: 100px !important; }
    div[style*="font-size: 3.5rem"] { font-size: 1.6rem !important; }
}

/* ============================================
   CURSOR — DISABLE ON TOUCH DEVICES
   ============================================ */
@media (max-width: 900px) {
    body, a, button, input, textarea, .player-card, .highlight-card { cursor: auto !important; }
    .custom-cursor, .custom-cursor-follower { display: none !important; }
}

/* Performant Custom Cursor (desktop only) */
@media (hover: hover) and (pointer: fine) {
    body { cursor: none; }
    a, button, input, textarea, .player-card, .highlight-card { cursor: none !important; }
}
.custom-cursor { position: fixed; top: 0; left: 0; width: 6px; height: 6px; background-color: var(--val-red); border-radius: 50%; pointer-events: none; z-index: 10000; transform: translate3d(-50%, -50%, 0); will-change: transform; transition: width 0.2s, height 0.2s, background-color 0.2s; }
.custom-cursor-follower { position: fixed; top: 0; left: 0; width: 30px; height: 30px; border: 2px solid rgba(255, 70, 85, 0.4); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate3d(-50%, -50%, 0); will-change: transform; transition: width 0.2s, height 0.2s, border-color 0.2s; }
.custom-cursor.hover { width: 10px; height: 10px; background-color: var(--val-white); }
.custom-cursor-follower.hover { width: 40px; height: 40px; border-color: var(--val-white); background-color: rgba(255, 255, 255, 0.1); }

