@charset "UTF-8";
/**
 * ヴァロ初め杯 2025 - Main Styles
 * 
 * Base: 1rem = 16px @ 1920px viewport
 * Units: rem / % only (px for borders only)
 */
html {
  font-size: clamp(0.875rem, 0.8333333333vw, 1.125rem);
}
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  background-color: #eaedf7;
  color: #4d4c61;
  overflow-x: hidden;
  cursor: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.6;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  z-index: 40;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  background: rgba(234, 237, 247, 0.8);
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
  border-bottom: 1px solid rgba(77, 76, 97, 0.05);
}
@media (max-width: 48em) {
  .site-header {
    height: 4.5rem;
  }
}
@media (max-width: 40em) {
  .site-header {
    height: 4rem;
  }
}

@media (max-width: 48em) {
  .main-content {
    padding-top: 4.5rem;
  }
}
@media (max-width: 40em) {
  .main-content {
    padding-top: 4rem;
  }
}

.tategaki {
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.2em;
}

.dud {
  color: #cd5e3c;
  opacity: 0.6;
}

#cursor-crosshair {
  position: fixed;
  top: 0;
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
}
#cursor-crosshair::before, #cursor-crosshair::after {
  content: "";
  position: absolute;
  background: #cd5e3c;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#cursor-crosshair::before {
  width: 100%;
  height: 1px;
}
#cursor-crosshair::after {
  width: 1px;
  height: 100%;
}
.hover-target #cursor-crosshair {
  width: 5rem;
  height: 5rem;
  transform: translate(-50%, -50%) rotate(45deg);
}

.cyber-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(77, 76, 97, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(77, 76, 97, 0.05) 1px, transparent 1px);
  background-size: 3.125rem 3.125rem;
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
          mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

#loader {
  position: fixed;
  inset: 0;
  background: #eaedf7;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "JetBrains Mono", monospace;
  color: #4d4c61;
  overflow: hidden;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 1rem;
}
@media (max-width: 48em) {
  .countdown-item {
    margin: 0 0.5rem;
  }
}

.countdown-val {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 48em) {
  .countdown-val {
    font-size: 2rem;
  }
}

.countdown-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  margin-top: 0.5rem;
  color: #cd5e3c;
}

.col-start-1 {
  grid-column-start: 1;
}

.row-start-1 {
  grid-row-start: 1;
}

.hero-logo-layer {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  justify-items: center;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 48em) {
  .hero-logo-layer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 4rem;
    height: 100%;
  }
}

.hero-logo {
  flex-shrink: 0;
  width: 100%;
  max-width: 28rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 48em) {
  .hero-logo {
    max-width: 22rem;
  }
}
@media (max-width: 40em) {
  .hero-logo {
    max-width: 18rem;
    grid-column: 1;
    grid-row: 1;
    margin-top: 4rem;
  }
}
.hero-logo img {
  max-width: 44rem;
}
@media (max-width: 1020px) {
  .hero-logo img {
    margin-left: 6rem;
  }
}
@media (max-width: 40em) {
  .hero-logo img {
    margin-left: 0;
    width: 100%;
  }
}
.hero-logo img__image {
  width: 44rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  will-change: transform, filter;
}
@media (max-width: 40em) {
  .hero-logo img__image {
    width: 100%;
  }
}
.hero-logo__glitch-r, .hero-logo__glitch-b {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
  opacity: 0;
}
.hero-logo__glitch-r {
  mix-blend-mode: screen;
  filter: url("#rgb-split-r");
}
.hero-logo__glitch-b {
  mix-blend-mode: screen;
  filter: url("#rgb-split-b");
}

.hero-portrait {
  position: relative;
  flex-shrink: 0;
  height: 34rem;
  z-index: 1;
}
@media (max-width: 48em) {
  .hero-portrait {
    height: 28rem;
  }
}
@media (max-width: 40em) {
  .hero-portrait {
    height: 22rem;
    grid-column: 1;
    grid-row: 1;
    opacity: 0.8;
    transform: scale(0.9) translateY(-2rem);
  }
}
.hero-portrait__wrapper {
  position: relative;
  height: 100%;
}
.hero-portrait__image {
  height: 56rem;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  will-change: transform, filter, clip-path;
}
@media (max-width: 48em) {
  .hero-portrait__image {
    height: 100%;
  }
}
.hero-portrait__slice {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-portrait__slice::before, .hero-portrait__slice::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #cd5e3c;
  opacity: 0;
  transform: scaleX(0);
}
.hero-portrait__slice::before {
  top: 33%;
}
.hero-portrait__slice::after {
  top: 66%;
}
.hero-portrait__flash {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, rgba(205, 94, 60, 0.4) 30%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.hero-portrait__impact {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #cd5e3c 20%, #cd5e3c 80%, transparent 100%);
  opacity: 0;
  filter: blur(1px);
}
.hero-portrait__impact::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 2rem;
  background: radial-gradient(ellipse at bottom, rgba(205, 94, 60, 0.5) 0%, transparent 70%);
  filter: blur(0.5rem);
}

.hero-text-layer {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-flash-overlay {
  position: fixed;
  inset: 0;
  background: #eaedf7;
  opacity: 0;
  pointer-events: none;
  z-index: 100;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes glitch-shake {
  0%, 100% {
    transform: translate(0);
  }
  10% {
    transform: translate(-0.25rem, 0.125rem);
  }
  20% {
    transform: translate(0.25rem, -0.125rem);
  }
  30% {
    transform: translate(-0.125rem, 0.25rem);
  }
  40% {
    transform: translate(0.125rem, -0.25rem);
  }
  50% {
    transform: translate(-0.25rem, 0);
  }
  60% {
    transform: translate(0.25rem, 0.125rem);
  }
  70% {
    transform: translate(0, -0.125rem);
  }
  80% {
    transform: translate(-0.125rem, 0);
  }
  90% {
    transform: translate(0.125rem, 0.125rem);
  }
}
@keyframes slice-scan {
  0% {
    transform: scaleX(0);
    opacity: 1;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(0);
    opacity: 0;
  }
}
@keyframes impact-pulse {
  0% {
    transform: translateX(-50%) scaleX(0);
    opacity: 1;
  }
  30% {
    transform: translateX(-50%) scaleX(1.2);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) scaleX(1.5);
    opacity: 0;
  }
}
@keyframes rgb-flicker {
  0%, 100% {
    opacity: 0;
  }
  5% {
    opacity: 0.8;
  }
  10% {
    opacity: 0;
  }
  15% {
    opacity: 0.6;
  }
  20% {
    opacity: 0;
  }
}
.match-item {
  transition: border-color 0.3s ease;
}
.match-item:hover {
  border-color: #cd5e3c;
}

.rank-card {
  transition: all 0.3s ease;
}
.rank-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.625rem 2.5rem rgba(77, 76, 97, 0.1);
}

.btn-accent {
  position: relative;
  overflow: hidden;
}
.btn-accent::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #cd5e3c;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}
.btn-accent:hover::after {
  transform: scaleX(1);
}

::-moz-selection {
  background: #cd5e3c;
  color: white;
}

::selection {
  background: #cd5e3c;
  color: white;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.h-fit {
  height: -moz-fit-content;
  height: fit-content;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.sticky {
  position: sticky;
  top: 0;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.hidden {
  display: none;
}

.overflow-hidden {
  overflow: hidden;
}

.flex {
  display: flex;
}

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

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

.justify-center {
  justify-content: center;
}

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

.gap-4 {
  gap: 1rem;
}

.gap-12 {
  gap: 3rem;
}

.flex-1 {
  flex: 1 1 0%;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.col-span-1 {
  grid-column: span 1/span 1;
}

.col-span-3 {
  grid-column: span 3/span 3;
}

.col-span-12 {
  grid-column: span 12/span 12;
}

@media (min-width: 48em) {
  .md\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .md\:col-span-4 {
    grid-column: span 4/span 4;
  }
  .md\:col-span-8 {
    grid-column: span 8/span 8;
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .md\:mt-0 {
    margin-top: 0;
  }
  .md\:w-auto {
    width: auto;
  }
  .md\:flex-col {
    flex-direction: column;
  }
  .md\:justify-center {
    justify-content: center;
  }
}
.p-6 {
  padding: 1.5rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.bg-main {
  background-color: #4d4c61;
}

.bg-white\/5 {
  background-color: rgba(255, 255, 255, 0.05);
}

.bg-black\/20 {
  background-color: rgba(0, 0, 0, 0.2);
}

.bg-black\/40 {
  background-color: rgba(0, 0, 0, 0.4);
}

.text-white {
  color: white;
}

.text-main {
  color: #4d4c61;
}

.text-accent {
  color: #cd5e3c;
}

.text-gray-300 {
  color: #d1d5db;
}

.text-gray-400 {
  color: #9ca3af;
}

.text-gray-500 {
  color: #6b7280;
}

.border {
  border: 1px solid;
}

.border-b {
  border-bottom: 1px solid;
}

.border-white\/10 {
  border-color: rgba(255, 255, 255, 0.1);
}

.border-white\/20 {
  border-color: rgba(255, 255, 255, 0.2);
}

.border-main\/10 {
  border-color: rgba(77, 76, 97, 0.1);
}

.border-accent {
  border-color: #cd5e3c;
}

.border-gray-600 {
  border-color: #4b5563;
}

.border-gray-700 {
  border-color: #374151;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-7xl {
  font-size: 4.5rem;
  line-height: 1;
}

@media (min-width: 48em) {
  .md\:text-7xl {
    font-size: 4.5rem;
  }
  .md\:text-3xl {
    font-size: 1.875rem;
  }
  .md\:text-2xl {
    font-size: 1.5rem;
  }
}
.font-bold {
  font-weight: 700;
}

.font-black {
  font-weight: 900;
}

.leading-none {
  line-height: 1;
}

.leading-loose {
  line-height: 2;
}

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

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

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

.tracking-widest {
  letter-spacing: 0.1em;
}

.opacity-0 {
  opacity: 0;
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

.group:hover .group-hover\:text-white {
  color: white;
}

.group:hover .group-hover\:text-accent {
  color: #cd5e3c;
}

.group:hover .group-hover\:bg-accent {
  background-color: #cd5e3c;
}

.group:hover .group-hover\:border-accent {
  border-color: #cd5e3c;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-duration: 300ms;
}

.transition-opacity {
  transition-property: opacity;
  transition-duration: 300ms;
}

.transition-all {
  transition-property: all;
  transition-duration: 300ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-full {
  border-radius: 9999px;
}

.pointer-events-none {
  pointer-events: none;
}

.select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.z-10 {
  z-index: 10;
}

.match-item {
  position: relative;
  display: block;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  margin-bottom: 1rem;
}
.match-item:hover {
  border-color: #cd5e3c;
  background-color: rgba(255, 255, 255, 0.08);
}

.match-bg-number {
  position: absolute;
  right: -1rem;
  bottom: -1.5rem;
  font-size: 8rem;
  line-height: 1;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  z-index: 0;
  transition: color 0.3s;
}
.match-item:hover .match-bg-number {
  color: rgba(205, 94, 60, 0.1);
}

.match-vs-badge {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid #6b7280;
  background-color: rgba(0, 0, 0, 0.2);
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  transition: all 0.3s;
}
.match-item:hover .match-vs-badge {
  border-color: #cd5e3c;
  background-color: #cd5e3c;
  color: #ffffff;
}

.match-status-badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 10px;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #9ca3af;
  background: rgba(0, 0, 0, 0.2);
}
.match-status-badge.text-accent {
  color: #cd5e3c;
  border-color: #cd5e3c;
}
.match-status-badge.bg-main {
  background-color: #4d4c61;
  color: #6b7280;
  border-color: #374151;
}

.deco-line {
  position: absolute;
  width: 2px;
  background-color: #cd5e3c;
  transition: transform 0.2s;
  transform: scaleY(0);
  pointer-events: none;
}
.deco-line-l {
  left: 0;
  top: 0;
  bottom: 0;
  transform-origin: top;
}
.deco-line-r {
  right: 0;
  top: 0;
  bottom: 0;
  transform-origin: bottom;
  transition-delay: 75ms;
}
.match-item:hover .deco-line {
  transform: scaleY(1);
}

.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.mb-4 {
  margin-bottom: 1rem;
}

.w-8 {
  width: 2rem;
}

.h-8 {
  height: 2rem;
}

.text-white {
  color: #ffffff;
}

.text-accent {
  color: #cd5e3c;
}

.text-gray-300 {
  color: #d1d5db;
}

.text-gray-400 {
  color: #9ca3af;
}

.text-gray-500 {
  color: #6b7280;
}

.bg-main {
  background-color: #4d4c61;
}

.bg-white\/5 {
  background-color: rgba(255, 255, 255, 0.05);
}

.bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.bg-black\/20 {
  background-color: rgba(0, 0, 0, 0.2);
}

.bg-black\/40 {
  background-color: rgba(0, 0, 0, 0.4);
}

.border {
  border: 1px solid;
}

.border-b {
  border-bottom: 1px solid;
}

.border-white\/10 {
  border-color: rgba(255, 255, 255, 0.1);
}

.border-white\/20 {
  border-color: rgba(255, 255, 255, 0.2);
}

.border-main\/10 {
  border-color: rgba(77, 76, 97, 0.1);
}

.border-accent {
  border-color: #cd5e3c;
}

.border-gray-600 {
  border-color: #4b5563;
}

.border-gray-700 {
  border-color: #374151;
}

.w-full {
  width: 100%;
}

.h-fit {
  height: -moz-fit-content;
  height: fit-content;
}

.sticky {
  position: sticky;
  top: 0;
}

.top-32 {
  top: 8rem;
}

.relative {
  position: relative;
}

.z-10 {
  z-index: 10;
}

.grid {
  display: grid;
  width: 100%;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.col-span-12 {
  grid-column: span 12;
}

@media (min-width: 48em) {
  .md\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .md\:col-span-4 {
    grid-column: span 4;
  }
  .md\:col-span-8 {
    grid-column: span 8;
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .md\:mt-0 {
    margin-top: 0;
  }
  .md\:w-auto {
    width: auto;
  }
}
.flex {
  display: flex;
}

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

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

.items-start {
  align-items: flex-start;
}

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

.justify-center {
  justify-content: center;
}

.flex-1 {
  flex: 1 1 0%;
}

.gap-4 {
  gap: 1rem;
}

.gap-12 {
  gap: 3rem;
}

.p-6 {
  padding: 1.5rem;
}

.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-7xl {
  font-size: 4.5rem;
  line-height: 1;
}

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

.font-black {
  font-weight: 900;
}

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

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

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

.leading-none {
  line-height: 1;
}

.leading-loose {
  line-height: 2;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.match-item {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  transition: all 0.3s ease;
}
.match-item:hover {
  border-color: #cd5e3c;
}

.match-bg-number {
  position: absolute;
  right: -1rem;
  bottom: -1.5rem;
  font-size: 8rem;
  line-height: 1;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  z-index: 0;
  transition: color 0.3s;
}
.match-item:hover .match-bg-number {
  color: rgba(205, 94, 60, 0.1);
}

.match-status-badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 10px;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #9ca3af;
  background-color: rgba(0, 0, 0, 0.2);
}

.match-vs-badge {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid #6b7280;
  background-color: rgba(0, 0, 0, 0.2);
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-family: "JetBrains Mono", monospace;
  transition: all 0.3s;
}
.match-item:hover .match-vs-badge {
  border-color: #cd5e3c;
  background-color: #cd5e3c;
  color: #ffffff;
}

.deco-line {
  position: absolute;
  width: 2px;
  background-color: #cd5e3c;
  transition: transform 0.2s;
  transform: scaleY(0);
}
.deco-line-l {
  left: 0;
  top: 0;
  bottom: 0;
  transform-origin: top;
}
.deco-line-r {
  right: 0;
  top: 0;
  bottom: 0;
  transform-origin: bottom;
  transition-delay: 75ms;
}
.match-item:hover .deco-line {
  transform: scaleY(1);
}

#schedule {
  background-color: #4d4c61;
  color: white;
  position: relative;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  width: 100%;
}
@media (min-width: 48em) {
  .schedule-grid {
    grid-template-columns: 1fr 2fr;
  }
}

.match-card {
  display: block;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  margin-bottom: 1rem;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}
.match-card:hover {
  border-color: #cd5e3c;
  background-color: rgba(255, 255, 255, 0.08);
}

.match-card-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 48em) {
  .match-card-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.match-teams-grid {
  display: grid;
  grid-template-columns: 3fr 1fr 3fr;
  align-items: center;
  width: 100%;
  flex: 1;
  text-align: center;
  margin-top: 0.5rem;
}
@media (min-width: 48em) {
  .match-teams-grid {
    margin-top: 0;
  }
}

.status-badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #9ca3af;
  margin-top: 5px;
  letter-spacing: 0.1em;
}
.status-badge.is-finished {
  background-color: #4d4c61;
  border-color: #4b5563;
}

.vs-circle {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin: 0 auto;
  color: #9ca3af;
  font-family: "JetBrains Mono", monospace;
}

.score-box {
  font-weight: 700;
  font-size: 1.25rem;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "JetBrains Mono", monospace;
  color: white;
}

.match-bg-number {
  position: absolute;
  right: -1rem;
  bottom: -1.5rem;
  font-size: 8rem;
  line-height: 1;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  z-index: 0;
  transition: color 0.3s;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.match-card:hover .match-bg-number {
  color: rgba(205, 94, 60, 0.1);
}

.deco-line {
  position: absolute;
  width: 2px;
  background-color: #cd5e3c;
  transition: transform 0.2s;
  transform: scaleY(0);
  pointer-events: none;
}
.deco-line-l {
  left: 0;
  top: 0;
  bottom: 0;
  transform-origin: top;
}
.deco-line-r {
  right: 0;
  top: 0;
  bottom: 0;
  transform-origin: bottom;
  transition-delay: 75ms;
}
.match-card:hover .deco-line {
  transform: scaleY(1);
}

.text-accent {
  color: #cd5e3c !important;
}

.text-gray {
  color: #9ca3af !important;
}

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

.hover-target #cursor-crosshair {
  transform: translate(-50%, -50%) rotate(0deg) !important;
  width: 4.5rem;
  height: 4.5rem;
}

.c-valo-card {
  position: relative;
  width: 100%;
  height: 30rem !important;
  background-color: #000;
  overflow: hidden;
  z-index: 10;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}
.c-valo-card__img-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #1a1a1a;
}
.c-valo-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 10%;
     object-position: center 10%;
  filter: grayscale(0.2) brightness(0.8);
  transition: filter 0.5s ease, transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.c-valo-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 50%);
  pointer-events: none;
}
.c-valo-card:hover .c-valo-card__img {
  filter: grayscale(0) brightness(1.1);
  transform: scale(1.05);
}
.c-valo-card:hover .c-valo-card__scanline {
  opacity: 0.6;
  animation: scanline-fast 0.1s linear infinite;
}
.c-valo-card:hover .c-valo-card__line-fill {
  transform: translateX(0);
}
.c-valo-card__scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(205, 94, 60, 0.1) 51%, transparent 51%);
  background-size: 100% 4px;
  z-index: 5;
  opacity: 0.2;
  pointer-events: none;
}
.c-valo-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  z-index: 10;
}
.c-valo-card__line {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
  overflow: hidden;
}
.c-valo-card__line-fill {
  width: 100%;
  height: 100%;
  background-color: #cd5e3c;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scanline-fast {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(4px);
  }
}
.c-log-item {
  position: relative;
  transition: background-color 0.3s ease;
}
.c-log-item:hover {
  background-color: rgba(77, 76, 97, 0.02);
}
.c-log-item__scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(205, 94, 60, 0.05) 51%, transparent 51%);
  background-size: 100% 4px;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
}
.c-log-item:hover .c-log-item__scanline {
  opacity: 1;
  animation: scanline-move 0.1s linear infinite;
}

.font-mono {
  font-family: "JetBrains Mono", monospace;
}

.c-log-item.hover-target ~ #cursor-crosshair {
  transform: translate(-50%, -50%) rotate(0deg) !important;
}

.c-standing-group {
  background-image: radial-gradient(circle at 2px 2px, rgba(77, 76, 97, 0.05) 1px, transparent 0);
  background-size: 20px 20px;
}

.c-standing-row {
  position: relative;
}
.c-standing-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #cd5e3c;
  transform: scaleY(0);
  transition: transform 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 10;
}
.c-standing-row:hover::before {
  transform: scaleY(1);
}
.c-standing-row:hover {
  background-color: rgba(77, 76, 97, 0.03);
}

.c-standing-row:hover ~ #cursor-crosshair {
  transform: translate(-50%, -50%) rotate(0deg) !important;
  width: 4.5rem;
  height: 4.5rem;
}

.c-stat-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  padding: 0;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.c-stat-card__bg-rank {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: "JetBrains Mono", monospace;
  font-weight: 900;
  font-size: 12rem;
  line-height: 1;
  color: rgba(77, 76, 97, 0.03);
  pointer-events: none;
  z-index: 0;
}
.c-stat-card__header {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 1rem;
  z-index: 1;
}
.c-stat-card__visual {
  position: relative;
  width: 8rem;
  height: 8rem;
  margin: 0 auto;
  border-radius: 50%;
  border: 4px solid rgba(77, 76, 97, 0.1);
  background: #1a1a1a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.c-stat-card__visual .player-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  border-radius: 50%;
  transition: transform 0.5s;
}
.c-stat-card__visual .no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
}
.c-stat-card__badge {
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: #4d4c61;
  color: white;
  font-family: "JetBrains Mono", monospace;
  font-weight: bold;
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  font-size: 1rem;
  white-space: nowrap;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.c-stat-card__body {
  position: relative;
  padding: 1rem 1.5rem 2rem;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(234, 237, 247, 0), rgba(234, 237, 247, 0.9));
}
.c-stat-card__value {
  font-family: "JetBrains Mono", monospace;
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1;
  color: #4d4c61;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.5);
}
.c-stat-card__val-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  opacity: 0.5;
  margin-bottom: 0.25rem;
}
.c-stat-card__info .name {
  font-size: 1.25rem;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 0.25rem;
  color: #4d4c61;
}
.c-stat-card__info .team {
  font-size: 0.75rem;
  opacity: 0.7;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.c-stat-card__info .tag-rookie {
  background: #10b981;
  color: white;
  padding: 1px 4px;
  border-radius: 2px;
  font-size: 0.6rem;
}
.c-stat-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(205, 94, 60, 0.3);
}
.c-stat-card:hover .player-img {
  transform: scale(1.1);
}

.c-stat-card.rank-1 {
  border-color: rgba(245, 158, 11, 0.5);
  background: linear-gradient(to bottom, rgba(245, 158, 11, 0.05), rgba(255, 255, 255, 0.05));
  box-shadow: 0 20px 50px rgba(245, 158, 11, 0.15);
}
.c-stat-card.rank-1 .c-stat-card__visual {
  width: 10rem;
  height: 10rem;
  border-color: #f59e0b;
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
}
.c-stat-card.rank-1 .c-stat-card__badge {
  background: #f59e0b;
  color: black;
  font-size: 1.25rem;
  padding: 0.25rem 1.5rem;
}
.c-stat-card.rank-1 .c-stat-card__value {
  font-size: 5rem;
  color: #f59e0b;
  text-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.c-stat-card.rank-2 {
  border-color: rgba(148, 163, 184, 0.5);
}
.c-stat-card.rank-2 .c-stat-card__visual {
  border-color: #94a3b8;
}
.c-stat-card.rank-2 .c-stat-card__badge {
  background: #94a3b8;
  color: black;
}
.c-stat-card.rank-2 .c-stat-card__value {
  color: #94a3b8;
}

.c-stat-card.rank-3 {
  border-color: rgba(180, 83, 9, 0.5);
}
.c-stat-card.rank-3 .c-stat-card__visual {
  border-color: #b45309;
}
.c-stat-card.rank-3 .c-stat-card__badge {
  background: #b45309;
  color: white;
}
.c-stat-card.rank-3 .c-stat-card__value {
  color: #b45309;
}

.c-stat-row {
  display: flex;
  align-items: center;
  background: white;
  border: 1px solid rgba(77, 76, 97, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
}
.c-stat-row:hover {
  border-color: #cd5e3c;
  transform: translateX(5px);
}
.c-stat-row__rank {
  font-family: "JetBrains Mono", monospace;
  font-weight: 900;
  font-style: italic;
  color: rgba(77, 76, 97, 0.3);
  width: 3rem;
  font-size: 1.5rem;
}
.c-stat-row__visual {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  background: #f0f0f0;
  margin-right: 1.5rem;
  flex-shrink: 0;
}
.c-stat-row__visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.c-stat-row__info {
  flex-grow: 1;
}
.c-stat-row__info .name {
  font-weight: bold;
  font-size: 1.1rem;
}
.c-stat-row__info .team {
  font-size: 0.75rem;
  color: rgba(77, 76, 97, 0.6);
  font-family: "JetBrains Mono", monospace;
}
.c-stat-row__value {
  font-family: "JetBrains Mono", monospace;
  font-weight: bold;
  font-size: 1.75rem;
  color: #4d4c61;
  min-width: 4rem;
  text-align: right;
}

@media (max-width: 48em) {
  .c-stat-card__visual {
    width: 6rem;
    height: 6rem;
  }
  .c-stat-card.rank-1 .c-stat-card__visual {
    width: 8rem;
    height: 8rem;
  }
  .c-stat-card__value {
    font-size: 3rem;
  }
  .c-stat-card.rank-1 .c-stat-card__value {
    font-size: 4rem;
  }
  .c-stat-row {
    padding: 0.75rem 1rem;
  }
  .c-stat-row__rank {
    width: 2rem;
    font-size: 1.25rem;
  }
  .c-stat-row__visual {
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 1rem;
  }
  .c-stat-row__value {
    font-size: 1.5rem;
  }
}
.text-shadow-glow {
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

table {
  border-collapse: collapse;
}

th {
  font-weight: normal;
  letter-spacing: 0.05em;
}

.text-green-400 {
  color: #4ade80;
}

.text-red-400 {
  color: #f87171;
}

@media (max-width: 40em) {
  .hidden.sm\:table-cell {
    display: none;
  }
}
@media (max-width: 48em) {
  .hidden.md\:table-cell {
    display: none;
  }
}
@media (max-width: 64em) {
  .hidden.lg\:table-cell {
    display: none;
  }
}
.bg-gradient-to-t {
  background: linear-gradient(to top, var(--tw-gradient-stops));
}

.from-\[\#1a1a2e\] {
  --tw-gradient-from: #1a1a2e;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(26, 26, 46, 0));
}

.via-\[\#1a1a2e\]\/80 {
  --tw-gradient-via: rgba(26, 26, 46, 0.8);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, rgba(26, 26, 46, 0));
}

.to-transparent {
  --tw-gradient-to: transparent;
}/*# sourceMappingURL=style.css.map */