.first-screen {
  background: linear-gradient(0deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.5) 100%), url("https://arsenal-match.uk/assets/img/2c9a86ec89c2d761acc7ebaec0761c4e.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Roboto:wght@400;700&display=swap');

/* ========================================
   BASE STYLES
   ======================================== */
body {
  font-family: 'Roboto', sans-serif;
  background: var(--darker); 
  color: #fff;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
}

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  --red: #DB0007;
  --gold: #C5A572;
  --dark: #0A0A0A;
  --darker: #050505;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */
* { scroll-behavior: smooth; }

::selection { background: var(--red); color: #fff; }

::-webkit-scrollbar { width: 6px; height: 3px; }
::-webkit-scrollbar-track { background: var(--darker); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ========================================
   SPLIDE SLIDER
   ======================================== */
.splide__pagination {
  position: relative !important;
  margin-top: 16px !important;
}

.splide__pagination__page {
  background: rgba(255,255,255,0.2) !important;
  width: 40px !important;
  height: 4px !important;
  border-radius: 2px !important;
}

.splide__pagination__page.is-active {
  background: var(--red) !important;
  transform: scale(1) !important;
}

/* ========================================
   VIDEO PLAYER
   ======================================== */
.video-player-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
}

.video-player-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Sidebar Video Item */
.sidebar-video {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 12px;
  transition: all 0.3s;
  cursor: pointer;
}

.sidebar-video:hover {
  background: rgba(255,255,255,0.05);
}

.sidebar-video.active {
  background: rgba(219, 0, 7, 0.1);
  border-left: 3px solid var(--red);
}

.sidebar-video img {
  width: 160px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.sidebar-video .duration {
  position: absolute;
  bottom: 4px;
  right: 4px;
  padding: 2px 6px;
  background: rgba(0,0,0,0.85);
  border-radius: 4px;
  font-size: 0.6875rem;
  font-weight: 600;
}

/* Scrollbar for sidebar */
.sidebar-scroll::-webkit-scrollbar { width: 4px; }
.sidebar-scroll::-webkit-scrollbar-track { background: transparent; }
.sidebar-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 2px; }

/* ========================================
   ACTION BUTTONS
   ======================================== */
.action-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s;
}

.action-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.action-btn.liked {
  background: rgba(219, 0, 7, 0.2);
  border-color: var(--red);
  color: var(--red);
}

/* ========================================
   BADGES
   ======================================== */
.category-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--red);
}

.category-badge.club { background: var(--red); }
.category-badge.match { background: #22c55e; }
.category-badge.transfer { background: #3b82f6; }
.category-badge.interview { background: #a855f7; }
.category-badge.training { background: var(--gold); color: #000; }
.category-badge.ucl { background: #1e40af; }
.category-badge.women { background: #ec4899; }
.category-badge.academy { background: #f97316; }

/* Position Badge */
.position-badge {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8125rem;
}

.position-badge.top-4 { background: #22c55e; }
.position-badge.top-6 { background: #3b82f6; }
.position-badge.mid { background: rgba(255,255,255,0.1); }
.position-badge.relegation { background: #ef4444; }

/* Form Badge */
.form-badge {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.6875rem;
}

.form-badge.win { background: #22c55e; }
.form-badge.draw { background: #6b7280; }
.form-badge.loss { background: #ef4444; }

/* ========================================
   CHAPTER MARKERS
   ======================================== */
.chapter-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.chapter-item:hover {
  background: rgba(255,255,255,0.05);
}

.chapter-item.active {
  background: rgba(219, 0, 7, 0.1);
}

.chapter-time {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--red);
  min-width: 50px;
}

/* ========================================
   COMMENTS
   ======================================== */
.comment {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.comment:last-child {
  border-bottom: none;
}

.comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

/* ========================================
   NOISE OVERLAY
   ======================================== */
.noise::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1000;
}

/* ========================================
   TEXT STYLES
   ======================================== */
.text-gradient {
  background: linear-gradient(135deg, #fff 0%, var(--gold) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradient-shift 5s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.text-stroke {
  -webkit-text-stroke: 3px var(--gold);
  color: transparent;
}

/* ========================================
   BUTTONS (UNIFIED)
   ======================================== */
.magnetic-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: var(--red);
  border-radius: 100px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.magnetic-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.magnetic-btn:hover::before { transform: translateY(0); }
.magnetic-btn:hover { color: var(--red); }
.magnetic-btn span { position: relative; z-index: 1; }

.outline-btn {
  position: relative;
  padding: 1.25rem 2.5rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  overflow: hidden;
  transition: all 0.4s;
}

.outline-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ========================================
   CARDS (UNIFIED)
   ======================================== */
.card-modern {
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-modern:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(219, 0, 7, 0.2);
}

.overflow-hiddenn {
  overflow: hidden !important;
}

/* Match Card */
.match-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s;
}

.match-card:hover {
  border-color: var(--red);
  background: rgba(219, 0, 7, 0.1);
}

.match-card.home { border-left: 4px solid var(--red); }
.match-card.away { border-left: 4px solid var(--gold); }
.match-card.win { border-left: 4px solid #22c55e; }
.match-card.draw { border-left: 4px solid #eab308; }
.match-card.loss { border-left: 4px solid #ef4444; }

@media (max-width: 640px) {
  .match-card {
    padding: 1rem;
    border-radius: 12px;
  }
  
  .match-card .team-logo {
    width: 36px;
    height: 36px;
  }
}

/* Result Card */
.result-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(219, 0, 7, 0.25);
}

.result-card.win { border-left: 4px solid #22c55e; }
.result-card.draw { border-left: 4px solid #eab308; }
.result-card.loss { border-left: 4px solid #ef4444; }

/* News Card */
.news-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s;
}

.news-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

/* Stat Card */
.stat-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s;
}

.stat-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

/* Featured Card */
.featured-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 500px;
}

.featured-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.5) 50%, transparent 100%);
  z-index: 1;
}

.featured-card img {
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card:hover img {
  transform: scale(1.05);
}

/* ========================================
   LINE ANIMATION (UNIFIED)
   ======================================== */
.line-anim {
  position: relative;
}

.line-anim::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.line-anim:hover::after { width: 100%; }

/* ========================================
   STATS CIRCLE / RING (UNIFIED)
   ======================================== */
.stat-circle {
  position: relative;
  width: 120px;
  height: 120px;
}

.stat-circle svg {
  transform: rotate(-90deg);
}

.stat-circle .bg {
  stroke: rgba(255,255,255,0.1);
}

.stat-circle .progress {
  stroke: var(--red);
  stroke-dasharray: 339.292;
  stroke-dashoffset: 339.292;
  transition: stroke-dashoffset 1.5s ease-out;
}

.stat-circle.animated .progress {
  stroke-dashoffset: var(--offset);
}

.stats-ring {
  position: relative;
  width: 120px;
  height: 120px;
}

.stats-ring svg {
  transform: rotate(-90deg);
}

.stats-ring .ring-bg {
  stroke: rgba(255,255,255,0.1);
}

.stats-ring .ring-progress {
  stroke-dasharray: 339.292;
  stroke-dashoffset: 339.292;
  transition: stroke-dashoffset 1.5s ease-out;
}

/* ========================================
   TABS (UNIFIED)
   ======================================== */
.tab-btn {
  padding: 1rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
  white-space: nowrap;
  color: rgba(255,255,255,0.5);
}

.tab-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.tab-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .tab-btn {
    padding: 0.75rem 1rem;
    font-size: 0.65rem;
  }
}

/* ========================================
   FILTER BUTTONS (UNIFIED)
   ======================================== */
.filter-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
  white-space: nowrap;
}

.filter-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
}

@media (max-width: 768px) {
  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .filter-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.6rem;
    letter-spacing: 0.02em;
  }
  
  .filter-btn .inline-block {
    display: none;
  }
}

/* Filter Tabs */
.filter-tab {
  padding: 0.625rem 1.25rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
  white-space: nowrap;
}

.filter-tab:hover {
  background: rgba(255,255,255,0.1);
}

.filter-tab.active {
  background: var(--red);
  border-color: var(--red);
}

/* ========================================
   COMPETITION COLORS (UNIFIED)
   ======================================== */
.comp-pl { background: linear-gradient(135deg, #3d195b 0%, #7c2d8c 100%); }
.comp-ucl { background: linear-gradient(135deg, #0055a4 0%, #0077cc 100%); }
.comp-fa { background: linear-gradient(135deg, #e11b22 0%, #ff4444 100%); }
.comp-lc { background: linear-gradient(135deg, #00a650 0%, #00cc66 100%); }
.comp-cs { background: linear-gradient(135deg, #C5A572 0%, #E8D5B0 100%); }

/* ========================================
   FORM INDICATOR (UNIFIED)
   ======================================== */
.form-indicator {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
}

.form-indicator.W { background: #22c55e; color: white; }
.form-indicator.D { background: #eab308; color: black; }
.form-indicator.L { background: #ef4444; color: white; }

/* ========================================
   SEASON SELECTOR (UNIFIED)
   ======================================== */
.season-select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  color: white;
  font-weight: 600;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}

.season-select:focus {
  outline: none;
  border-color: var(--red);
}

/* ========================================
   TIMELINE (UNIFIED)
   ======================================== */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--red), var(--gold));
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: -6px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--red);
}

.timeline-item:last-child::before {
  bottom: auto;
  height: 20px;
}

/* Match Timeline */
.match-timeline {
  position: relative;
}

.match-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--red), var(--gold), var(--red));
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .match-timeline::before {
    left: 20px;
  }
}

.timeline-event {
  position: relative;
  padding: 1rem 0;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: var(--darker);
  border: 3px solid var(--red);
  border-radius: 50%;
  z-index: 10;
}

.timeline-dot.goal {
  background: var(--red);
  box-shadow: 0 0 20px var(--red);
}

.timeline-dot.card-yellow {
  background: #EAB308;
  border-color: #EAB308;
}

.timeline-dot.card-red {
  background: #EF4444;
  border-color: #EF4444;
}

.timeline-dot.sub {
  background: #22C55E;
  border-color: #22C55E;
}

@media (max-width: 768px) {
  .timeline-dot {
    left: 20px;
  }
}

/* ========================================
   IMAGE MASK & ZOOM (UNIFIED)
   ======================================== */
.image-mask {
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.img-zoom {
  overflow: hidden;
}

.img-zoom img {
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-zoom:hover img {
  transform: scale(1.1);
}

/* ========================================
   FLOATING ANIMATION (UNIFIED)
   ======================================== */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

.float { animation: float 6s ease-in-out infinite; }
.float-delay { animation: float 8s ease-in-out infinite; animation-delay: -4s; }

/* ========================================
   NUMBER BACKGROUND
   ======================================== */
.number-bg {
  position: absolute;
  font-size: clamp(300px, 50vw, 600px);
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.03);
  pointer-events: none;
  user-select: none;
}

/* ========================================
   VIDEO CARD (UNIFIED)
   ======================================== */
.video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.video-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  z-index: 1;
}

.video-card:hover {
  border-color: var(--red);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(219, 0, 7, 0.2);
}

.video-card img {
  transition: transform 0.5s ease;
}

.video-card:hover img {
  transform: scale(1.08);
}

.video-card .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s;
}

.video-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 30px rgba(219, 0, 7, 0.5);
}

/* Video Stats */
.video-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.8125rem;
}

.video-stats span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* Featured Video */
.featured-video {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 500px;
}

.featured-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.3) 50%, transparent 100%);
  z-index: 1;
}

.featured-video .play-btn {
  width: 70px;
  height: 70px;
}

.featured-video .play-btn svg {
  width: 36px;
  height: 36px;
}

/* Playlist Card */
.playlist-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  transition: all 0.3s;
}

.playlist-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--red);
}

/* ========================================
   PLAY BUTTON (UNIFIED)
   ======================================== */
.play-btn {
  position: relative;
  width: 70px;
  height: 70px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  z-index: 10;
}

.play-btn::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(219, 0, 7, 0.5);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}

.play-btn:hover { transform: scale(1.1); }

.play-btn svg {
  width: 24px;
  height: 24px;
  margin-left: 4px;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Play overlay */
.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.video-card:hover .play-overlay,
.sidebar-video:hover .play-overlay {
  opacity: 1;
}

.play-icon {
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon svg {
  width: 20px;
  height: 20px;
  margin-left: 3px;
}

/* ========================================
   STAT BAR
   ======================================== */
.stat-bar {
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
}

.stat-bar .home {
  background: linear-gradient(90deg, var(--red), #ff4444);
  transition: width 1s ease-out;
}

.stat-bar .away {
  background: linear-gradient(90deg, #666, #888);
  transition: width 1s ease-out;
}

/* ========================================
   FORMATION GRID
   ======================================== */
.formation-grid {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  gap: 0.5rem;
  height: 400px;
}

.formation-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.player-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}

.player-dot:hover {
  transform: scale(1.2);
  z-index: 10;
}

.player-dot .tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1rem;
  background: var(--darker);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  white-space: nowrap;
  font-size: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  margin-bottom: 8px;
}

.player-dot:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

/* ========================================
   SCORE GLOW
   ======================================== */
.score-glow {
  text-shadow: 0 0 40px var(--red), 0 0 80px var(--red);
}

/* ========================================
   PITCH BACKGROUND
   ======================================== */
.pitch-bg {
  background: linear-gradient(135deg, #1a472a 0%, #2d5a3f 50%, #1a472a 100%) !important;
  position: relative;
}

.pitch-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.03) 40px,
      rgba(255,255,255,0.03) 80px
    );
}

/* ========================================
   FORM STYLES
   ======================================== */
.form-input {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 4px rgba(219, 0, 7, 0.1);
}

.form-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.7);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffffff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.5rem;
  padding-right: 3rem;
}

/* ========================================
   CONTACT CARD
   ======================================== */
.contact-card {
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.contact-card:hover::before {
  transform: scaleY(1);
}

/* ========================================
   MAP CONTAINER
   ======================================== */
.map-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.map-container::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  pointer-events: none;
}

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 0;
  text-align: left;
  font-weight: 600;
  font-size: 1.125rem;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--red);
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

/* ========================================
   SOCIAL ICONS
   ======================================== */
.social-btn {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-4px);
}

/* ========================================
   SUCCESS MESSAGE
   ======================================== */
.success-message {
  display: none;
  padding: 1.5rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 16px;
  color: #22c55e;
}

.success-message.show {
  display: flex;
}

/* ========================================
   DEPARTMENT TAGS
   ======================================== */
.dept-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.dept-tag:hover {
  background: var(--red);
  border-color: var(--red);
}

/* ========================================
   SEARCH BOX
   ======================================== */
.search-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 0.875rem 1.25rem;
  transition: all 0.3s;
}

.search-box:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(219, 0, 7, 0.1);
}

/* ========================================
   TRENDING TAG
   ======================================== */
.trending-tag {
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 0.8125rem;
  transition: all 0.3s;
}

.trending-tag:hover {
  background: var(--red);
  border-color: var(--red);
}

/* ========================================
   ARTICLE STYLES
   ======================================== */
.article-content {
  font-size: 1.125rem;
  line-height: 1.8;
}

.article-content p {
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.75);
}

.article-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  color: #fff;
}

.article-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  color: #fff;
}

.article-content blockquote {
  border-left: 4px solid var(--red);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  font-size: 1.25rem;
}

.article-content blockquote footer {
  font-style: normal;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.75rem;
}

.article-content a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-content a:hover {
  color: var(--gold);
}

.article-content ul, .article-content ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  color: rgba(255,255,255,0.75);
}

.article-content li {
  margin-bottom: 0.75rem;
}

.article-content figure {
  margin: 2rem 0;
}

.article-content figure img {
  width: 100%;
  border-radius: 16px;
}

.article-content figcaption {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.75rem;
}

/* ========================================
   SHARE BUTTONS
   ======================================== */
.share-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.share-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

/* ========================================
   READING PROGRESS
   ======================================== */
.reading-progress {
  position: fixed;
  top: 80px;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  z-index: 100;
  transition: width 0.1s;
}

/* ========================================
   TABLE OF CONTENTS (UNIFIED)
   ======================================== */
.toc-link {
  display: block;
  padding: 0.625rem 1rem;
  color: rgba(255,255,255,0.6);
  border-left: 2px solid transparent;
  transition: all 0.2s;
  font-size: 0.875rem;
}

.toc-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.2);
}

.toc-link.active {
  color: var(--red);
  border-color: var(--red);
  background: rgba(219, 0, 7, 0.05);
}

/* ========================================
   AUTHOR CARD
   ======================================== */
.author-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* ========================================
   RELATED ARTICLE
   ======================================== */
.related-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s;
}

.related-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--red);
}

/* ========================================
   TAGS
   ======================================== */
.tag {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.tag:hover {
  background: var(--red);
  border-color: var(--red);
}

/* ========================================
   GALLERY
   ======================================== */
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '🔍';
  position: absolute;
  inset: 0;
  background: rgba(219, 0, 7, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ========================================
   HIDE SCROLLBAR
   ======================================== */
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

/* ========================================
   MODAL (UNIFIED)
   ======================================== */
.moodal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.moodal.active {
  display: flex;
}

.moodal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
}

.moodal-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  border-radius: 24px;
  overflow: hidden;
}

@media (max-width: 640px) {
  #moodal-content {
    max-width: calc(100% - 1rem);
    padding: 1.5rem;
    border-radius: 1.5rem;
    margin: 0.5rem;
  }
  
  #moodal-content h3 {
    font-size: 1.25rem;
  }
  
  #moodal-content .team-logo {
    width: 48px;
    height: 48px;
  }
}

/* ========================================
   PLAYER CARD
   ======================================== */
.player-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.player-card:hover {
  border-color: var(--red);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -15px rgba(219, 0, 7, 0.3);
}

.player-card .player-image {
  position: relative;
  height: 280px;
  background: linear-gradient(135deg, var(--red) 0%, #6d0003 100%);
  overflow: hidden;
}

.player-card .player-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.player-card:hover .player-image img {
  transform: scale(1.1);
}

.player-card .player-number {
  position: absolute;
  top: 31px;
  right: 12px;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,0.2);
  line-height: 1;
}

/* ========================================
   TROPHY CARD
   ======================================== */
.trophy-card {
  text-align: center;
  
  transition: all 0.4s;
  height: 100%;
}

.trophy-card:hover {
  transform: translateY(-8px);
}

.trophy-card .trophy-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px rgba(197, 165, 114, 0.5));
}

/* ========================================
   VIEW TOGGLE (UNIFIED)
   ======================================== */
.view-toggle {
  display: flex;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 4px;
}

.view-toggle button {
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s;
}

.view-toggle button.active {
  background: var(--red);
}

@media (max-width: 480px) {
  .view-toggle button {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
}

/* ========================================
   MONTH BUTTON (UNIFIED)
   ======================================== */
.month-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}

.month-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

@media (max-width: 640px) {
  .month-btn {
    width: 36px;
    height: 36px;
  }
}

/* Month Navigation */
.month-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ========================================
   CALENDAR
   ======================================== */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar-day {
  min-height: 100px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  font-size: 0.875rem;
  transition: all 0.3s;
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
}

.calendar-day:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}

.calendar-day .day-number {
  font-weight: 600;
  margin-bottom: 4px;
}

.calendar-day.other-month {
  opacity: 0.3;
}

.calendar-day.today {
  background: var(--red);
  border-color: var(--red);
}

.calendar-day.today:hover {
  background: #ff1a1a;
}

.calendar-day.has-match {
  background: rgba(219, 0, 7, 0.1);
  border-color: rgba(219, 0, 7, 0.3);
}

.calendar-day.has-match:hover {
  background: rgba(219, 0, 7, 0.2);
  border-color: var(--red);
  transform: scale(1.02);
}

.calendar-day .match-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}

.calendar-day .match-card-mini {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  background: rgba(0,0,0,0.3);
  border-radius: 8px;
  font-size: 0.7rem;
}

.calendar-day .match-card-mini img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.calendar-day .match-card-mini .opponent {
  flex: 1;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.calendar-day .match-card-mini .time {
  font-size: 0.65rem;
  opacity: 0.7;
  flex-shrink: 0;
}

.calendar-day .match-card-mini .comp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.calendar-day .match-card-mini.home {
  border-left: 2px solid var(--red);
}

.calendar-day .match-card-mini.away {
  border-left: 2px solid var(--gold);
}

.calendar-day .match-card-mini.finished {
  opacity: 0.8;
}

.calendar-day .match-card-mini.finished .opponent {
  text-decoration: none;
}

/* Calendar Header for Mobile */
.calendar-header-mobile {
  display: none;
}

/* Calendar Header Day */
.calendar-header-day {
  text-align: center;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  padding: 0.5rem;
}

@media (max-width: 768px) {
  .calendar-header-day {
    font-size: 0.6rem;
    padding: 0.25rem;
  }
}

@media (max-width: 480px) {
  .calendar-header-day {
    font-size: 0.5rem;
  }
  
  .calendar-header-day span.full {
    display: none;
  }
  .calendar-header-day span.short {
    display: inline;
  }
}

@media (min-width: 481px) {
  .calendar-header-day span.short {
    display: none;
  }
}

/* Calendar Responsive */
@media (max-width: 1024px) {
  .calendar-grid {
    gap: 6px;
  }
  
  .calendar-day {
    min-height: 90px;
    padding: 6px;
    border-radius: 12px;
  }
  
  .calendar-day .match-card-mini {
    padding: 5px;
    gap: 4px;
  }
  
  .calendar-day .match-card-mini img {
    width: 18px;
    height: 18px;
  }
  
  .calendar-day .match-card-mini .opponent {
    font-size: 0.65rem;
  }
}

@media (max-width: 768px) {
  .calendar-grid {
    gap: 3px;
  }
  
  .calendar-day {
    min-height: 65px;
    padding: 4px;
    border-radius: 8px;
  }
  
  .calendar-day .day-number {
    font-size: 0.7rem;
    margin-bottom: 2px;
  }
  
  .calendar-day .match-card-mini {
    padding: 3px;
    gap: 3px;
    border-radius: 4px;
  }
  
  .calendar-day .match-card-mini img {
    width: 14px;
    height: 14px;
  }
  
  .calendar-day .match-card-mini .opponent {
    font-size: 0.55rem;
  }
  
  .calendar-day .match-card-mini .time {
    display: none;
  }
  
  .calendar-day .match-card-mini .comp-dot {
    width: 5px;
    height: 5px;
  }
}

@media (max-width: 480px) {
  .calendar-grid {
    gap: 2px;
  }
  
  .calendar-day {
    min-height: 55px;
    padding: 3px;
    border-radius: 6px;
  }
  
  .calendar-day .day-number {
    font-size: 0.65rem;
    font-weight: 700;
  }
  
  .calendar-day .match-info {
    margin-top: 2px;
    gap: 2px;
  }
  
  .calendar-day .match-card-mini {
    padding: 2px;
    gap: 2px;
    border-radius: 3px;
    border-left-width: 2px;
  }
  
  .calendar-day .match-card-mini img {
    width: 12px;
    height: 12px;
  }
  
  .calendar-day .match-card-mini .opponent {
    display: none;
  }
  
  .calendar-day .match-card-mini .comp-dot {
    width: 4px;
    height: 4px;
  }
  
  .calendar-day.has-match .match-card-mini {
    justify-content: center;
    padding: 3px;
  }
}

@media (max-width: 360px) {
  .calendar-day {
    min-height: 45px;
    padding: 2px;
  }
  
  .calendar-day .day-number {
    font-size: 0.6rem;
  }
  
  .calendar-day .match-card-mini {
    padding: 2px;
  }
  
  .calendar-day .match-card-mini img {
    width: 10px;
    height: 10px;
  }
}

/* ========================================
   LIVE INDICATOR
   ======================================== */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.live-dot {
  animation: pulse 1.5s ease-in-out infinite;
}

/* ========================================
   HIDDEN (UNIFIED)
   ======================================== */
.hidden { display: none !important; }

/* ========================================
   NOTIFICATION ANIMATION (UNIFIED)
   ======================================== */
@keyframes fade-in {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.animate-fade-in {
  animation: fade-in 0.3s ease forwards;
}

/* ========================================
   PROGRESS BAR (UNIFIED)
   ======================================== */
.progress-bar {
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar .fill,
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 4px;
  transition: width 1s ease-out;
}

/* Comparison Bar */
.comparison-bar {
  display: flex;
  height: 32px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}

.comparison-bar .home {
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.comparison-bar .away {
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  padding-left: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ========================================
   POLICY CONTENT
   ======================================== */
.policy-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}

.policy-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
}

.policy-content p {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.policy-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.policy-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.policy-content a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.policy-content a:hover {
  color: var(--gold);
}

.policy-content strong {
  color: #fff;
  font-weight: 600;
}

/* ========================================
   INFO BOX
   ======================================== */
.info-box {
  background: rgba(219, 0, 7, 0.1);
  border: 1px solid rgba(219, 0, 7, 0.2);
  border-radius: 12px;
  padding: 1.25rem;
  margin: 1.5rem 0;
}

.info-box.gold {
  background: rgba(197, 165, 114, 0.1);
  border-color: rgba(197, 165, 114, 0.2);
}

/* ========================================
   LAST UPDATED BADGE
   ======================================== */
.last-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

/* ========================================
   TABLE STYLES
   ======================================== */
.stats-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.stats-table {
  width: 100%;
  min-width: 600px;
  border-collapse: separate;
  border-spacing: 0;
}

.stats-table th {
  padding: 1rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}

.stats-table td {
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}

.stats-table tbody tr:hover td {
  background: rgba(255,255,255,0.03);
}

.stats-table tbody tr.arsenal-row td {
  background: rgba(219, 0, 7, 0.1);
}

.stats-table tbody tr.arsenal-row:hover td {
  background: rgba(219, 0, 7, 0.15);
}

/* Team Link */
.team-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  transition: color 0.2s;
}

.team-link:hover {
  color: var(--red);
}

.team-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Player Link */
.player-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  transition: color 0.2s;
}

.player-link:hover {
  color: var(--red);
}

.player-link img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255,255,255,0.1);
}

/* Fix for grid/flex children to allow overflow scroll */
.grid > * {
  min-width: 0;
}

/* ========================================
   HEADER STYLES
   ======================================== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.header_wrapp {
  background: #0d0d0d;
}

.header-logo.logo_top img {
  width: 60px;
  height: 60px;
}

.header-list {
  display: flex;
  grid-gap: 8px;
  align-items: center;
  margin-bottom: 0;
}

.header-list-item-link {
  color: rgb(251, 251, 251);
  padding: 10px 14px;
  transition: 0.3s all;
  font-size: 12px;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
}

.header-list-item-link::after,
.header-list-item-link--active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #DB0007;
  transition: width 0.3s ease;
}

.header-list-item-link:hover {
  color: #DB0007;
  background-color: rgba(255, 255, 255, 0.1);
}

.header-list-item-link:hover::after {
  width: 100%;
}

.header-list-item-link--active {
  color: #DB0007;
}

.header-list-item-link--active::after {
  width: 100%;
}

/* ========================================
   BURGER MENU
   ======================================== */
.menu-burger {
  width: 30px;
  height: 20px;
  background-color: transparent;
  cursor: pointer;
  border: none;
  padding: 0;
  z-index: 100;
  position: relative;
  display: none;
}

.menu-burger::after,
.menu-burger::before {
  content: "";
  position: absolute;
  left: 0;
}

.menu-burger::before {
  top: 0;
  transition: transform 0.3s, top 0.3s 0.3s;
}

.menu-burger::after {
  bottom: 0;
  transition: transform 0.3s, bottom 0.3s 0.3s;
}

.menu-burger__line,
.menu-burger::after,
.menu-burger::before {
  display: block;
  width: 100%;
  border-radius: 10px;
  height: 3px;
  background-color: #f2f2f2;
}

.menu-burger--active .menu-burger__line {
  display: none;
}

.menu-burger--active::before {
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
  transition: top 0.3s, transform 0.3s 0.3s;
}

.menu-burger--active::after {
  transform: translateY(50%) rotate(-45deg);
  bottom: 50%;
  transition: bottom 0.3s, transform 0.3s 0.3s;
}

.burger_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 8;
}

.burger_overlay--active {
  opacity: 1;
  pointer-events: auto;
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}

/* ========================================
   MARQUEE
   ======================================== */
.marquee-wrapper { overflow: hidden; }

.marquee-content {
  display: flex;
  animation: marquee 40s linear infinite;
}

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

/* ========================================
   REVEAL ANIMATION
   ======================================== */
.reveal-text {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* ========================================
   DIAGONAL SECTION
   ======================================== */
.diagonal-top {
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
}

.diagonal-bottom {
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

/* ========================================
   STATS NUMBER
   ======================================== */
.stat-number {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
  transition: all 0.3s;
}

.stat-item:hover .stat-number {
  color: var(--gold);
  -webkit-text-stroke: 2px transparent;
}

/* ========================================
   GLOW EFFECT
   ======================================== */
.glow-red {
  box-shadow: 0 0 60px rgba(219, 0, 7, 0.5);
}

/* ========================================
   VIDEO MODAL
   ======================================== */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s;
}

.video-modal.active .video-modal-content {
  transform: scale(1);
}

.close-modal {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.close-modal:hover {
  background: var(--red);
}

/* ========================================
   CONTAINER
   ======================================== */
.my-container {
  max-width: 1440px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

/* ========================================
   TO TOP BUTTON
   ======================================== */
#toTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  padding: 10px 19px;
  font-size: 18px;
  border: none;
  border-radius: 50%;
  background: #e31b23;
  color: white;
  cursor: pointer;
  z-index: 20;
  transition: opacity 0.3s ease;
}

#toTopBtn.show {
  display: block;
  opacity: 0.8;
}

#toTopBtn:active {
  opacity: 1;
}

/* ========================================
   FOOTER
   ======================================== */
.footer-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.footer-list-item {
}

.footer {
  background: #000;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 30%;
}

.footer-right {
  width: 70%;
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.wrapper {
  width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.header-menu {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.align-items-center {
  align-items: center;
}

.header-logo-link {
  display: block;
  height: 80px;
  margin-bottom: 16px;
}

.img-100per {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.p-t-b-16 {
  padding-bottom: 16px;
  padding-top: 16px;
}

.bg-black-opacity06 {
  background: rgba(0, 0, 0, 0.671);
}

.mb-16 {
  margin-bottom: 16px;
}

.header-link {
  display: block;
  font-size: 17px;
  text-decoration: none;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  font-weight: 500;
  background: linear-gradient(#fff, #fff);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 0% 6%;
  transition: .3s;
}

.header-link:hover {
  background-size: 100% 6%;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.p-t-b-80 {
  padding-bottom: 80px;
  padding-top: 80px;
}

.jcc {
  justify-content: center;
}

.max-width-240px {
  max-width: 540px;
}

.text-align-center {
  text-align: center;
}

.fz-60 {
  font-size: 60px;
}

.color-white {
  color: rgb(255, 255, 255);
}

.fz-20 {
  font-size: 20px;
}

.fw-700 {
  font-weight: 700;
}

.first-screen-button {
  border: 2px solid #fff;
  border-radius: 60px;
  margin-left: auto;
  margin-right: auto;
  width: 240px;
  display: block;
  text-align: center;
  color: rgb(255, 255, 255);
  text-decoration: none;
  padding-bottom: 16px;
  padding-top: 16px;
  font-size: 20px;
  font-weight: 600;
  background: linear-gradient(#fff, #fff);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: .6s;
}

.first-screen-button:hover {
  background-size: 100% 100%;
  color: rgb(20, 20, 20);
}

.main-next-match {
  display: grid;
  grid-template-columns: 4fr 1fr 4fr;
  align-items: center;
}

.p-t-b-24 {
  padding-bottom: 24px;
  padding-top: 24px;
}

.main-match-link {
  display: flex;
  align-items: center;
  column-gap: 24px;
  color: rgb(20, 20, 20);
  text-decoration: none;
  font-size: 28px;
  font-weight: 700;
  font-family: Tahoma;
  transition: .3s;
}

.main-match-link:hover {
  column-gap: 28px;
  color: rgb(110, 13, 13);
}

.jcend {
  justify-content: flex-end;
}

.main-match-logo {
  height: 100px;
}

.gap-c-24 {
  column-gap: 24px;
}

.fz-18 {
  font-size: 18px;
}

.fw-500 {
  font-weight: 500;
}

.img-16 {
  height: 18px;
}

.gap-c-12 {
  column-gap: 12px;
}

.main-btn {
  width: 240px;
  padding-top: 16px;
  padding-bottom: 16px;
  margin-right: auto;
  margin-left: auto;
  display: block;
  color: rgb(255, 255, 255);
  text-decoration: none;
  background: linear-gradient(rgb(20, 20, 20) 0%, rgb(20, 20, 20) 100%);
  border-radius: 60px;
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: .5s;
  background-position-x: right;
  border: 2px solid rgb(20, 20, 20);
}

.main-btn:hover {
  background-size: 0% 100%;
  color: rgb(20, 20, 20);
  backdrop-filter: blur(30px);
}

.main-results {
  background-image: url('../images/8fe393499441a17bcbd2b4ea05f1f794.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.fz-30 {
  font-size: 30px;
}

.main-match-item {
  background: #fff;
  border-radius: 24px;
  padding-bottom: 16px;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-match-item-status {
  background: rgba(40,167,69,1);
  width: 84px;
  font-size: 14px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 8px;
  border-radius: 5px;
  box-shadow: 0px 0px 5px 0px rgba(40, 247, 69, 0.74);
}

.text-uppercase {
  text-transform: uppercase;
}

.main-match-item-event {
  display: grid;
  align-items: center;
  grid-template-columns: 284px 111px 284px;
  padding-left: 16px;
  padding-right: 16px;
}

.main-match-logo-small {
  height: 60px;
}

.mb-8 {
  margin-bottom: 8px;
}

.font-italic {
  font-style: italic;
}

.main-matches-item-detail {
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
  color: rgb(255, 255, 255);
  transition: .3s;
  text-decoration: none;
  background: linear-gradient(#000, #000);
  border-radius: 24px;
  border: 2px solid #000;
  padding-bottom: 4px;
  padding-top: 4px;
  padding-left: 16px;
  padding-right: 16px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position-x: right;
}

.main-matches-item-detail:hover {
  color: rgb(101, 0, 0);
  background-size: 0% 100%;
}

.bg-green-white {
  background: linear-gradient(90deg, rgba(177,255,195,1) 0%, rgba(255,255,255,1) 30%);
}

.bg-white-green {
  background: linear-gradient(90deg, rgba(255,255,255,1) 70%, rgba(177,255,195,1) 100%);
}

.main-players {
  background-image: url('../images/f769aa3fc16808dd0033cceb2dea1dbe.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.space-between {
  justify-content: space-between;
}

.main-player-card {
  display: flex;
  width: 24%;
  height: 400px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  justify-content: center;
}

.width-100per {
  width: 100%;
}

.main-player-card-img {
  height: 80%;
  transition: .3s;
}

.main-player-card-img:hover {
  transform: scale(1.05);
}

.main-player-card-desc {
  background: rgb(0, 0, 0);
  border-radius: 16px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.width-50per {
  width: 50%;
}

.main-table {
  width: 100%;
  border: 1px solid #dedede;
  background: #f5f5f5;
}

.main-table-head {
  background: rgb(0,0,0);
  padding-top: 8px;
  padding-bottom: 8px;
  display: grid;
  grid-template-columns: 8fr repeat(4, 1fr);
  padding-left: 16px;
  padding-right: 16px;
}

.main-table-row {
  display: grid;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-top: 8px;
  grid-template-columns: 8fr repeat(4, 1fr);
  align-items: center;
  border-style: solid;
  border-width: 0;
  border-bottom-width: 1px;
  border-color: rgba(0, 0, 0, 0.1);
  transition: .3s;
  padding-right: 16px;
}

.main-table-row:hover {
  background: rgba(210,210,210,1);
}

.img-60 {
  height: 48px;
  width: 48px;
  object-fit: contain;
}

.text-decoration-none {
  text-decoration: none;
}

.color-black {
  color: rgb(20, 20, 20);
}

.main-table-team-hover {
  transition: .3s;
}

.main-table-team-hover:hover {
  color: rgb(113, 113, 113);
}

.main-table-bottom-link {
  background: #000000;
  font-size: 20px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  text-decoration: none;
  display: flex;
  justify-content: center;
  padding-bottom: 8px;
  padding-top: 8px;
  transition: .3s;
}

.main-table-bottom-link:hover {
  background: #242424;
}

.main-fixtures-row {
  display: grid;
  grid-template-columns: 4fr 1fr 4fr;
  padding-bottom: 16px;
  padding-top: 16px;
  align-items: center;
}

.bg-lightgrey {
  background: #f3f3f3;
}

.bg-grey {
  background: #ebebeb;
}

.mb-24 {
  margin-bottom: 24px;
}

.bg-black {
  background: #000;
}

.link-reset {
  display: inline-block;
  text-decoration: none;
}

.latest-video-item {
  height: 480px;
  width: 501px;
}

.latest-video-card {
  align-items: center;
  display: flex;
  column-gap: 20px;
  height: 25%;
  padding-bottom: 12px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 12px;
  text-decoration: none;
  transition: .3s;
}

.latest-video-card:hover {
  background: #333333;
}

.latest-video-desc {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  width: 60%;
}

.color-757575 {
  color: rgb(117, 117, 117);
}

.fz-12 {
  font-size: 12px;
}

.latest-video-card-img {
  height: 100%;
  width: 33%;
  position: relative;
  overflow: hidden;
}

.bg-212121 {
  background: #111111;
}

.main-news-card {
  background: #ffffff;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  width: 24%;
  color: rgb(21, 21, 21);
  text-decoration: none;
  row-gap: 8px;
  transition: .3s;
  position: relative;
}

.main-news-card:hover {
  box-shadow: 0px 0px 8px 1px rgb(209, 209, 209);
  color: rgb(108, 0, 0);
}

.main-news-card-btn {
  border-radius: 8px;
  background: #000;
  color: rgb(255, 255, 255);
  padding-bottom: 8px;
  padding-top: 8px;
  width: 120px;
  transition: .3s;
  border: 3px solid #000000;
  font-weight: 500;
}

.main-news-card-btn:hover {
  background: #fff;
  color: rgb(0, 0, 0);
}

.height-210 {
  min-height: 210px;
}

.height-100per {
  height: 100%;
}

.page-title {
  border-style: solid;
  border-width: 0;
  border-left-width: 4px;
  padding-left: 16px;
}

.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 12px;
}

.pag-left-arrow {
  border: 1px solid darkgrey;
  height: 24px;
  width: 24px;
  align-items: center;
  display: flex;
  justify-content: center;
  transition: .3s;
}

.pag-left-arrow:hover {
  scale: 1.1;
}

.img-24 {
  height: 24px;
}

.rotate-180 {
  rotate: 180deg;
}

.video-img-box {
  height: 320px;
  position: relative;
  overflow: hidden;
  display: block;
}

.video-playback-box {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
  background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.5) 100%);
}

.video-playback-box:hover {
  scale: 1.2;
  z-index: 2;
}

.match-stats-table {
  width: 100%;
  align-items: center;
  display: flex;
  flex-direction: column;
  border-style: solid;
  border-width: 0;
  border-top-width: 1px;
  border-color: rgb(199, 199, 199);
  padding-top: 16px;
}

.text-align-right {
  text-align: right;
}

.calendar-matches {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-areas: repeat(5, 1fr);
  border-style: solid;
  border-color: rgb(200, 200, 200);
  border-width: 0;
  border-top-width: 1px;
  border-left-width: 1px;
}

.calendar-month-filter {
  display: flex;
  justify-content: center;
  column-gap: 36px;
}

.calendar-month-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 36px;
  transition: .5s;
}

.calendar-month-arrow:hover {
  transform: rotate(360deg);
}

.weeks-day-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  padding-bottom: 16px;
  padding-top: 16px;
  width: 100%;
}

.grid-col-400-100-400 {
  grid-template-columns: 400px 100px 400px;
}

.text-shadow-black-5 {
  text-shadow: 0px 0px 5px rgb(0, 0, 0);
}

.calendar-team-left {
  position: absolute;
  top: 48px;
  left: 24px;
}

.height-400px {
  object-fit: cover;
  min-height: 400px;
  max-height: 400px;
}

.gap-c-16 {
  column-gap: 16px;
}

.width-48per-19px {
  width: calc(48% + 19px);
}

.calendar-team-right {
  position: absolute;
  right: 24px;
  top: 100px;
}

.calendar-day-match {
  background-image: url('../images/75aba4fcc8c1755805feb6fb0673a90b.png');
  background-position-x: center;
  background-position-y: -32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.calendar-match-link {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-weight: 500;
  border: 1px solid #fff;
  border-radius: 24px;
  padding-bottom: 4px;
  padding-top: 4px;
  padding-right: 8px;
  padding-left: 8px;
  font-size: 14px;
  background: linear-gradient(#fff, #fff);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: .3s;
  text-shadow: 0px 0px 1px ;
}

.calendar-match-link:hover {
  background-size: 100% 100%;
  color: rgb(0, 0, 0);
}

.calendar-day-training {
  background-image: url('../images/b8fe25fef76909276331230a221b859a.png');
  background-position-x: center;
  background-position-y: -32px;
}

.width-32per {
  width: 32%;
}

.table-number {
  text-align: center;
  min-width: 24px;
}

.position-relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.player-number {
  font-size: 100px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  position: absolute;
  transform: translate(0, -50%);
  top: 36%;
  right: -68px;
}

.gap-r-16 {
  row-gap: 16px;
}

.player-stats-container {
  width: calc(68% - 24px);
}

.player-stats-item {
  align-items: center;
  height: 64px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  justify-content: space-between;
}

.color-555555 {
  color: rgb(85, 85, 85);
}

.bg-00204f {
  background: #00204f;
}

.player-stats-table-row {
  display: grid;
  grid-template-columns: 1.5fr repeat(8, 1fr);
  height: 48px;
  align-items: center;
  padding-left: 8px;
  padding-right: 8px;
}

.border-bottom-grey {
  border-style: solid;
  border-width: 0;
  border-bottom-width: 1px;
  border-color: rgb(52, 52, 52);
}

.border-bottom-lightgrey {
  border-style: solid;
  border-width: 0;
  border-bottom-width: 1px;
  border-color: rgb(206, 206, 206);
}

.width-94px {
  width: 94px;
}

.p-b-16 {
  padding-bottom: 16px;
}

.height-540px {
  height: 540px;
}

.p-l-r-16 {
  padding-left: 16px;
  padding-right: 16px;
}

.trophies-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 12px;
  width: 24%;
}

.height-150px {
  height: 150px;
}

.img-100per-cover {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.video-big {
  height: 481px;
  position: relative;
  overflow: hidden;
}

.video-absolute-block {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  align-items: center;
  display: flex;
  justify-content: center;
  background: linear-gradient(0deg, rgba(42,3,3,0.5) 0%, rgba(42,3,3,0.5) 100%);
  transition: .3s;
}

.video-absolute-block:hover {
  scale: 1.1;
}

.img-128 {
  height: 128px;
  width: 128px;
  object-fit: contain;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1386px) {
  .menu-burger {
    display: block;
  }
  
  .header-nav-list {
    display: flex;
    flex-direction: column;
    position: fixed;
    gap: 24px;
    z-index: 99;
    overflow: scroll;
    width: 250px;
    background: #0c0c0c;
    padding-top: 50px;
    height: 100vh;
    padding-bottom: 50px;
    top: 0;
    right: 0;
    bottom: 0;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  
  .header-list-item-link:not(.header-list-item-link--active) {
    color: #fff;
  }
  
  .header-nav-list-mobile {
    align-items: flex-start;
    padding-left: 50px;
    backdrop-filter: blur(19px);
    font-weight: 700;
    transform: translateY(0);
  }
}

@media (max-width: 1165px) {
  .footer-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 1023px) {
  .side-hidden {
    display: none;
  }
}

@media (max-width: 550px) {
  .footer-list {
    grid-template-columns: 1fr;
  }
}