/* =====================================================
 * View Kickoff - Live Football Streaming Template
 * Prefix: vk-
 * Palette: Dark Charcoal + Pitch Green + Signal Red
 * ===================================================== */

:root {
    --vk-bg: #080b10;
    --vk-bg-soft: #0d1219;
    --vk-bg-card: #11171f;
    --vk-pitch: #0c2417;
    --vk-pitch-deep: #061310;
    --vk-live: #ff2d3a;
    --vk-live-soft: rgba(255, 45, 58, 0.18);
    --vk-grass: #4ade80;
    --vk-grass-deep: #16a34a;
    --vk-led: #facc15;
    --vk-led-soft: rgba(250, 204, 21, 0.22);
    --vk-text: #e8eef5;
    --vk-text-soft: #94a3b8;
    --vk-text-mute: #64748b;
    --vk-border: rgba(74, 222, 128, 0.18);
    --vk-border-soft: rgba(255, 255, 255, 0.06);
    --vk-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
    --vk-radius: 14px;
    --vk-radius-sm: 8px;
    --vk-radius-lg: 22px;
    --vk-font-mono: "Courier New", "JetBrains Mono", "Consolas", monospace;
    --vk-font-display: "Oswald", "Bebas Neue", "Arial Black", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--vk-bg);
    color: var(--vk-text);
    line-height: 1.6;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    background-image:
        radial-gradient(circle at 12% 8%, rgba(74, 222, 128, 0.08), transparent 45%),
        radial-gradient(circle at 88% 92%, rgba(255, 45, 58, 0.08), transparent 50%);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.vk-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

.mipcms-main {
    overflow: hidden;
}

/* ==================== Buttons ==================== */
.vk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.25s ease;
    cursor: pointer;
    border: 2px solid transparent;
    line-height: 1;
    white-space: nowrap;
}

.vk-btn-live {
    background: var(--vk-live);
    color: #fff;
    border-color: var(--vk-live);
    box-shadow: 0 0 0 0 rgba(255, 45, 58, 0.6);
    animation: vk-btn-pulse 2.4s ease-out infinite;
}

.vk-btn-live:hover {
    background: #ff4451;
    transform: translateY(-2px);
}

.vk-btn-ghost {
    background: transparent;
    color: var(--vk-grass);
    border-color: var(--vk-grass);
}

.vk-btn-ghost:hover {
    background: rgba(74, 222, 128, 0.1);
    transform: translateY(-2px);
}

.vk-btn-lg {
    padding: 15px 30px;
    font-size: 14px;
}

.vk-btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

.vk-btn-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    animation: vk-blink 1s ease-in-out infinite;
}

@keyframes vk-btn-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 45, 58, 0.55); }
    70% { box-shadow: 0 0 0 12px rgba(255, 45, 58, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 45, 58, 0); }
}

@keyframes vk-blink {
    50% { opacity: 0.25; }
}

/* ==================== Section Header ==================== */
.vk-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.vk-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--vk-grass);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.vk-eyebrow-line {
    display: inline-block;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--vk-grass));
}

.vk-section-title {
    font-family: var(--vk-font-display);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.01em;
    margin-bottom: 12px;
    color: var(--vk-text);
}

.vk-section-subtitle {
    color: var(--vk-text-soft);
    font-size: 15px;
    max-width: 620px;
    margin: 0 auto;
}

/* ==================== Header ==================== */
.vk-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 11, 16, 0.85);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid var(--vk-border-soft);
    box-shadow: 0 1px 0 0 rgba(74, 222, 128, 0.25), 0 8px 24px rgba(0, 0, 0, 0.45);
}

.vk-header-inner {
    padding: 14px 0;
}

.vk-header .vk-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.vk-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.vk-logo a {
    display: block;
    max-width: 160px;
}

.vk-logo img {
    max-height: 38px;
    width: auto;
}

.vk-logo-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    background: var(--vk-live);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    border-radius: 4px;
    animation: vk-blink 1.4s ease-in-out infinite;
}

.vk-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.vk-nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.vk-nav-link {
    display: inline-block;
    padding: 8px 14px;
    color: var(--vk-text-soft);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.vk-nav-link:hover,
.vk-nav-link.active {
    color: var(--vk-grass);
    background: rgba(74, 222, 128, 0.08);
}

.vk-dropdown {
    position: relative;
}

.vk-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.vk-dropdown-arrow {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.vk-dropdown:hover .vk-dropdown-arrow {
    transform: rotate(180deg);
}

.vk-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 200px;
    background: var(--vk-bg-card);
    border: 1px solid var(--vk-border);
    border-radius: var(--vk-radius-sm);
    padding: 8px 0;
    box-shadow: var(--vk-shadow);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
}

.vk-dropdown:hover .vk-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.vk-dropdown-item {
    display: block;
    padding: 9px 18px;
    color: var(--vk-text-soft);
    font-size: 13px;
    transition: all 0.15s ease;
}

.vk-dropdown-item:hover {
    background: rgba(74, 222, 128, 0.08);
    color: var(--vk-grass);
}

.vk-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vk-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--vk-border-soft);
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.vk-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--vk-text);
    border-radius: 1px;
}

/* Mobile menu */
.vk-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--vk-bg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 24px;
}

.vk-mobile-menu.active {
    transform: translateX(0);
}

.vk-mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--vk-border);
}

.vk-mobile-logo img {
    max-height: 36px;
    width: auto;
}

.vk-mobile-close {
    width: 38px;
    height: 38px;
    background: transparent;
    border: 1px solid var(--vk-border);
    color: var(--vk-text);
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
}

.vk-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vk-mobile-nav-item {
    display: block;
    padding: 14px 16px;
    color: var(--vk-text);
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid transparent;
}

.vk-mobile-nav-item.active,
.vk-mobile-nav-item:hover {
    color: var(--vk-grass);
    background: rgba(74, 222, 128, 0.08);
}

.vk-mobile-cta {
    margin-top: 12px;
    background: var(--vk-live);
    color: #fff !important;
    text-align: center;
}

.vk-mobile-dropdown-toggle {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.vk-mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 16px;
}

.vk-mobile-dropdown.active .vk-mobile-dropdown-menu {
    max-height: 600px;
}

.vk-mobile-dropdown-item {
    display: block;
    padding: 10px 14px;
    color: var(--vk-text-soft);
    font-size: 14px;
}

.vk-mobile-dropdown-item:hover {
    color: var(--vk-grass);
}

/* ==================== Hero Section ==================== */
.vk-hero {
    position: relative;
    padding: 70px 0 60px;
    background: linear-gradient(180deg, var(--vk-pitch) 0%, var(--vk-bg) 100%);
    overflow: hidden;
}

.vk-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.vk-hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(74, 222, 128, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 222, 128, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

.vk-hero-pitch {
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 60%;
    background: radial-gradient(ellipse at top, rgba(74, 222, 128, 0.18), transparent 70%);
    filter: blur(40px);
}

.vk-hero .vk-container {
    position: relative;
    z-index: 1;
}

/* Hero meta row: LIVE | Countdown | League */
.vk-hero-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 36px;
    padding-bottom: 22px;
    border-bottom: 1px dashed var(--vk-border);
}

.vk-hero-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--vk-live-soft);
    color: var(--vk-live);
    border: 1px solid var(--vk-live);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.vk-hero-live-dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    background: var(--vk-live);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--vk-live);
    animation: vk-pulse-dot 1.2s ease-in-out infinite;
}

@keyframes vk-pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

.vk-hero-countdown {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--vk-font-mono);
    color: var(--vk-led);
    font-size: 18px;
    font-weight: 800;
    text-shadow: 0 0 12px var(--vk-led-soft);
}

.vk-cd-label {
    font-size: 10px;
    color: var(--vk-text-mute);
    letter-spacing: 0.18em;
    margin-right: 6px;
}

.vk-cd-num {
    display: inline-block;
    min-width: 28px;
    padding: 4px 6px;
    background: rgba(250, 204, 21, 0.08);
    border: 1px solid rgba(250, 204, 21, 0.3);
    border-radius: 4px;
    text-align: center;
}

.vk-cd-sep {
    color: var(--vk-led);
    animation: vk-blink 1s ease-in-out infinite;
}

.vk-hero-league {
    margin-left: auto;
    color: var(--vk-text-soft);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* Hero scoreboard */
.vk-hero-board {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    padding: 36px 40px;
    background: linear-gradient(135deg, var(--vk-pitch-deep) 0%, var(--vk-bg-card) 100%);
    border: 1px solid var(--vk-border);
    border-radius: var(--vk-radius-lg);
    box-shadow: var(--vk-shadow), inset 0 0 60px rgba(74, 222, 128, 0.06);
    margin-bottom: 26px;
}

.vk-hero-team {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vk-hero-team-home {
    text-align: left;
}

.vk-hero-team-away {
    text-align: right;
}

.vk-hero-flag {
    font-size: 38px;
    line-height: 1;
}

.vk-hero-team-name {
    font-family: var(--vk-font-display);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--vk-text);
}

.vk-hero-team-sub {
    font-size: 11px;
    color: var(--vk-text-mute);
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.vk-hero-score {
    display: flex;
    align-items: center;
    gap: 24px;
}

.vk-hero-score-num {
    font-family: var(--vk-font-mono);
    font-size: 96px;
    font-weight: 800;
    line-height: 1;
    color: var(--vk-led);
    text-shadow:
        0 0 20px var(--vk-led-soft),
        0 0 40px var(--vk-led-soft);
    min-width: 80px;
    text-align: center;
}

.vk-hero-score-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.vk-hero-min {
    padding: 4px 10px;
    background: var(--vk-live);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    border-radius: 4px;
    letter-spacing: 0.1em;
}

.vk-hero-vs {
    font-family: var(--vk-font-display);
    font-size: 14px;
    font-weight: 800;
    color: var(--vk-text-mute);
    letter-spacing: 0.2em;
}

/* Wave bars below scoreboard */
.vk-hero-wave {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    height: 36px;
    margin-bottom: 30px;
}

.vk-hero-wave span {
    display: block;
    width: 5px;
    height: 30%;
    background: linear-gradient(180deg, var(--vk-grass), var(--vk-grass-deep));
    border-radius: 2px;
    animation: vk-wave 1.4s ease-in-out infinite;
}

.vk-hero-wave span:nth-child(1)  { animation-delay: 0.0s; }
.vk-hero-wave span:nth-child(2)  { animation-delay: 0.1s; }
.vk-hero-wave span:nth-child(3)  { animation-delay: 0.2s; }
.vk-hero-wave span:nth-child(4)  { animation-delay: 0.3s; }
.vk-hero-wave span:nth-child(5)  { animation-delay: 0.4s; }
.vk-hero-wave span:nth-child(6)  { animation-delay: 0.5s; }
.vk-hero-wave span:nth-child(7)  { animation-delay: 0.6s; }
.vk-hero-wave span:nth-child(8)  { animation-delay: 0.5s; }
.vk-hero-wave span:nth-child(9)  { animation-delay: 0.4s; }
.vk-hero-wave span:nth-child(10) { animation-delay: 0.3s; }
.vk-hero-wave span:nth-child(11) { animation-delay: 0.2s; }
.vk-hero-wave span:nth-child(12) { animation-delay: 0.1s; }
.vk-hero-wave span:nth-child(13) { animation-delay: 0.2s; }
.vk-hero-wave span:nth-child(14) { animation-delay: 0.3s; }
.vk-hero-wave span:nth-child(15) { animation-delay: 0.4s; }

@keyframes vk-wave {
    0%, 100% { height: 25%; opacity: 0.6; }
    50%      { height: 100%; opacity: 1; }
}

/* Hero info: title + cta — buttons left aligned */
.vk-hero-info {
    text-align: left;
    max-width: 760px;
}

.vk-hero-title {
    font-family: var(--vk-font-display);
    font-size: 52px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--vk-text) 0%, var(--vk-grass) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--vk-text);
}

.vk-hero-subtitle {
    color: var(--vk-text-soft);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 600px;
}

.vk-hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px;
}

/* ==================== Marquee Schedule ==================== */
.vk-marquee {
    background: var(--vk-pitch);
    border-top: 1px solid var(--vk-grass);
    border-bottom: 1px solid var(--vk-grass);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}

.vk-marquee::before,
.vk-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.vk-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--vk-pitch), transparent);
}

.vk-marquee::after {
    right: 0;
    background: linear-gradient(-90deg, var(--vk-pitch), transparent);
}

.vk-marquee-track {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: vk-scroll 50s linear infinite;
    width: max-content;
}

.vk-marquee-item {
    display: inline-flex;
    align-items: center;
    color: var(--vk-text);
    font-size: 13px;
    letter-spacing: 0.06em;
}

.vk-marquee-item b {
    color: var(--vk-grass);
    margin-right: 10px;
    font-weight: 800;
}

@keyframes vk-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==================== Streams Grid ==================== */
.vk-streams {
    padding: 80px 0;
}

.vk-streams-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vk-streams-card {
    background: var(--vk-bg-card);
    border: 1px solid var(--vk-border-soft);
    border-radius: var(--vk-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.vk-streams-card:hover {
    transform: translateY(-6px);
    border-color: var(--vk-live);
    box-shadow: 0 20px 40px rgba(255, 45, 58, 0.18);
}

.vk-streams-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--vk-pitch-deep);
}

.vk-streams-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vk-streams-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vk-streams-live,
.vk-streams-soon {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.vk-streams-live {
    background: var(--vk-live);
    color: #fff;
}

.vk-streams-live-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    animation: vk-blink 1s ease-in-out infinite;
}

.vk-streams-soon {
    background: rgba(15, 23, 42, 0.85);
    color: var(--vk-led);
    border: 1px solid var(--vk-led);
}

.vk-streams-time {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 9px;
    background: rgba(8, 11, 16, 0.78);
    color: var(--vk-grass);
    font-family: var(--vk-font-mono);
    font-size: 12px;
    font-weight: 800;
    border-radius: 4px;
    border: 1px solid var(--vk-border);
}

.vk-streams-info {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vk-streams-league {
    font-size: 11px;
    color: var(--vk-grass);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.vk-streams-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--vk-text);
    margin-bottom: 4px;
    line-height: 1.35;
}

/* Button alignment differentiation per card */
.vk-streams-info .vk-btn {
    align-self: flex-start;
}
.vk-align-center .vk-streams-info .vk-btn { align-self: center; }
.vk-align-right  .vk-streams-info .vk-btn { align-self: flex-end; }
.vk-align-left   .vk-streams-info .vk-btn { align-self: flex-start; }

/* ==================== Stats Strip ==================== */
.vk-stats {
    padding: 0 0 80px;
}

.vk-stats-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 36px 50px;
    background: linear-gradient(90deg, var(--vk-pitch) 0%, var(--vk-bg-card) 100%);
    border: 1px solid var(--vk-border);
    border-radius: var(--vk-radius);
    box-shadow: var(--vk-shadow);
}

.vk-stat {
    flex: 1;
    text-align: center;
}

.vk-stat-num {
    font-family: var(--vk-font-mono);
    font-size: 38px;
    font-weight: 800;
    color: var(--vk-led);
    text-shadow: 0 0 16px var(--vk-led-soft);
    line-height: 1;
    margin-bottom: 8px;
}

.vk-stat-label {
    color: var(--vk-text-soft);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.vk-stat-sep {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--vk-grass), transparent);
    flex-shrink: 0;
}

/* ==================== Featured Articles ==================== */
.vk-featured {
    padding: 0 0 80px;
}

.vk-featured-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 28px;
}

.vk-featured-main {
    background: var(--vk-bg-card);
    border: 1px solid var(--vk-border-soft);
    border-radius: var(--vk-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.vk-featured-main:hover {
    border-color: var(--vk-grass);
    transform: translateY(-4px);
}

.vk-featured-main-image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.vk-featured-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vk-featured-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    background: var(--vk-grass);
    color: #04140b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    border-radius: 4px;
}

.vk-featured-main-body {
    padding: 26px 28px 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vk-featured-meta {
    color: var(--vk-grass);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.vk-featured-main-title {
    font-family: var(--vk-font-display);
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--vk-text);
}

.vk-featured-main-excerpt {
    color: var(--vk-text-soft);
    font-size: 14px;
    line-height: 1.7;
}

.vk-featured-readmore {
    align-self: flex-start;
    color: var(--vk-live);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    margin-top: 4px;
}

.vk-featured-side {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vk-featured-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 14px;
    padding: 12px;
    background: var(--vk-bg-card);
    border: 1px solid var(--vk-border-soft);
    border-radius: var(--vk-radius-sm);
    transition: all 0.25s ease;
    align-items: center;
}

.vk-featured-card:hover {
    border-color: var(--vk-grass);
    transform: translateX(4px);
}

.vk-featured-card-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 6px;
    background: var(--vk-pitch-deep);
}

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

.vk-featured-card-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vk-featured-card-date {
    font-size: 10px;
    color: var(--vk-grass);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
}

.vk-featured-card-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--vk-text);
}


/* ==================== Standings Table ==================== */
.vk-standings {
    padding: 0 0 80px;
}

.vk-standings-wrap {
    background: var(--vk-bg-card);
    border: 1px solid var(--vk-border);
    border-radius: var(--vk-radius);
    overflow: hidden;
    box-shadow: var(--vk-shadow);
}

.vk-standings-table {
    width: 100%;
    border-collapse: collapse;
}

.vk-standings-table thead {
    background: linear-gradient(90deg, var(--vk-grass-deep), var(--vk-grass));
}

.vk-standings-table th {
    padding: 14px 16px;
    color: #04140b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: center;
}

.vk-standings-table th.vk-st-team {
    text-align: left;
}

.vk-standings-table td {
    padding: 16px;
    text-align: center;
    color: var(--vk-text);
    font-weight: 600;
    border-top: 1px solid var(--vk-border-soft);
}

.vk-standings-table tbody tr:nth-child(even) {
    background: rgba(74, 222, 128, 0.03);
}

.vk-standings-table tbody tr:hover {
    background: rgba(74, 222, 128, 0.08);
}

.vk-st-pos {
    width: 60px;
    color: var(--vk-text-soft);
    font-family: var(--vk-font-mono);
}

.vk-st-team {
    text-align: left !important;
    font-weight: 700;
    color: var(--vk-text);
}

.vk-st-points {
    color: var(--vk-led) !important;
    font-family: var(--vk-font-mono);
    font-size: 16px;
    font-weight: 800;
}

.vk-st-leader td {
    background: rgba(255, 45, 58, 0.06);
}

.vk-st-leader .vk-st-pos {
    color: var(--vk-live);
    font-weight: 800;
}

/* ==================== Promo Banner ==================== */
.vk-promo {
    padding: 0 0 80px;
}

.vk-promo-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 36px;
    padding: 50px;
    background:
        linear-gradient(135deg, rgba(255, 45, 58, 0.12) 0%, rgba(74, 222, 128, 0.08) 100%),
        var(--vk-bg-card);
    border: 1px solid var(--vk-border);
    border-radius: var(--vk-radius-lg);
    box-shadow: var(--vk-shadow);
    align-items: center;
    overflow: hidden;
    position: relative;
}

.vk-promo-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--vk-live-soft), transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

.vk-promo-text {
    position: relative;
    z-index: 1;
}

.vk-promo-tag {
    display: inline-block;
    padding: 6px 12px;
    background: var(--vk-led);
    color: #1a1408;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    border-radius: 4px;
    margin-bottom: 16px;
}

.vk-promo-title {
    font-family: var(--vk-font-display);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--vk-text);
    margin-bottom: 14px;
}

.vk-promo-desc {
    color: var(--vk-text-soft);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 480px;
}

.vk-promo-cta {
    display: flex;
    justify-content: flex-end;
}

.vk-promo-visual {
    position: relative;
    z-index: 1;
}

.vk-promo-board {
    background: var(--vk-pitch-deep);
    border: 2px solid var(--vk-grass);
    border-radius: var(--vk-radius);
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow:
        inset 0 0 30px rgba(74, 222, 128, 0.1),
        0 12px 30px rgba(0, 0, 0, 0.4);
}

.vk-promo-board-row {
    display: grid;
    grid-template-columns: 40px 1fr 50px;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--vk-border);
}

.vk-promo-flag {
    font-size: 24px;
    line-height: 1;
}

.vk-promo-team {
    font-family: var(--vk-font-display);
    font-size: 18px;
    font-weight: 800;
    color: var(--vk-text);
    letter-spacing: 0.04em;
}

.vk-promo-num {
    font-family: var(--vk-font-mono);
    font-size: 32px;
    font-weight: 800;
    color: var(--vk-led);
    text-align: right;
    text-shadow: 0 0 12px var(--vk-led-soft);
}

.vk-promo-board-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
}

.vk-promo-min {
    font-family: var(--vk-font-mono);
    color: var(--vk-grass);
    font-size: 14px;
    font-weight: 800;
}

.vk-promo-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: var(--vk-live);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    border-radius: 4px;
}

.vk-promo-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: vk-blink 1s ease-in-out infinite;
}

/* ==================== FAQ ==================== */
.vk-faq {
    padding: 0 0 80px;
}

.vk-faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vk-faq-item {
    background: var(--vk-bg-card);
    border: 1px solid var(--vk-border-soft);
    border-radius: var(--vk-radius-sm);
    overflow: hidden;
    transition: all 0.25s ease;
}

.vk-faq-item[open] {
    border-color: var(--vk-grass);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
}

.vk-faq-q {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    color: var(--vk-text);
    list-style: none;
    transition: color 0.2s ease;
}

.vk-faq-q::-webkit-details-marker {
    display: none;
}

.vk-faq-q:hover {
    color: var(--vk-grass);
}

.vk-faq-num {
    font-family: var(--vk-font-mono);
    color: var(--vk-grass);
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
}

.vk-faq-toggle {
    margin-left: auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(74, 222, 128, 0.1);
    color: var(--vk-grass);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.vk-faq-item[open] .vk-faq-toggle {
    transform: rotate(45deg);
    background: var(--vk-live);
    color: #fff;
}

.vk-faq-a {
    padding: 0 24px 22px 60px;
    color: var(--vk-text-soft);
    font-size: 14px;
    line-height: 1.75;
}

/* ==================== Latest Articles Grid ==================== */
.vk-latest {
    padding: 0 0 100px;
}

.vk-latest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.vk-latest-card {
    background: var(--vk-bg-card);
    border: 1px solid var(--vk-border-soft);
    border-radius: var(--vk-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.vk-latest-card:hover {
    border-color: var(--vk-grass);
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(74, 222, 128, 0.12);
}

.vk-latest-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--vk-pitch-deep);
}

.vk-latest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vk-latest-card:hover .vk-latest-image img {
    transform: scale(1.05);
}

.vk-latest-body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vk-latest-date {
    color: var(--vk-grass);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.vk-latest-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--vk-text);
}

.vk-latest-excerpt {
    color: var(--vk-text-soft);
    font-size: 13px;
    line-height: 1.6;
}

/* ==================== Article List Page ==================== */
.vk-article-list {
    padding: 60px 0 90px;
}

.vk-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--vk-text-soft);
    font-size: 13px;
    margin-bottom: 30px;
}

.vk-breadcrumb a {
    color: var(--vk-grass);
    transition: color 0.2s ease;
}

.vk-breadcrumb a:hover {
    color: var(--vk-live);
}

.vk-breadcrumb-separator {
    color: var(--vk-text-mute);
}

.vk-breadcrumb-current {
    color: var(--vk-text);
    font-weight: 600;
}

.vk-article-header {
    text-align: left;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--vk-border-soft);
}

.vk-article-title-main {
    font-family: var(--vk-font-display);
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    margin: 8px 0 12px;
    color: var(--vk-text);
}

.vk-article-subtitle {
    color: var(--vk-text-soft);
    font-size: 15px;
    max-width: 720px;
}

.vk-article-container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 36px;
    align-items: flex-start;
}

.vk-article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 40px;
}

.vk-article-card {
    background: var(--vk-bg-card);
    border: 1px solid var(--vk-border-soft);
    border-radius: var(--vk-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.vk-article-card:hover {
    border-color: var(--vk-grass);
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.4);
}

.vk-article-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vk-article-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--vk-pitch-deep);
}

.vk-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vk-article-image-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 10px;
    background: var(--vk-live);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    border-radius: 4px;
}

.vk-article-content {
    padding: 18px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.vk-article-card-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--vk-text);
}

.vk-article-excerpt {
    color: var(--vk-text-soft);
    font-size: 13px;
    line-height: 1.65;
    flex: 1;
}

.vk-article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid var(--vk-border-soft);
    margin-top: 6px;
}

.vk-article-date {
    font-size: 11px;
    color: var(--vk-grass);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

.vk-article-readmore {
    font-size: 12px;
    color: var(--vk-live);
    font-weight: 700;
    letter-spacing: 0.06em;
}

/* Sidebar */
.vk-article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.vk-sidebar-widget {
    background: var(--vk-bg-card);
    border: 1px solid var(--vk-border-soft);
    border-radius: var(--vk-radius);
    padding: 22px;
}

.vk-widget-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--vk-font-display);
    font-size: 17px;
    font-weight: 800;
    color: var(--vk-text);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--vk-border);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.vk-widget-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--vk-live);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--vk-live);
    animation: vk-pulse-dot 1.4s ease-in-out infinite;
}

.vk-live-list,
.vk-popular-list,
.vk-related-list,
.vk-category-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vk-live-item {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed var(--vk-border-soft);
    font-size: 13px;
}

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

.vk-live-league {
    font-size: 10px;
    color: var(--vk-grass);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.vk-live-match {
    color: var(--vk-text);
    font-weight: 700;
}

.vk-live-time {
    font-family: var(--vk-font-mono);
    color: var(--vk-led);
    font-weight: 800;
    font-size: 12px;
}

.vk-popular-item,
.vk-related-item {
    padding: 10px 0;
    border-bottom: 1px dashed var(--vk-border-soft);
}

.vk-popular-item:last-child,
.vk-related-item:last-child {
    border-bottom: none;
}

.vk-popular-link,
.vk-related-link {
    display: block;
    color: var(--vk-text-soft);
    font-size: 13px;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.vk-popular-link:hover,
.vk-related-link:hover {
    color: var(--vk-grass);
}

.vk-category-item {
    border-bottom: 1px dashed var(--vk-border-soft);
}

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

.vk-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    color: var(--vk-text-soft);
    font-size: 13px;
    transition: color 0.2s ease;
}

.vk-category-link:hover {
    color: var(--vk-grass);
}

.vk-category-count {
    color: var(--vk-text-mute);
    font-family: var(--vk-font-mono);
    font-size: 11px;
}

/* Pagination */
.vk-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.vk-pagination a,
.vk-pagination span {
    padding: 9px 14px;
    background: var(--vk-bg-card);
    color: var(--vk-text);
    border: 1px solid var(--vk-border-soft);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.vk-pagination a:hover,
.vk-pagination .current {
    background: var(--vk-grass);
    color: #04140b;
    border-color: var(--vk-grass);
}

/* ==================== Article Detail ==================== */
.vk-article-detail {
    padding: 60px 0 90px;
}

.vk-article-detail-header {
    margin-bottom: 30px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--vk-border-soft);
}

.vk-detail-title {
    font-family: var(--vk-font-display);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--vk-text);
    margin: 10px 0 14px;
}

.vk-detail-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--vk-text-soft);
    font-size: 13px;
    margin-bottom: 22px;
}

.vk-detail-sep {
    width: 4px;
    height: 4px;
    background: var(--vk-grass);
    border-radius: 50%;
}

.vk-detail-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--vk-radius);
    background: var(--vk-pitch-deep);
}

.vk-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vk-detail-content {
    color: var(--vk-text);
    font-size: 15px;
    line-height: 1.85;
    padding-bottom: 30px;
}

.vk-detail-content p {
    margin-bottom: 16px;
}

.vk-detail-content h2,
.vk-detail-content h3 {
    font-family: var(--vk-font-display);
    color: var(--vk-text);
    margin: 30px 0 14px;
    line-height: 1.3;
}

.vk-detail-content h2 {
    font-size: 24px;
    color: var(--vk-grass);
}

.vk-detail-content h3 {
    font-size: 20px;
}

.vk-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--vk-radius-sm);
    margin: 14px 0;
}

.vk-detail-content a {
    color: var(--vk-grass);
    text-decoration: underline;
    text-decoration-color: rgba(74, 222, 128, 0.4);
    text-underline-offset: 3px;
}

.vk-detail-content blockquote {
    border-left: 3px solid var(--vk-live);
    padding: 14px 20px;
    margin: 20px 0;
    background: rgba(255, 45, 58, 0.05);
    color: var(--vk-text-soft);
    border-radius: 0 var(--vk-radius-sm) var(--vk-radius-sm) 0;
    font-style: italic;
}

.vk-article-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--vk-border-soft);
}

.vk-nav-prev,
.vk-nav-next {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 20px;
    background: var(--vk-bg-card);
    border: 1px solid var(--vk-border-soft);
    border-radius: var(--vk-radius-sm);
    transition: all 0.25s ease;
}

.vk-nav-next {
    text-align: right;
}

.vk-nav-prev:hover,
.vk-nav-next:hover {
    border-color: var(--vk-grass);
    background: rgba(74, 222, 128, 0.05);
}

.vk-nav-label {
    color: var(--vk-grass);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.vk-nav-title {
    color: var(--vk-text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

/* ==================== Footer ==================== */
.vk-footer {
    background: linear-gradient(180deg, var(--vk-bg) 0%, var(--vk-pitch-deep) 100%);
    border-top: 1px solid var(--vk-grass);
    padding: 60px 0 30px;
    margin-top: 40px;
}

.vk-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 36px;
    margin-bottom: 36px;
}

.vk-footer-title {
    font-family: var(--vk-font-display);
    font-size: 16px;
    font-weight: 800;
    color: var(--vk-grass);
    margin-bottom: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.vk-footer-text {
    color: var(--vk-text-soft);
    font-size: 13px;
    line-height: 1.75;
    margin-bottom: 14px;
}

.vk-footer-signal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid var(--vk-border);
    border-radius: 4px;
    color: var(--vk-grass);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.vk-signal-dot {
    width: 8px;
    height: 8px;
    background: var(--vk-grass);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--vk-grass);
    animation: vk-pulse-dot 1.6s ease-in-out infinite;
}

.vk-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vk-footer-links a {
    color: var(--vk-text-soft);
    font-size: 13px;
    transition: color 0.2s ease;
}

.vk-footer-links a:hover {
    color: var(--vk-grass);
}

.vk-footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--vk-border), transparent);
    margin: 30px 0 20px;
}

.vk-footer-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.vk-footer-copyright {
    color: var(--vk-text-mute);
    font-size: 12px;
}

.vk-footer-partners {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    color: var(--vk-text-mute);
    font-size: 12px;
}

.vk-footer-partners a {
    color: var(--vk-text-soft);
    transition: color 0.2s ease;
}

.vk-footer-partners a:hover {
    color: var(--vk-grass);
}

/* ==================== 404 Page ==================== */
.vk-404-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, var(--vk-pitch) 0%, var(--vk-bg) 70%);
    padding: 60px 24px;
}

.vk-404-content {
    text-align: center;
    max-width: 580px;
}

.vk-404-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--vk-live-soft);
    color: var(--vk-live);
    border: 1px solid var(--vk-live);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.vk-404-dot {
    width: 8px;
    height: 8px;
    background: var(--vk-live);
    border-radius: 50%;
    animation: vk-blink 1s ease-in-out infinite;
}

.vk-404-title {
    font-family: var(--vk-font-mono);
    font-size: 140px;
    font-weight: 800;
    color: var(--vk-led);
    line-height: 1;
    letter-spacing: 0.06em;
    text-shadow:
        0 0 20px var(--vk-led-soft),
        0 0 50px var(--vk-led-soft);
    margin-bottom: 18px;
}

.vk-404-message {
    font-family: var(--vk-font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--vk-text);
    margin-bottom: 14px;
    letter-spacing: 0.04em;
}

.vk-404-description {
    color: var(--vk-text-soft);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.vk-404-page .vk-btn {
    margin: 0 auto;
}

/* ==================== Responsive ==================== */
@media (max-width: 1024px) {
    .vk-section-title { font-size: 32px; }
    .vk-hero-title { font-size: 42px; }
    .vk-hero-team-name { font-size: 26px; }
    .vk-hero-score-num { font-size: 76px; }
    .vk-hero-board { padding: 28px 26px; gap: 18px; }
    .vk-streams-grid,
    .vk-latest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vk-featured-layout {
        grid-template-columns: 1fr;
    }
    .vk-promo-card {
        grid-template-columns: 1fr;
        padding: 36px;
    }
    .vk-stats-strip {
        flex-wrap: wrap;
        gap: 24px;
        padding: 28px 30px;
    }
    .vk-stat { flex: 1 1 40%; }
    .vk-stat-sep { display: none; }
    .vk-article-container {
        grid-template-columns: 1fr;
    }
    .vk-article-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .vk-container { padding: 0 18px; }
    .vk-nav { display: none; }
    .vk-menu-toggle { display: flex; }
    .vk-header-actions .vk-btn { padding: 9px 16px; font-size: 12px; }

    .vk-hero { padding: 50px 0 40px; }
    .vk-hero-meta { flex-direction: column; align-items: flex-start; gap: 12px; }
    .vk-hero-league { margin-left: 0; }

    .vk-hero-board {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 24px 18px;
        gap: 16px;
    }
    .vk-hero-team-home,
    .vk-hero-team-away {
        text-align: center;
    }
    .vk-hero-score {
        justify-content: center;
        gap: 14px;
    }
    .vk-hero-score-num { font-size: 60px; min-width: 60px; }
    .vk-hero-team-name { font-size: 22px; }
    .vk-hero-flag { font-size: 32px; }

    .vk-hero-title { font-size: 32px; }
    .vk-hero-subtitle { font-size: 14px; }

    .vk-section-title { font-size: 26px; }
    .vk-section-header { margin-bottom: 30px; }

    .vk-streams { padding: 50px 0; }
    .vk-streams-grid,
    .vk-latest-grid,
    .vk-article-grid {
        grid-template-columns: 1fr;
    }

    .vk-featured-card {
        grid-template-columns: 1fr;
    }
    .vk-featured-card-image {
        aspect-ratio: 16 / 9;
    }

    .vk-promo-card { padding: 26px 22px; gap: 22px; }
    .vk-promo-title { font-size: 26px; }
    .vk-promo-cta { justify-content: center; }

    .vk-standings-table th,
    .vk-standings-table td {
        padding: 10px 8px;
        font-size: 12px;
    }

    .vk-faq-q { padding: 14px 18px; font-size: 14px; }
    .vk-faq-a { padding: 0 18px 18px 50px; font-size: 13px; }

    .vk-article-title-main { font-size: 30px; }
    .vk-detail-title { font-size: 26px; }

    .vk-footer { padding: 44px 0 24px; }
    .vk-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 26px;
    }
    .vk-footer-bottom { flex-direction: column; gap: 14px; }

    .vk-article-navigation {
        grid-template-columns: 1fr;
    }

    .vk-404-title { font-size: 90px; }
    .vk-404-message { font-size: 20px; }
}

@media (max-width: 480px) {
    .vk-hero-score-num { font-size: 48px; }
    .vk-hero-title { font-size: 26px; }
    .vk-hero-cta { flex-direction: column; align-items: stretch; }
    .vk-hero-cta .vk-btn { width: 100%; }

    .vk-stats-strip { padding: 22px 18px; }
    .vk-stat-num { font-size: 28px; }
    .vk-stat { flex: 1 1 100%; }

    .vk-footer-grid {
        grid-template-columns: 1fr;
    }

    .vk-marquee-track { gap: 30px; }
    .vk-marquee-item { font-size: 12px; }

    .vk-section-title { font-size: 22px; }
    .vk-promo-title { font-size: 22px; }
    .vk-detail-title { font-size: 22px; }
    .vk-article-title-main { font-size: 24px; }

    .vk-404-title { font-size: 64px; }
}
