/* ==========================================================================
   View Pitchlive - Stadium POV Live Football
   Theme: Deep grass / pitch overhead / rounded UI
   Class prefix: pl-
   ========================================================================== */

:root {
    --pl-bg: #0a1f0e;
    --pl-bg-2: #0f2a14;
    --pl-bg-3: #143a1d;
    --pl-grass: #22c55e;
    --pl-grass-d: #16a34a;
    --pl-grass-l: #4ade80;
    --pl-yellow: #fde047;
    --pl-yellow-d: #eab308;
    --pl-white: #f0fdf4;
    --pl-text: #ecfccb;
    --pl-text-mute: #a7d4a7;
    --pl-line: rgba(34, 197, 94, 0.18);
    --pl-line-soft: rgba(34, 197, 94, 0.08);
    --pl-card: #0f2a14;
    --pl-card-up: #143a1d;
    --pl-radius: 20px;
    --pl-radius-sm: 12px;
    --pl-radius-lg: 32px;
    --pl-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    --pl-shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.3);
    --pl-sans: system-ui, -apple-system, "Segoe UI", "SF Pro Rounded", "Helvetica Neue", Arial, sans-serif;
    --pl-display: "Inter", "Poppins", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: var(--pl-sans);
    background: var(--pl-bg);
    color: var(--pl-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul, ol, li { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

.pl-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; position: relative; }
.pl-em { color: var(--pl-grass); }
.pl-em-yellow { color: var(--pl-yellow); }

.pl-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; margin-right: 8px; vertical-align: middle; }
.pl-dot-grass { background: var(--pl-grass); box-shadow: 0 0 8px rgba(34,197,94,0.6); }
.pl-dot-yellow { background: var(--pl-yellow); box-shadow: 0 0 8px rgba(253,224,71,0.6); }

/* --------------------------- Buttons --------------------------- */
.pl-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 24px; border-radius: 999px;
    font-weight: 600; font-size: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}
.pl-btn-lg { padding: 16px 32px; font-size: 15px; }
.pl-btn-xl { padding: 20px 40px; font-size: 16px; }
.pl-btn-block { display: flex; width: 100%; justify-content: center; }
.pl-btn-grass {
    background: linear-gradient(135deg, var(--pl-grass) 0%, var(--pl-grass-d) 100%);
    color: #052e0a;
    box-shadow: 0 8px 22px rgba(34,197,94,0.35), inset 0 -2px 0 rgba(0,0,0,0.15);
}
.pl-btn-grass:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(34,197,94,0.5); }
.pl-btn-ghost {
    background: rgba(34,197,94,0.08);
    color: var(--pl-grass-l);
    border: 1.5px solid var(--pl-line);
}
.pl-btn-ghost:hover { background: rgba(34,197,94,0.15); }
.pl-btn-ball {
    width: 16px; height: 16px; border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff 0%, #fff 35%, #052e0a 36%, #fff 60%);
    display: inline-block;
    border: 1px solid #052e0a;
}

/* --------------------------- Header --------------------------- */
.pl-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(10, 31, 14, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--pl-line);
}
.pl-header-grass {
    height: 4px;
    background: repeating-linear-gradient(90deg, var(--pl-grass) 0 24px, var(--pl-grass-d) 24px 48px);
}
.pl-header-row {
    display: flex; align-items: center; justify-content: space-between;
    height: 76px; gap: 24px;
}
.pl-logo-link { display: flex; align-items: center; gap: 12px; }
.pl-logo-ball {
    width: 36px; height: 36px; border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff 0%, #fff 38%, #052e0a 39%, #fff 70%);
    border: 2px solid var(--pl-grass);
    position: relative; flex-shrink: 0;
    box-shadow: 0 0 12px rgba(34,197,94,0.4);
}
.pl-logo-ball-sm { width: 28px; height: 28px; }
.pl-ball-pent {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 8px; height: 8px;
    background: #052e0a;
    border-radius: 2px;
}
.pl-ball-pent-lg { width: 18px; height: 18px; border-radius: 3px; }
.pl-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.pl-logo-name { font-size: 18px; font-weight: 800; letter-spacing: 1px; color: var(--pl-white); }
.pl-logo-tag { font-size: 11px; color: var(--pl-grass); letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; }

.pl-nav { display: flex; gap: 4px; align-items: center; }
.pl-nav-link {
    padding: 10px 18px; border-radius: 999px;
    font-size: 14px; font-weight: 500; color: var(--pl-text-mute);
    transition: all 0.2s ease;
    display: inline-flex; align-items: center; gap: 6px;
}
.pl-nav-link:hover { color: var(--pl-grass); background: rgba(34,197,94,0.08); }
.pl-nav-active { color: var(--pl-grass); background: rgba(34,197,94,0.12); }
.pl-nav-arrow { font-size: 10px; opacity: 0.7; }
.pl-nav-drop { position: relative; }
.pl-nav-panel {
    position: absolute; top: 100%; left: 0; margin-top: 8px;
    background: var(--pl-card-up); border: 1px solid var(--pl-line);
    border-radius: var(--pl-radius-sm); padding: 8px; min-width: 200px;
    display: none; flex-direction: column;
    box-shadow: var(--pl-shadow);
}
.pl-nav-drop:hover .pl-nav-panel { display: flex; }
.pl-nav-panel-link {
    padding: 8px 12px; border-radius: 8px; font-size: 13px; color: var(--pl-text);
}
.pl-nav-panel-link:hover { background: rgba(34,197,94,0.12); color: var(--pl-grass); }

.pl-burger { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 4px; border-radius: 8px; background: rgba(34,197,94,0.1); }
.pl-burger span { display: block; width: 20px; height: 2px; background: var(--pl-grass); border-radius: 2px; }

/* --------------------------- Mobile Menu --------------------------- */
.pl-mobile {
    position: fixed; top: 0; right: -100%; width: 320px; max-width: 90vw; height: 100vh;
    background: var(--pl-card-up); border-left: 1px solid var(--pl-line);
    z-index: 100; padding: 24px; overflow-y: auto;
    transition: right 0.3s ease;
}
.pl-mobile-open { right: 0; }
.pl-mobile-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--pl-line); }
.pl-mobile-title { font-size: 14px; font-weight: 700; color: var(--pl-grass); letter-spacing: 1px; text-transform: uppercase; }
.pl-mobile-close { width: 36px; height: 36px; border-radius: 50%; background: rgba(34,197,94,0.1); color: var(--pl-grass); font-weight: 700; }
.pl-mobile-nav { display: flex; flex-direction: column; gap: 4px; }
.pl-mobile-link { padding: 12px 16px; border-radius: 12px; font-size: 15px; color: var(--pl-text); transition: background 0.2s; }
.pl-mobile-link:hover { background: rgba(34,197,94,0.1); }
.pl-mobile-link-sub { padding-left: 28px; font-size: 13px; color: var(--pl-text-mute); }
.pl-mobile-divider { padding: 16px 16px 8px; font-size: 11px; color: var(--pl-grass); letter-spacing: 2px; text-transform: uppercase; }
.pl-mobile-cta { margin-top: 24px; }

/* --------------------------- Section Heads --------------------------- */
.pl-section-head { margin-bottom: 32px; }
.pl-section-head-center { text-align: center; }
.pl-section-head-center .pl-section-tag { margin-left: auto; margin-right: auto; }
.pl-section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; border-radius: 999px;
    background: rgba(34,197,94,0.12);
    font-size: 11px; font-weight: 600; color: var(--pl-grass);
    text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 12px;
}
.pl-section-tag-yellow { background: rgba(253,224,71,0.12); color: var(--pl-yellow); }
.pl-section-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.pl-section-title {
    font-size: 36px; font-weight: 800; line-height: 1.15;
    color: var(--pl-white); letter-spacing: -0.5px;
}
.pl-section-desc { color: var(--pl-text-mute); font-size: 15px; max-width: 560px; margin-top: 12px; }

/* --------------------------- Section 1: Stadium Hero --------------------------- */
.pl-stadium { position: relative; padding: 60px 0 80px; overflow: hidden; }
.pl-stadium-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 80%, rgba(34,197,94,0.18) 0%, transparent 65%), var(--pl-bg);
}
.pl-stadium-grass-stripe {
    position: absolute; left: -10%; right: -10%; height: 80px;
    background: linear-gradient(90deg, transparent 0%, rgba(34,197,94,0.18) 50%, transparent 100%);
    transform: skewY(-2deg);
}
.pl-stadium-grass-stripe { top: 30%; }
.pl-stadium-grass-stripe-2 { top: 50%; opacity: 0.6; }
.pl-stadium-grass-stripe-3 { top: 70%; opacity: 0.4; }
.pl-stadium-grass-stripe-4 { top: 90%; opacity: 0.25; }
.pl-stadium-floodlight {
    position: absolute; top: -50px; width: 240px; height: 360px;
    background: radial-gradient(ellipse at top, rgba(255,255,255,0.16) 0%, transparent 70%);
    pointer-events: none;
}
.pl-stadium-floodlight-l { left: -60px; }
.pl-stadium-floodlight-r { right: -60px; }
.pl-stadium-container { position: relative; z-index: 2; }
.pl-stadium-grid {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
.pl-stadium-live {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 8px 18px; border-radius: 999px;
    background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.3);
    margin-bottom: 24px;
}
.pl-live-dot {
    width: 8px; height: 8px; border-radius: 50%; background: #ef4444;
    animation: pl-pulse 1.4s infinite;
}
@keyframes pl-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.6); }
    50% { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
}
.pl-live-text { font-size: 12px; font-weight: 700; color: #ef4444; letter-spacing: 2px; }
.pl-live-wave { display: flex; gap: 3px; align-items: end; height: 16px; }
.pl-live-wave span {
    width: 3px; background: #ef4444; border-radius: 2px;
    animation: pl-wave 1.2s infinite ease-in-out;
}
.pl-live-wave span:nth-child(1) { height: 30%; animation-delay: 0s; }
.pl-live-wave span:nth-child(2) { height: 60%; animation-delay: 0.1s; }
.pl-live-wave span:nth-child(3) { height: 90%; animation-delay: 0.2s; }
.pl-live-wave span:nth-child(4) { height: 60%; animation-delay: 0.3s; }
.pl-live-wave span:nth-child(5) { height: 40%; animation-delay: 0.4s; }
@keyframes pl-wave { 0%, 100% { transform: scaleY(0.6); } 50% { transform: scaleY(1); } }

.pl-stadium-title {
    font-size: 56px; font-weight: 900; line-height: 1.05; color: var(--pl-white);
    letter-spacing: -1.5px; margin-bottom: 18px;
}
.pl-stadium-title-em {
    display: block; color: var(--pl-grass);
    font-size: 0.6em; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
    margin-top: 8px;
}
.pl-stadium-desc { font-size: 17px; color: var(--pl-text-mute); max-width: 520px; margin-bottom: 32px; line-height: 1.7; }
.pl-stadium-stats { display: flex; gap: 32px; margin-bottom: 36px; padding: 24px 0; border-top: 1px solid var(--pl-line); border-bottom: 1px solid var(--pl-line); }
.pl-stadium-stat { display: flex; flex-direction: column; gap: 4px; }
.pl-stadium-stat-num { font-size: 32px; font-weight: 800; color: var(--pl-grass); line-height: 1; }
.pl-stadium-stat-lbl { font-size: 11px; color: var(--pl-text-mute); letter-spacing: 1.5px; text-transform: uppercase; }
.pl-stadium-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.pl-stadium-cta-right { justify-content: flex-end; }

/* Versus card */
.pl-stadium-versus { position: relative; }
.pl-versus-card {
    background: linear-gradient(160deg, var(--pl-card-up) 0%, var(--pl-card) 100%);
    border: 1px solid var(--pl-line);
    border-radius: var(--pl-radius-lg);
    padding: 28px;
    box-shadow: var(--pl-shadow);
    position: relative;
    overflow: hidden;
}
.pl-versus-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--pl-grass), var(--pl-yellow), var(--pl-grass));
}
.pl-versus-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.pl-versus-league { font-size: 11px; font-weight: 700; color: var(--pl-grass); letter-spacing: 2px; text-transform: uppercase; }
.pl-versus-min { font-size: 13px; font-weight: 800; color: var(--pl-yellow); padding: 4px 10px; border: 1px solid rgba(253,224,71,0.3); border-radius: 999px; background: rgba(253,224,71,0.08); }
.pl-versus-body { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; }
.pl-versus-team { display: flex; align-items: center; gap: 12px; }
.pl-versus-team-away { justify-content: flex-end; }
.pl-team-badge {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, var(--pl-grass) 0%, var(--pl-grass-d) 100%);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 16px rgba(34,197,94,0.35);
    flex-shrink: 0;
}
.pl-team-badge-away { background: linear-gradient(135deg, var(--pl-yellow) 0%, var(--pl-yellow-d) 100%); box-shadow: 0 6px 16px rgba(253,224,71,0.35); }
.pl-team-letter { font-size: 22px; font-weight: 900; color: #052e0a; }
.pl-team-name { font-size: 14px; font-weight: 700; color: var(--pl-white); }
.pl-team-score { font-size: 36px; font-weight: 900; color: var(--pl-white); line-height: 1; min-width: 32px; text-align: center; }
.pl-versus-mid { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.pl-versus-vs { font-size: 11px; font-weight: 800; color: var(--pl-text-mute); letter-spacing: 2px; }
.pl-versus-bar { width: 60px; height: 4px; background: rgba(34,197,94,0.15); border-radius: 2px; overflow: hidden; }
.pl-versus-bar-fill { width: 65%; height: 100%; background: linear-gradient(90deg, var(--pl-grass), var(--pl-yellow)); }
.pl-versus-foot { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--pl-line); display: flex; flex-direction: column; gap: 10px; }
.pl-versus-event { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.pl-event-min { font-weight: 800; color: var(--pl-grass); min-width: 32px; }
.pl-event-icon { width: 16px; height: 16px; border-radius: 4px; }
.pl-event-goal { background: var(--pl-grass); border-radius: 50%; box-shadow: 0 0 8px rgba(34,197,94,0.6); }
.pl-event-card { background: var(--pl-yellow); border-radius: 2px; }
.pl-event-text { color: var(--pl-text); }

.pl-stadium-radar {
    position: absolute; bottom: -40px; right: -40px; width: 160px; height: 160px;
    pointer-events: none; opacity: 0.4;
}
.pl-radar-ring {
    position: absolute; inset: 0; border-radius: 50%;
    border: 1px solid var(--pl-grass);
    animation: pl-radar 3s infinite;
}
.pl-radar-ring-2 { animation-delay: 1.5s; }
@keyframes pl-radar {
    0% { transform: scale(0.3); opacity: 1; }
    100% { transform: scale(1); opacity: 0; }
}
.pl-radar-dot { position: absolute; top: 50%; left: 50%; width: 8px; height: 8px; margin: -4px 0 0 -4px; background: var(--pl-grass); border-radius: 50%; box-shadow: 0 0 12px var(--pl-grass); }

/* --------------------------- Section 2: Grid Matrix --------------------------- */
.pl-grid { padding: 80px 0; background: var(--pl-bg-2); }
.pl-grid-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.pl-grid-tab {
    padding: 10px 20px; border-radius: 999px;
    background: rgba(34,197,94,0.06); border: 1px solid var(--pl-line);
    color: var(--pl-text-mute); font-weight: 600; font-size: 13px;
    transition: all 0.2s;
}
.pl-grid-tab:hover { color: var(--pl-grass); border-color: var(--pl-grass); }
.pl-grid-tab-active { background: var(--pl-grass); color: #052e0a; border-color: var(--pl-grass); box-shadow: 0 6px 14px rgba(34,197,94,0.3); }

.pl-grid-status { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; padding: 12px 18px; background: rgba(34,197,94,0.05); border: 1px solid var(--pl-line-soft); border-radius: var(--pl-radius-sm); font-size: 12px; }
.pl-grid-status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pl-grass); animation: pl-pulse 1.6s infinite; }
.pl-grid-status-text { color: var(--pl-text-mute); }
.pl-grid-status-stamp { margin-left: auto; color: var(--pl-grass); font-weight: 700; font-family: ui-monospace, monospace; }

.pl-grid-matrix { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.pl-match-card {
    background: var(--pl-card);
    border: 1px solid var(--pl-line);
    border-radius: var(--pl-radius);
    padding: 22px;
    transition: transform 0.25s, border-color 0.25s;
    position: relative; overflow: hidden;
}
.pl-match-card::before {
    content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
    background: linear-gradient(180deg, var(--pl-grass) 0%, transparent 100%);
}
.pl-match-card:hover { transform: translateY(-4px); border-color: var(--pl-grass); }
.pl-match-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.pl-match-league { font-size: 11px; font-weight: 700; color: var(--pl-text-mute); letter-spacing: 1.5px; text-transform: uppercase; }
.pl-match-status { padding: 3px 10px; border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: 1px; }
.pl-match-status-ft { background: rgba(34,197,94,0.15); color: var(--pl-grass); }
.pl-match-status-live { background: rgba(239,68,68,0.15); color: #ef4444; }
.pl-match-card-body { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; margin-bottom: 18px; }
.pl-match-side { display: flex; align-items: center; gap: 10px; }
.pl-match-side-r { justify-content: flex-end; }
.pl-match-badge {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--pl-grass) 0%, var(--pl-grass-d) 100%);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pl-match-badge span { font-size: 16px; font-weight: 900; color: #052e0a; }
.pl-match-badge-alt { background: linear-gradient(135deg, var(--pl-yellow) 0%, var(--pl-yellow-d) 100%); }
.pl-match-team { font-size: 14px; font-weight: 600; color: var(--pl-white); }
.pl-match-score { display: flex; align-items: center; gap: 6px; }
.pl-match-score-num { font-size: 26px; font-weight: 900; color: var(--pl-white); }
.pl-match-score-sep { color: var(--pl-text-mute); font-weight: 600; }
.pl-match-card-foot { display: flex; justify-content: space-between; padding-top: 14px; border-top: 1px dashed var(--pl-line); font-size: 12px; color: var(--pl-text-mute); }
.pl-match-time { color: var(--pl-grass); font-weight: 600; }

/* --------------------------- Section 3: Tactic Board --------------------------- */
.pl-tactic { padding: 80px 0; }
.pl-tactic-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pl-tactic-card {
    background: var(--pl-card);
    border: 1px solid var(--pl-line);
    border-radius: var(--pl-radius);
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.25s;
}
.pl-tactic-card:hover { transform: translateY(-4px); }
.pl-tactic-icon {
    width: 56px; height: 56px; border-radius: 50%;
    margin: 0 auto 16px;
    background: rgba(34,197,94,0.12);
    position: relative;
}
.pl-tactic-icon-ball::after { content: ""; position: absolute; inset: 14px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #fff 0 35%, #052e0a 36% 50%, #fff 51% 100%); }
.pl-tactic-icon-goal { background: rgba(253,224,71,0.12); }
.pl-tactic-icon-goal::after { content: ""; position: absolute; inset: 14px; border: 2px solid var(--pl-yellow); border-radius: 4px; }
.pl-tactic-icon-card { background: rgba(253,224,71,0.12); }
.pl-tactic-icon-card::after { content: ""; position: absolute; inset: 14px 18px; background: var(--pl-yellow); border-radius: 2px; }
.pl-tactic-icon-corner::after { content: ""; position: absolute; left: 14px; bottom: 14px; width: 28px; height: 28px; border-left: 2px solid var(--pl-grass); border-bottom: 2px solid var(--pl-grass); }

.pl-tactic-num { font-size: 40px; font-weight: 900; color: var(--pl-white); line-height: 1; margin-bottom: 6px; }
.pl-tactic-lbl { font-size: 12px; color: var(--pl-text-mute); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.pl-tactic-bar { height: 5px; background: rgba(34,197,94,0.1); border-radius: 3px; overflow: hidden; }
.pl-tactic-bar-fill { height: 100%; background: linear-gradient(90deg, var(--pl-grass), var(--pl-grass-l)); border-radius: 3px; }
.pl-tactic-bar-yellow { background: linear-gradient(90deg, var(--pl-yellow-d), var(--pl-yellow)); }

/* --------------------------- Section 4: Trail Path --------------------------- */
.pl-trail { padding: 80px 0; background: var(--pl-bg-2); position: relative; }
.pl-trail-path { position: relative; min-height: 460px; }
.pl-trail-svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.5; pointer-events: none; }
.pl-trail-card {
    background: var(--pl-card);
    border: 1px solid var(--pl-line);
    border-radius: var(--pl-radius);
    overflow: hidden;
    transition: transform 0.25s, border-color 0.25s;
    position: relative;
}
.pl-trail-card:hover { transform: translateY(-6px); border-color: var(--pl-grass); }
.pl-trail-num {
    position: absolute; top: 14px; right: 14px;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--pl-grass); color: #052e0a;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 14px; z-index: 2;
}
.pl-trail-card-hero { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 32px; }
.pl-trail-img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
.pl-trail-meta { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.pl-trail-tag { display: inline-block; padding: 4px 12px; border-radius: 999px; background: rgba(253,224,71,0.12); color: var(--pl-yellow); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; align-self: flex-start; }
.pl-trail-title { font-size: 24px; font-weight: 800; color: var(--pl-white); line-height: 1.3; margin-bottom: 12px; }
.pl-trail-desc { color: var(--pl-text-mute); font-size: 14px; line-height: 1.6; }

.pl-trail-card-mini {
    display: grid; grid-template-columns: 100px 1fr;
    gap: 0; margin-bottom: 16px; max-width: 480px;
}
.pl-trail-img-mini { width: 100px; height: 100px; object-fit: cover; }
.pl-trail-meta-mini { padding: 14px 18px; }
.pl-trail-title-mini { font-size: 14px; font-weight: 700; color: var(--pl-white); line-height: 1.4; margin-bottom: 6px; }
.pl-trail-time { font-size: 11px; color: var(--pl-grass); font-weight: 600; }


/* --------------------------- Section 5: Rank --------------------------- */
.pl-rank { padding: 80px 0; }
.pl-rank-list { display: flex; flex-direction: column; gap: 12px; }
.pl-rank-row {
    display: grid; grid-template-columns: 60px 1fr auto auto; align-items: center; gap: 24px;
    background: var(--pl-card); border: 1px solid var(--pl-line);
    border-radius: var(--pl-radius); padding: 18px 22px;
    transition: transform 0.2s, border-color 0.2s;
}
.pl-rank-row:hover { transform: translateX(6px); border-color: var(--pl-grass); }
.pl-rank-row-1 { background: linear-gradient(135deg, rgba(34,197,94,0.18) 0%, var(--pl-card) 60%); border-color: rgba(34,197,94,0.35); }
.pl-rank-row-2 { background: linear-gradient(135deg, rgba(253,224,71,0.12) 0%, var(--pl-card) 60%); border-color: rgba(253,224,71,0.25); }
.pl-rank-row-3 { background: linear-gradient(135deg, rgba(34,197,94,0.08) 0%, var(--pl-card) 60%); }
.pl-rank-pos {
    font-size: 28px; font-weight: 900; color: var(--pl-text-mute);
    text-align: center; min-width: 44px;
}
.pl-rank-row-1 .pl-rank-pos { color: var(--pl-grass); }
.pl-rank-row-2 .pl-rank-pos { color: var(--pl-yellow); }
.pl-rank-team { display: flex; align-items: center; gap: 14px; }
.pl-rank-badge {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--pl-grass) 0%, var(--pl-grass-d) 100%);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(34,197,94,0.3); flex-shrink: 0;
}
.pl-rank-badge span { font-size: 16px; font-weight: 900; color: #052e0a; }
.pl-rank-name { font-size: 15px; font-weight: 700; color: var(--pl-white); }
.pl-rank-stats { display: flex; gap: 18px; }
.pl-rank-stat { display: flex; flex-direction: column; align-items: center; min-width: 36px; }
.pl-rank-stat b { font-size: 18px; font-weight: 800; color: var(--pl-white); }
.pl-rank-stat i { font-style: normal; font-size: 10px; color: var(--pl-text-mute); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; }
.pl-rank-form { display: flex; gap: 4px; }
.pl-form {
    width: 22px; height: 22px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 800;
}
.pl-form-w { background: var(--pl-grass); color: #052e0a; }
.pl-form-d { background: var(--pl-yellow); color: #422006; }
.pl-form-l { background: rgba(239,68,68,0.8); color: #fff; }

/* --------------------------- Section 6: Arena CTA --------------------------- */
.pl-arena { padding: 80px 0; position: relative; overflow: hidden; }
.pl-arena-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(34,197,94,0.2) 0%, transparent 60%), var(--pl-bg);
}
.pl-arena .pl-container { position: relative; z-index: 2; }
.pl-arena-row {
    display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
    background: linear-gradient(135deg, var(--pl-card-up) 0%, var(--pl-card) 100%);
    border: 1px solid var(--pl-line);
    border-radius: var(--pl-radius-lg);
    padding: 56px;
    box-shadow: var(--pl-shadow);
}
.pl-arena-kicker { display: inline-block; padding: 6px 14px; border-radius: 999px; background: rgba(253,224,71,0.12); color: var(--pl-yellow); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.pl-arena-title { font-size: 40px; font-weight: 800; color: var(--pl-white); line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 18px; }
.pl-arena-desc { font-size: 16px; color: var(--pl-text-mute); margin-bottom: 24px; line-height: 1.7; }
.pl-arena-list { display: flex; flex-direction: column; gap: 12px; }
.pl-arena-list li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--pl-text); }
.pl-tick {
    width: 22px; height: 22px; border-radius: 50%; background: var(--pl-grass);
    display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
    position: relative;
}
.pl-tick::after {
    content: ""; width: 6px; height: 11px;
    border-right: 2px solid #052e0a; border-bottom: 2px solid #052e0a;
    transform: rotate(45deg) translate(-1px, -2px);
}
.pl-arena-cta { display: flex; justify-content: flex-end; }
.pl-arena-cta-card {
    background: var(--pl-bg);
    border: 1px solid var(--pl-line);
    border-radius: var(--pl-radius);
    padding: 32px;
    width: 100%; max-width: 360px;
    text-align: center;
}
.pl-arena-price { display: flex; flex-direction: column; align-items: center; gap: 4px; margin-bottom: 24px; }
.pl-arena-price-old { font-size: 14px; color: var(--pl-text-mute); text-decoration: line-through; }
.pl-arena-price-new { font-size: 48px; font-weight: 900; color: var(--pl-grass); line-height: 1; }
.pl-arena-price-tag { font-size: 11px; color: var(--pl-yellow); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; padding: 4px 12px; background: rgba(253,224,71,0.12); border-radius: 999px; margin-top: 6px; }
.pl-arena-btn { width: 100%; justify-content: center; }
.pl-arena-note { display: block; margin-top: 14px; font-size: 12px; color: var(--pl-text-mute); }

/* --------------------------- Section 7: FAQ --------------------------- */
.pl-faq { padding: 80px 0; background: var(--pl-bg-2); }
.pl-faq-grid { display: flex; flex-direction: column; gap: 12px; max-width: 880px; margin: 0 auto; }
.pl-faq-item {
    background: var(--pl-card);
    border: 1px solid var(--pl-line);
    border-radius: var(--pl-radius);
    overflow: hidden;
    transition: border-color 0.2s;
}
.pl-faq-item[open] { border-color: var(--pl-grass); }
.pl-faq-q {
    display: flex; align-items: center; gap: 16px;
    padding: 22px 24px; cursor: pointer; list-style: none;
}
.pl-faq-q::-webkit-details-marker { display: none; }
.pl-faq-num {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(34,197,94,0.12); color: var(--pl-grass);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 13px; flex-shrink: 0;
}
.pl-faq-item[open] .pl-faq-num { background: var(--pl-grass); color: #052e0a; }
.pl-faq-q-text { flex: 1; font-size: 16px; font-weight: 600; color: var(--pl-white); }
.pl-faq-toggle {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(34,197,94,0.1); position: relative;
    transition: transform 0.3s, background 0.3s;
}
.pl-faq-toggle::before, .pl-faq-toggle::after {
    content: ""; position: absolute; top: 50%; left: 50%; background: var(--pl-grass);
}
.pl-faq-toggle::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.pl-faq-toggle::after { width: 2px; height: 12px; transform: translate(-50%, -50%); transition: transform 0.3s; }
.pl-faq-item[open] .pl-faq-toggle { background: var(--pl-grass); }
.pl-faq-item[open] .pl-faq-toggle::before { background: #052e0a; }
.pl-faq-item[open] .pl-faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); background: #052e0a; }
.pl-faq-a { padding: 0 24px 22px 76px; color: var(--pl-text-mute); font-size: 14px; line-height: 1.7; }

/* --------------------------- Section 8: News --------------------------- */
.pl-news { padding: 80px 0; }
.pl-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pl-news-card {
    background: var(--pl-card);
    border: 1px solid var(--pl-line);
    border-radius: var(--pl-radius);
    overflow: hidden;
    transition: transform 0.25s, border-color 0.25s;
}
.pl-news-card:hover { transform: translateY(-6px); border-color: var(--pl-grass); }
.pl-news-cover { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; }
.pl-news-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.pl-news-card:hover .pl-news-img { transform: scale(1.06); }
.pl-news-cat {
    position: absolute; top: 14px; left: 14px;
    padding: 5px 12px; border-radius: 999px;
    background: rgba(10,31,14,0.85); backdrop-filter: blur(8px);
    color: var(--pl-grass); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
}
.pl-news-meta { padding: 22px; }
.pl-news-time { font-size: 12px; color: var(--pl-grass); font-weight: 600; margin-bottom: 10px; display: block; }
.pl-news-title { font-size: 17px; font-weight: 700; line-height: 1.4; margin-bottom: 10px; }
.pl-news-title a { color: var(--pl-white); transition: color 0.2s; }
.pl-news-card:hover .pl-news-title a { color: var(--pl-grass); }
.pl-news-desc { font-size: 13px; color: var(--pl-text-mute); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* --------------------------- Section 9: Ticker --------------------------- */
.pl-ticker {
    background: linear-gradient(90deg, var(--pl-grass) 0%, var(--pl-grass-d) 100%);
    color: #052e0a;
    display: flex; align-items: center;
    overflow: hidden;
    border-top: 4px solid var(--pl-yellow);
}
.pl-ticker-label {
    flex-shrink: 0; padding: 16px 24px;
    background: #052e0a; color: var(--pl-yellow);
    display: flex; align-items: center; gap: 10px;
    font-weight: 800; font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
    position: relative;
}
.pl-ticker-label::after {
    content: ""; position: absolute; right: -16px; top: 0; bottom: 0;
    width: 0; height: 0; border-left: 16px solid #052e0a; border-top: 28px solid transparent; border-bottom: 28px solid transparent;
}
.pl-ticker-label-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pl-yellow); animation: pl-pulse 1.4s infinite; }
.pl-ticker-track { flex: 1; overflow: hidden; padding: 16px 0; padding-left: 24px; }
.pl-ticker-row { display: inline-flex; gap: 0; align-items: center; white-space: nowrap; animation: pl-tick 30s linear infinite; }
@keyframes pl-tick { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.pl-ticker-item { font-weight: 700; font-size: 14px; padding: 0 24px; }
.pl-ticker-sep { width: 6px; height: 6px; border-radius: 50%; background: rgba(5,46,10,0.5); }

/* --------------------------- 404 --------------------------- */
.pl-404 { padding: 80px 0; min-height: 70vh; display: flex; align-items: center; }
.pl-404-stadium {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    background: var(--pl-card-up); border: 1px solid var(--pl-line);
    border-radius: var(--pl-radius-lg); padding: 60px;
}
.pl-404-pitch {
    position: relative; aspect-ratio: 4/3;
    background: repeating-linear-gradient(0deg, var(--pl-grass-d) 0 24px, var(--pl-grass) 24px 48px);
    border-radius: var(--pl-radius);
    border: 4px solid var(--pl-white);
    overflow: hidden;
}
.pl-404-line-mid { position: absolute; left: 50%; top: 0; bottom: 0; width: 4px; background: var(--pl-white); transform: translateX(-50%); }
.pl-404-circle {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: 90px; height: 90px; border-radius: 50%;
    border: 4px solid var(--pl-white);
}
.pl-404-goal { position: absolute; top: 35%; bottom: 35%; width: 30px; border: 4px solid var(--pl-white); }
.pl-404-goal-l { left: 0; border-right: 0; }
.pl-404-goal-r { right: 0; border-left: 0; }
.pl-404-ball-wrap { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); animation: pl-bounce 2s infinite; }
@keyframes pl-bounce { 0%, 100% { transform: translate(-50%, -50%); } 50% { transform: translate(-50%, -65%); } }
.pl-404-ball {
    width: 60px; height: 60px; border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff 0 38%, #052e0a 39% 60%, #fff 61% 100%);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5); position: relative;
}
.pl-404-meta { text-align: center; }
.pl-404-tag { display: inline-block; padding: 6px 14px; border-radius: 999px; background: rgba(239,68,68,0.15); color: #ef4444; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.pl-404-code { font-size: 120px; font-weight: 900; color: var(--pl-grass); line-height: 1; margin-bottom: 14px; letter-spacing: -4px; text-shadow: 0 8px 30px rgba(34,197,94,0.4); }
.pl-404-msg { color: var(--pl-text-mute); font-size: 16px; margin-bottom: 28px; max-width: 360px; margin-left: auto; margin-right: auto; }
.pl-404-cta { display: flex; justify-content: center; }

/* --------------------------- Article List Page --------------------------- */
.pl-page { padding: 60px 0; }
.pl-crumbs { display: flex; align-items: center; gap: 10px; margin-bottom: 32px; font-size: 13px; color: var(--pl-text-mute); flex-wrap: wrap; }
.pl-crumbs-link { transition: color 0.2s; }
.pl-crumbs-link:hover { color: var(--pl-grass); }
.pl-crumbs-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--pl-grass); }
.pl-crumbs-cur { color: var(--pl-grass); font-weight: 600; }
.pl-page-grid { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: flex-start; }
.pl-page-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.pl-page-card {
    background: var(--pl-card); border: 1px solid var(--pl-line);
    border-radius: var(--pl-radius); overflow: hidden;
    display: grid; grid-template-columns: 240px 1fr;
    transition: transform 0.25s, border-color 0.25s;
}
.pl-page-card:hover { transform: translateY(-4px); border-color: var(--pl-grass); }
.pl-page-cover { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; }
.pl-page-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.pl-page-card:hover .pl-page-img { transform: scale(1.06); }
.pl-page-cat { position: absolute; top: 12px; left: 12px; padding: 4px 10px; background: rgba(10,31,14,0.85); color: var(--pl-grass); font-size: 11px; border-radius: 999px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.pl-page-body { padding: 22px 24px; display: flex; flex-direction: column; justify-content: center; }
.pl-page-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 12px; color: var(--pl-text-mute); }
.pl-page-stamp { color: var(--pl-grass); font-weight: 600; }
.pl-page-dot { width: 4px; height: 4px; border-radius: 50%; }
.pl-page-title { font-size: 18px; font-weight: 700; line-height: 1.4; margin-bottom: 10px; }
.pl-page-title a { color: var(--pl-white); transition: color 0.2s; }
.pl-page-card:hover .pl-page-title a { color: var(--pl-grass); }
.pl-page-excerpt { font-size: 13px; color: var(--pl-text-mute); line-height: 1.6; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pl-page-readmore { font-size: 13px; color: var(--pl-grass); font-weight: 700; align-self: flex-start; padding: 6px 14px; border: 1px solid var(--pl-line); border-radius: 999px; transition: all 0.2s; }
.pl-page-readmore:hover { background: var(--pl-grass); color: #052e0a; border-color: var(--pl-grass); }

.pl-pagination { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.pl-pagination a, .pl-pagination span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 14px; border-radius: 999px;
    background: var(--pl-card); border: 1px solid var(--pl-line);
    color: var(--pl-text); font-weight: 600; font-size: 14px;
    transition: all 0.2s;
}
.pl-pagination a:hover { border-color: var(--pl-grass); color: var(--pl-grass); }
.pl-pagination .current, .pl-pagination .active { background: var(--pl-grass); color: #052e0a; border-color: var(--pl-grass); }

/* Sidebar */
.pl-page-side { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 100px; }
.pl-side-card { background: var(--pl-card); border: 1px solid var(--pl-line); border-radius: var(--pl-radius); padding: 22px; }
.pl-side-head { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 800; color: var(--pl-white); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--pl-line); }
.pl-side-live-list { display: flex; flex-direction: column; gap: 10px; }
.pl-side-live-list li { display: grid; grid-template-columns: 60px 1fr auto; gap: 10px; align-items: center; padding: 10px; background: rgba(34,197,94,0.06); border-radius: 12px; font-size: 13px; }
.pl-side-time { font-weight: 800; color: var(--pl-grass); font-family: ui-monospace, monospace; font-size: 12px; }
.pl-side-team { color: var(--pl-white); font-weight: 600; }
.pl-side-tag { padding: 2px 8px; background: rgba(253,224,71,0.12); color: var(--pl-yellow); border-radius: 999px; font-size: 10px; font-weight: 700; letter-spacing: 1px; }
.pl-side-rank { display: flex; flex-direction: column; gap: 8px; counter-reset: pl-rank-counter; }
.pl-side-rank-row { display: flex; gap: 12px; align-items: flex-start; counter-increment: pl-rank-counter; }
.pl-side-rank-num { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: rgba(34,197,94,0.12); color: var(--pl-grass); font-size: 11px; font-weight: 800; flex-shrink: 0; }
.pl-side-rank-num::before { content: counter(pl-rank-counter); }
.pl-side-rank-link { font-size: 13px; color: var(--pl-text); line-height: 1.5; transition: color 0.2s; }
.pl-side-rank-link:hover { color: var(--pl-grass); }
.pl-side-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.pl-side-tag-pill { padding: 6px 14px; background: rgba(34,197,94,0.08); border: 1px solid var(--pl-line); border-radius: 999px; font-size: 12px; color: var(--pl-text-mute); transition: all 0.2s; }
.pl-side-tag-pill:hover { background: var(--pl-grass); color: #052e0a; border-color: var(--pl-grass); }
.pl-side-cta { background: linear-gradient(135deg, rgba(34,197,94,0.15) 0%, var(--pl-card) 100%); text-align: center; }
.pl-side-cta-ball { width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 14px; background: radial-gradient(circle at 30% 30%, #fff 0 38%, #052e0a 39% 60%, #fff 61% 100%); border: 2px solid var(--pl-grass); position: relative; box-shadow: 0 6px 16px rgba(34,197,94,0.4); }
.pl-side-cta-ball .pl-ball-pent { width: 14px; height: 14px; }
.pl-side-cta-title { font-size: 18px; font-weight: 800; color: var(--pl-white); margin-bottom: 8px; }
.pl-side-cta-desc { font-size: 13px; color: var(--pl-text-mute); margin-bottom: 16px; line-height: 1.6; }

/* --------------------------- Article Detail --------------------------- */
.pl-detail { background: var(--pl-card); border: 1px solid var(--pl-line); border-radius: var(--pl-radius); padding: 40px; }
.pl-detail-head { margin-bottom: 32px; }
.pl-detail-tag { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; background: rgba(34,197,94,0.12); font-size: 11px; font-weight: 600; color: var(--pl-grass); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.pl-detail-title { font-size: 36px; font-weight: 800; line-height: 1.2; color: var(--pl-white); letter-spacing: -0.5px; margin-bottom: 16px; }
.pl-detail-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: 13px; color: var(--pl-text-mute); margin-bottom: 24px; }
.pl-detail-stamp { color: var(--pl-grass); font-weight: 600; }
.pl-detail-cover { border-radius: var(--pl-radius-sm); overflow: hidden; margin-bottom: 12px; }
.pl-detail-img { width: 100%; height: auto; display: block; }
.pl-detail-body { color: var(--pl-text); font-size: 16px; line-height: 1.85; }
.pl-detail-body p { margin-bottom: 18px; }
.pl-detail-body h2, .pl-detail-body h3 { color: var(--pl-white); margin: 32px 0 16px; font-weight: 800; }
.pl-detail-body h2 { font-size: 24px; }
.pl-detail-body h3 { font-size: 19px; }
.pl-detail-body img { border-radius: var(--pl-radius-sm); margin: 16px 0; }
.pl-detail-body a { color: var(--pl-grass); border-bottom: 1px dashed var(--pl-grass); }
.pl-detail-body ul, .pl-detail-body ol { margin: 16px 0 16px 24px; }
.pl-detail-body li { margin-bottom: 8px; list-style: disc; }
.pl-detail-share { display: flex; gap: 12px; margin: 32px 0; padding-top: 24px; border-top: 1px solid var(--pl-line); flex-wrap: wrap; }

.pl-detail-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--pl-line); }
.pl-detail-nav-link { display: flex; flex-direction: column; gap: 6px; padding: 16px 20px; border-radius: var(--pl-radius-sm); background: rgba(34,197,94,0.06); border: 1px solid var(--pl-line); transition: all 0.2s; }
.pl-detail-nav-link:hover { border-color: var(--pl-grass); transform: translateY(-2px); }
.pl-detail-nav-disabled { opacity: 0.5; cursor: not-allowed; }
.pl-detail-nav-next { text-align: right; }
.pl-detail-nav-tag { font-size: 11px; color: var(--pl-grass); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.pl-detail-nav-title { font-size: 14px; font-weight: 600; color: var(--pl-white); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* --------------------------- Footer --------------------------- */
.pl-footer { background: #061509; border-top: 1px solid var(--pl-line); padding-top: 60px; position: relative; }
.pl-footer-pitch { height: 3px; background: repeating-linear-gradient(90deg, var(--pl-grass) 0 24px, var(--pl-grass-d) 24px 48px); position: absolute; top: 0; left: 0; right: 0; }
.pl-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.pl-footer-col-brand { padding-right: 20px; }
.pl-footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.pl-footer-brand { font-size: 18px; font-weight: 800; color: var(--pl-white); letter-spacing: 1.5px; }
.pl-footer-text { color: var(--pl-text-mute); font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.pl-footer-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.pl-footer-tag { padding: 4px 12px; background: rgba(34,197,94,0.1); border: 1px solid var(--pl-line); border-radius: 999px; font-size: 11px; color: var(--pl-grass); font-weight: 600; letter-spacing: 1px; }
.pl-footer-head { font-size: 13px; font-weight: 800; color: var(--pl-white); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--pl-line); }
.pl-footer-head-center { text-align: center; }
.pl-footer-list { display: flex; flex-direction: column; gap: 10px; }
.pl-footer-link { display: flex; align-items: center; font-size: 13px; color: var(--pl-text-mute); transition: color 0.2s; }
.pl-footer-link:hover { color: var(--pl-grass); }

.pl-footer-friendlink { padding: 32px 0; border-top: 1px solid var(--pl-line); border-bottom: 1px solid var(--pl-line); margin-bottom: 24px; }
.pl-friendlink-list { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 14px; }
.pl-friendlink-list-zq { margin-top: 12px; }
.pl-friendlink-item { padding: 6px 14px; background: rgba(34,197,94,0.08); border: 1px solid var(--pl-line); border-radius: 999px; font-size: 12px; color: var(--pl-text-mute); transition: all 0.2s; }
.pl-friendlink-item:hover { background: rgba(34,197,94,0.18); color: var(--pl-grass); }
.pl-friendlink-item-zq { background: rgba(253,224,71,0.06); }
.pl-friendlink-item-zq:hover { background: rgba(253,224,71,0.15); color: var(--pl-yellow); }

.pl-footer-bottom { padding: 24px 0; }
.pl-footer-bottom-line { display: none; }
.pl-footer-bottom-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--pl-text-mute); }
.pl-copy { letter-spacing: 0.5px; }
.pl-footer-end { padding: 4px 12px; background: var(--pl-grass); color: #052e0a; border-radius: 999px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; }

/* --------------------------- Responsive --------------------------- */
@media (max-width: 1024px) {
    .pl-stadium-grid { grid-template-columns: 1fr; gap: 40px; }
    .pl-stadium-title { font-size: 44px; }
    .pl-tactic-grid { grid-template-columns: repeat(2, 1fr); }
    .pl-news-grid { grid-template-columns: repeat(2, 1fr); }
    .pl-arena-row { grid-template-columns: 1fr; padding: 40px; }
    .pl-arena-cta { justify-content: center; }
    .pl-trail-card-hero { grid-template-columns: 1fr; }
    .pl-trail-img { min-height: 220px; }
    .pl-page-grid { grid-template-columns: 1fr; }
    .pl-page-side { position: static; }
    .pl-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .pl-404-stadium { grid-template-columns: 1fr; padding: 40px; }
}

@media (max-width: 768px) {
    .pl-nav, .pl-header-cta { display: none; }
    .pl-burger { display: flex; }
    .pl-stadium-title { font-size: 36px; }
    .pl-section-title { font-size: 28px; }
    .pl-stadium-stats { gap: 18px; }
    .pl-stadium-stat-num { font-size: 24px; }
    .pl-stadium-cta-right { justify-content: flex-start; }
    .pl-grid-matrix { grid-template-columns: 1fr; }
    .pl-tactic-grid { grid-template-columns: 1fr; }
    .pl-news-grid { grid-template-columns: 1fr; }
    .pl-rank-row { grid-template-columns: 40px 1fr; gap: 12px; padding: 14px; }
    .pl-rank-stats, .pl-rank-form { display: none; }
    .pl-arena-title { font-size: 28px; }
    .pl-arena-row { padding: 28px; }
    .pl-page-card { grid-template-columns: 1fr; }
    .pl-detail { padding: 24px; }
    .pl-detail-title { font-size: 26px; }
    .pl-detail-nav { grid-template-columns: 1fr; }
    .pl-footer-grid { grid-template-columns: 1fr; }
    .pl-404-code { font-size: 80px; }
}

@media (max-width: 480px) {
    .pl-container { padding: 0 16px; }
    .pl-stadium-title { font-size: 30px; }
    .pl-versus-card { padding: 20px; }
    .pl-team-badge { width: 44px; height: 44px; }
    .pl-team-letter { font-size: 18px; }
    .pl-team-score { font-size: 28px; }
    .pl-faq-q { padding: 16px 18px; gap: 12px; }
    .pl-faq-q-text { font-size: 14px; }
    .pl-faq-a { padding: 0 18px 18px 60px; font-size: 13px; }
    .pl-ticker-label { padding: 12px 16px; font-size: 11px; }
    .pl-ticker-item { font-size: 12px; padding: 0 16px; }
}
