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

img {
    max-width: 100%;
    width: 100%;
}

body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    color: #fff;
    background-color: #000;
    overflow: hidden;
    font-size: 100%;
}

.container {
    display: flex;
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.sp-only {
    display: flex;
}

.pc-only {
    display: none;
}


/* ========================
   ハンバーガーメニュー制御
======================== */
.menu-checkbox {
    display: none;
}

.hamburger-icon {
    display: block;
    position: fixed;
    top: 30px;
    right: 15px;
    width: 25px;
    height: 18px;
    z-index: 10000;
    cursor: pointer;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: transform 0.3s, opacity 0.3s;
    border-radius: 2px;
}

.hamburger-icon span:nth-child(1) {
    top: 0;
}

.hamburger-icon span:nth-child(2) {
    top: 8px;
}

.hamburger-icon span:nth-child(3) {
    bottom: 0;
}

.menu-checkbox:checked~.hamburger-icon span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-checkbox:checked~.hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.menu-checkbox:checked~.hamburger-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    cursor: pointer;
}

.menu-checkbox:checked~.menu-overlay {
    display: block;
}

/* ========================
   左カラム（PC用固定）
======================== */
.left-col {
    background-image: url('../img/l-column-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
}

/* パネル全体 */
.hud-panel {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: linear-gradient(135deg, rgba(20, 0, 0, 0.8), rgba(0, 0, 0, 0.9));
    border: 1px solid rgba(255, 0, 85, 0.3);
    border-left: 4px solid #ff0055;
    padding: 40px;
    box-shadow: 0 0 30px rgba(255, 0, 85, 0.15), inset 0 0 20px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hud-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
}

.hud-corner.top-left {
    top: -1px;
    left: -4px;
    border-right: none;
    border-bottom: none;
    box-shadow: -5px -5px 15px #ff0055;
}

.hud-corner.bottom-right {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
    box-shadow: 5px 5px 15px #ff0055;
}

.hud-header {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #000;
    padding: 0 15px;
    color: #ff0055;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 3px;
    border: 1px solid rgba(255, 0, 85, 0.5);
}

.hud-matchup {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    margin-bottom: 35px;
}

.team-name {
    font-family: "JetBrains Mono", "Arial Black", "Noto Sans JP", sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    font-style: italic;
    white-space: nowrap;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 5px 0;
}

.team-home {
    background: linear-gradient(to bottom, #ffffff 0%, #ff0055 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(4px 4px 0px #5a001a) drop-shadow(0 0 20px rgba(255, 0, 85, 0.4));
	word-spacing: -1rem;
}

.team-away {
    background: linear-gradient(to bottom, #ffffff 0%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(4px 4px 0px #005555) drop-shadow(0 0 20px rgba(0, 255, 255, 0.4));
}

.vs-badge {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    margin: 15px 0;
    font-family: "Anonymous Pro", monospace;
    font-size: 1.6rem;
    font-weight: 900;
    font-style: italic;
    color: #fff;
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
    z-index: 2;
    background: transparent;
    padding: 0;
    border: none;
    transform: none;
    box-shadow: none;
}

.vs-badge::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: rgba(0, 20, 30, 0.9);
    border: 2px solid #00ffff;
    transform: rotate(45deg);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3), inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.vs-badge::after {
    content: "";
    position: absolute;
    z-index: -2;
    width: 85px;
    height: 85px;
    border: 2px solid transparent;
    border-top: 2px solid rgba(0, 255, 255, 0.8);
    border-bottom: 2px solid rgba(0, 255, 255, 0.8);
    border-radius: 50%;
    animation: radar-spin 4s linear infinite;
}

@keyframes radar-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hud-countdown {
    text-align: center;
    width: 110%;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    background: linear-gradient(90deg, transparent, rgba(255, 0, 85, 0.1), transparent);
    padding: 20px 0;
    margin-bottom: 40px;
}

.cd-label {
    color: #ff0055;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.9rem;
    letter-spacing: 4px;
    margin-bottom: 5px;
}

.cd-timer {
    font-size: 1.2rem;
    color: #ccc;
    font-family: "JetBrains Mono", monospace;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
}

.cd-timer span {
    font-size: 4.5rem;
    color: #fff;
    font-weight: 800;
    text-shadow: 0 0 10px #fff, 0 0 25px #ff0055;
    line-height: 0.9;
}

.cyber-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-family: "IBM Plex Mono", monospace;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-decoration: none;
    border: 1px solid #ff0055;
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.2), inset 0 0 10px rgba(255, 0, 85, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.cyber-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50px;
    width: 20px;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    transform: skewX(-20deg);
    transition: all 0.5s ease;
    filter: blur(2px);
}

.cyber-btn:hover {
    background: rgba(255, 0, 85, 0.2);
    box-shadow: 0 0 25px rgba(255, 0, 85, 0.6), inset 0 0 20px rgba(255, 0, 85, 0.4);
    text-shadow: 0 0 10px #fff;
}

.cyber-btn:hover::before {
    left: 120%;
}

.live-icon {
    color: #ff0055;
    margin-right: 10px;
    animation: pulse-red 1s infinite;
    letter-spacing: -2px;
}

/* ========================
   中央カラム（メイン）
======================== */
.center-logo {
    width: 10%;
    margin: 0 auto;
}

.center-col {
    flex: 1;
    background-color: #212121;
    display: flex;
    flex-direction: column;
    width: 100vw;
    min-width: 0;
    position: relative;
}

.center-header {
    padding: 1rem 0 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    z-index: 10;
    position: relative;
    border-bottom: 1px solid #333;
}

.center-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    position: relative;
    z-index: 1;
    scrollbar-width: none;
}

/* ========================
   背景アニメーション用スタイル（中央カラム限定版）
======================== */
.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.animated-background canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.center-content::-webkit-scrollbar {
    width: 4px;
}

.center-content::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 2px;
}

.center-main-visual {
    height: calc(100vh - 50px);
    background-image: url('../img/c-main-bg.png');
    background-size: cover;
    background-position: center;
    background-color: #212121;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================
   セクション共通
======================== */
.sp-section {
    padding: 30px 15px;
}

.sec-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 46px;
    font-style: italic;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-family: "IBM Plex Mono", monospace;
}

.sec-title::before,
.sec-title::after {
    content: "";
    flex: 1;
    height: 4px;
    background-color: #fff;
    margin: 0 10px;
}

.btn-primary {
    display: block;
    width: 140px;
    margin: 20px auto 0;
    padding: 8px 0;
    background-color: #8D0000;
    color: #fff;
    border: 2px solid #111;
    box-shadow: 0 3px 0 #111;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    border-radius: 12px;
}

/* --- ABOUT & NEWS --- */
.sec-about {
    background-color: #8D0000;
}

.about-box {
    background-color: rgba(255, 255, 255, 0.8);
    color: #212121;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #212121;
}

.about-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.about-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-divider {
    border: none;
    border-top: 1px solid #212121;
    margin: 15px 0;
}

.about-news-list {
    list-style: none;
}

.about-news-list li {
    font-size: 14px;
    font-weight: bold;
    padding: 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #eee;
}

.news-date {
    color: #a31515;
    font-weight: bold;
}

/* --- PLAYERS --- */

.sec-players .sec-title::before,
.sec-players .sec-title::after {
    background-color: #8D0000;
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.player-card {
    background-color: #a31515;
    border: 1px solid #111;
    display: flex;
    flex-direction: column;
}

.player-img-ph {
    background-color: #ddd;
    color: #999;
    aspect-ratio: 3 / 4;
    height: 350px;
    justify-content: center;
    font-size: 12px;
}

.player-img-ph img {
	height: 100%;
	display: block;
	object-fit: cover;
/* 	object-position: top; */
}

.player-info {
    padding: 10px;
    text-align: center;
    color: #fff;
}

.player-num {
    color: #AA8532;
    font-family: "JetBrains Mono", monospace;
    font-size: 4rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 5px;
    letter-spacing: -4px;
}

.player-name {
    font-family: "IBM Plex Mono", monospace;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.2;
    padding: 16px 0;
}

.player-name span {
    font-family: "IBM Plex Mono", monospace;
    font-size: 1rem;
    font-weight: 300;
    color: #AA8532;
}

.player-icon {
    margin-top: 5px;
    width: 30px;
    margin: 0 auto;
}

.more-card {
    background-color: #999;
    color: #111;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
}

.main-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.player-icon a {
    position: relative;
    z-index: 2;
    display: block;
}

/* --- GOODS --- */
.sec-goods {
    width: 100%;
    overflow: hidden;
}

.sec-goods .sec-title::before,
.sec-goods .sec-title::after {
    background-color: #8D0000;
}

.goods-swiper {
    width: 100%;
    padding-bottom: 35px;
}

.goods-swiper .swiper-slide {
    height: auto;
}

.good-item {
    background-color: #fff;
    color: #111;
    padding: 10px;
    border-radius: 4px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.good-img-ph {
    width: 100%;
    aspect-ratio: 1 / 1; 
    overflow: hidden;
    position: relative;
	padding: 1rem;
}

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

.good-name {
    font-size: 11px;
    font-weight: bold;
}

.good-price {
    font-size: 10px;
    margin-bottom: 8px;
}

.btn-buy {
    display: block;
    background-color: #000;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 10px;
    padding: 6px 0;
    border-radius: 10px;
    margin-top: auto;
}

/* Swiperドット */
.goods-swiper {
    width: 100%;
    padding-bottom: 50px !important;
    overflow: visible !important;
}

.goods-swiper .swiper-slide {
    height: auto;
}

.goods-swiper .swiper-pagination {
    bottom: 10px !important;
}

.goods-swiper .swiper-pagination-bullet {
    background-color: #fff;
    opacity: 0.5;
}

.goods-swiper .swiper-pagination-bullet-active {
    background-color: #ff0055;
    opacity: 1;
}

/* --- BANNER & FOOTER --- */
.sp-banner {
    border-top: 2px solid #111;
}

.sp-footer {
    padding: 40px 15px 80px;
    text-align: center;
}

.sp-footer h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.sp-footer p {
    font-size: 8px;
    color: #777;
}

/* ========================
   右カラム（ドロワーメニュー）
======================== */
.right-col {
    background-image: url('../img/r-column-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    padding-top: 100px;
    padding-bottom: 80px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    background-color: rgba(10, 10, 10, 0.85);
    background-blend-mode: overlay;
    border-left: 2px solid #8D0000;
    overflow-y: auto;
}

.right-col::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../img/logo-01.svg') center 40px / 80% auto no-repeat;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.right-col>* {
    position: relative;
    z-index: 1;
}

.menu-checkbox:checked~.right-col {
    right: 0;
}

/* --- サイバーメニューボタン --- */
.menu-btn {
    width: 85%;
    padding: 15px 20px;
    margin-bottom: 12px;
    background: linear-gradient(90deg, rgba(255, 0, 85, 0.1), transparent);
    color: #fff;
    text-align: left;
    text-decoration: none;
    font-family: "IBM Plex Mono", monospace;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    border: 1px solid rgba(255, 0, 85, 0.3);
    border-left: 4px solid #ff0055;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
    transition: all 0.2s ease;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.menu-btn:hover,
.menu-btn:active {
    background: linear-gradient(90deg, rgba(255, 0, 85, 0.3), rgba(255, 0, 85, 0.05));
    border-left: 4px solid #fff;
    box-shadow: inset 0 0 15px rgba(255, 0, 85, 0.5);
    text-shadow: 0 0 8px #fff;
    transform: translateX(-5px);
}

.menu-btn-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.menu-btn .material-symbols-outlined {
    font-size: 1.2em;
    margin-left: auto;
    color: rgba(255, 255, 255, 0.5);
}

.news-section {
    width: 85%;
    margin-top: 30px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 25px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid #8D0000;
    box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.8);
    position: relative;
}

.news-section::after {
    content: "";
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 15px;
    height: 15px;
    border-bottom: 2px solid #ff0055;
    border-right: 2px solid #ff0055;
}

.news-title {
    font-size: 1.2rem;
    font-family: "JetBrains Mono", monospace;
    font-weight: 800;
    color: #ff0055;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.news-title::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #00ffff;
    margin-right: 10px;
    box-shadow: 0 0 8px #00ffff;
    animation: pulse-green 2s infinite;
}

.news-list {
    list-style: none;
}

.news-item {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: background-color 0.2s ease;
}

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

.news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-item:first-child {
    padding-top: 0;
}

.right-col .news-date {
    color: #AA8532;
    font-family: "JetBrains Mono", monospace;
    font-weight: bold;
    font-size: 0.85rem;
}

.news-text {
    font-size: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========================
   スマホ時：下部固定追従バー
======================== */
.sp-floating-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.95), rgba(30, 0, 0, 0.85));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 990;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 20px 25px;
    border-top: 2px solid #ff0055;
    box-shadow: 0 -5px 25px rgba(255, 0, 85, 0.3);
    transform-origin: bottom center;
    transition:
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.6s ease,
        filter 0.6s ease;
    opacity: 1;
    filter: blur(0);
}

.sp-floating-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #fff;
    box-shadow: 0 0 10px #fff, 0 0 20px #ff0055;
}

.sp-floating-bar.is-hidden {
    transform: translateY(120%) scale(0.95);
    opacity: 0;
    filter: blur(5px);
    pointer-events: none;
}


.sp-float-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 8px;
}

.sp-float-logos {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    gap: 12px;
}

.logo-item-sm {
    display: flex;
}

.sp-float-logos .logo-item-sm:nth-child(1) {
    justify-content: flex-end;
}

.sp-float-logos .logo-item-sm:nth-child(3) {
    justify-content: flex-start;
}

.logo-item-sm span {
    font-family: "JetBrains Mono", "Arial Black", "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 1px;
    white-space: nowrap;
    text-transform: uppercase;
}

.sp-float-logos .logo-item-sm:nth-child(1) span {
    background: linear-gradient(to bottom, #ffffff 0%, #ff0055 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 2px 0px #5a001a) drop-shadow(0 0 10px rgba(255, 0, 85, 0.4));
	word-spacing: -0.5rem;
}

.sp-float-logos .logo-item-sm:nth-child(3) span {
    background: linear-gradient(to bottom, #ffffff 0%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 2px 0px #005555) drop-shadow(0 0 10px rgba(0, 255, 255, 0.4));
}

.vs-text-sm {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    margin: 0 20px;
    font-family: "Anonymous Pro", monospace;
    font-size: 0.75rem;
    font-weight: 900;
    font-style: italic;
    color: #fff;
    text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff;
    z-index: 2;
    background: transparent;
    padding: 0;
    border: none;
    transform: none;
    box-shadow: none;
    justify-self: center;
}

.vs-text-sm::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: rgba(0, 20, 30, 0.9);
    border: 1px solid #00ffff;
    transform: rotate(45deg);
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(0, 255, 255, 0.3);
}

.vs-text-sm::after {
    content: "";
    position: absolute;
    z-index: -2;
    width: 40px;
    height: 40px;
    border: 1px solid transparent;
    border-top: 1px solid rgba(0, 255, 255, 0.8);
    border-bottom: 1px solid rgba(0, 255, 255, 0.8);
    border-radius: 50%;
    animation: radar-spin 4s linear infinite;
}

.sp-float-info {
    display: flex;
    justify-content: center;
    width: 100%;
}

.countdown-sm {
    display: flex;
    justify-content: center;
    align-items: baseline;
    background: transparent;
    border: none;
    padding: 0;
    gap: 8px;
}

.countdown-sm::before {
    content: "KICKOFFIN";
    display: block;
    color: #ff0055;
    font-family: "JetBrains Mono", monospace;
    font-size: 14px;
    letter-spacing: 2px;
    margin-right: 10px;
}

.countdown-sm span {
    font-family: "JetBrains Mono", monospace;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 8px #fff, 0 0 15px #ff0055;
    line-height: 1;
    margin: 0;
}

.sp-float-bottom {
    width: 100%;
    display: flex;
    justify-content: center;
}

.sp-floating-bar .live-btn-wrapper {
    width: 100%;
    max-width: none;
    transform: none;
    padding: 0;
    background: none;
    box-shadow: none;
    border-radius: 0;
}

.sp-floating-bar .live-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-family: "IBM Plex Mono", monospace;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-decoration: none;
    border: 1px solid #ff0055;
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.3), inset 0 0 10px rgba(255, 0, 85, 0.2);
    border-radius: 0;
    transform: none;
    overflow: hidden;
    transition: transform 0.1s;
}

.sp-floating-bar .live-btn:active {
    transform: scale(0.98);
}

.sp-floating-bar .live-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -60px;
    width: 30px;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transform: skewX(-20deg);
    animation: cyber-sweep 3.5s infinite ease-in-out;
    filter: blur(3px);
}

.sp-floating-bar .live-btn-inner {
    transform: none;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-left: 0;
}

.sp-floating-bar .live-btn-inner span[style*="color"] {
    display: inline-block;
    animation: pulse-red 1s infinite;
    letter-spacing: -2px;
    font-size: 1.2em;
}

/* ========================
   PLAYERS 一覧ページ専用スタイル
======================== */

.page-players .sec-title::before,
.page-players .sec-title::after {
    background-color: #8D0000;
}

.player-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    background-color: #333;
    color: #fff;
    border: 2px solid #111;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: bold;
    font-family: "IBM Plex Mono", monospace;
    cursor: pointer;
    box-shadow: 0 3px 0 #111;
    transition: all 0.2s ease;
}

.filter-btn.active {
    background-color: #8D0000;
    color: #fff;
}

.filter-btn:active {
    transform: translateY(3px);
    box-shadow: 0 0 0 #111;
}

.position-group {
    margin-bottom: 50px;
}

.position-title {
    font-size: 1.5rem;
    font-family: "IBM Plex Mono", monospace;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.position-title::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 1.2em;
    background-color: #8D0000;
    border-radius: 2px;
}

.member-category {
    margin-bottom: 30px;
}

.member-category-title {
    font-size: 0.9rem;
    font-family: "IBM Plex Mono", monospace;
    font-weight: bold;
    color: #ccc;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.player-card {
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-width: 0;
    overflow: hidden;
}

@media (hover: hover) {
    .player-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
    }
}

.main-link {
    color: inherit;
    text-decoration: none;
}

.main-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.player-icon a {
    position: relative;
    z-index: 2;
    display: block;
}

.member-category {
    margin-bottom: 30px;
}

.member-category-title {
    font-size: 0.9rem;
    font-family: "IBM Plex Mono", monospace;
    font-weight: bold;
    color: #ccc;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

/* ========================
   選手詳細専用スタイル（スマホベース）
======================== */
.sec-player-detail {
    padding: 50px 0;
    background-color: #111;
    width: 100%;
}

.sec-player-detail .sec-title::before,
.sec-player-detail .sec-title::after {
    background-color: #8D0000;
}

.detail-player-image {
    width: 100%;
    background-color: #222;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

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

.detail-player-status {
    background-color: #9C1818;
}

.detail-header {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px 30px 15px;
}

.detail-num-box {
    display: flex;
    align-items: flex-end;
    font-family: "JetBrains Mono", monospace;
    line-height: 0.9;
}

.detail-pos {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    margin-right: 4px;
    padding-bottom: 4px;
}

.detail-num {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -2px;
}

.detail-name-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.detail-name-ja {
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
}

.detail-name-en {
    font-size: 0.8rem;
    font-family: "IBM Plex Mono", monospace;
    color: #ccc;
    letter-spacing: 1px;
}

.detail-info-block {
    margin-bottom: 30px;
    padding: 15px 30px 15px;
}

.detail-sec-title {
    font-family: "IBM Plex Mono", monospace;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
}

.detail-sec-title::after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background-color: #AA8532;
    margin-top: 15px;
}

.profile-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.profile-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-table tr:last-child {
    border-bottom: none;
}

.profile-table th {
    text-align: left;
    padding: 10px 0;
    color: #ddd;
    font-weight: bold;
    width: 35%;
}

.profile-table td {
    padding: 10px 0;
    color: #fff;
}

.comment-block {
    background-color: #4a0000;
}

.comment-block .detail-sec-title {
    padding: 50px 30px 0;
}

.comment-text {
    padding: 0 30px 50px;
    border-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #eee;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.detail-back-box {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.btn-back {
    display: inline-block;
    background-color: #9C1818;
    color: #fff;
    border: 2px solid #111;
    box-shadow: 0 4px 0 #111;
    padding: 12px 40px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    border-radius: 6px;
    transition: all 0.2s;
}

.btn-back:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 #111;
}

/* ========================
   NEWS 一覧ページ専用スタイル
======================== */
.page-news {
    padding: 30px 20px;
}

.news-page-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-style: italic;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: "IBM Plex Mono", monospace;
    color: #fff;
    margin-bottom: 30px;
}

.news-page-title::before,
.news-page-title::after {
    content: "";
    flex: 1;
    height: 4px;
    background-color: #8D0000;
    margin: 0 15px;
}

.news-archive-list {
    display: flex;
    flex-direction: column;
}

.news-archive-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.news-archive-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.news-thumb {
    width: 110px;
    flex-shrink: 0;
    aspect-ratio: 16 / 9;
    background-color: #333;
    overflow: hidden;
    border-radius: 2px;
}

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

.news-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.news-info .news-date {
    font-family: "JetBrains Mono", monospace;
    font-weight: bold;
    color: #AA8532;
    font-size: 0.85rem;
}

.news-title-text {
    font-size: 0.95rem;
    font-weight: bold;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #fff;
    color: #8D0000;
    font-weight: bold;
    font-family: "JetBrains Mono", monospace;
    text-decoration: none;
    font-size: 0.95rem;
    border-radius: 2px;
    transition: all 0.2s;
}

.page-numbers.current {
    background-color: #8D0000;
    color: #fff;
}

.page-numbers:not(.current):hover {
    background-color: #eee;
}

/* ========================
   NEWS 詳細ページ専用スタイル
======================== */
.page-news-detail {
    padding: 30px 20px 50px;
}

.news-detail-content {
    color: #fff;
}

.news-detail-content .news-date {
    font-family: "JetBrains Mono", monospace;
    font-weight: bold;
    color: #AA8532;
    font-size: 1rem;
    margin-bottom: 10px;
}

.news-detail-title {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 25px;
}

.news-detail-visual {
    width: 100%;
    margin-bottom: 25px;
    border-radius: 2px;
    overflow: hidden;
}

.news-detail-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.news-detail-lead {
    color: #AA8532;
    font-weight: bold;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-detail-body {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #ccc;
}

.news-detail-body p {
    margin-bottom: 1.5em;
}

.news-back-box {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

/* ========================
   PC等の広い画面用 (768px以上) スケールアップ
======================== */
@media (min-width: 769px) {
    .sp-only {
        display: none !important;
    }

    .pc-only {
        display: flex !important;
    }

    .hamburger-icon {
        display: none !important;
    }

    .center-col {
        flex: 1.2;
        width: auto;
    }

    .left-col {
        flex: 1;
        padding: 40px 20px;
    }


    .right-col {
        background-image: url('../img/r-column-bg.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        right: auto;
        width: auto;
        max-width: none;
        height: auto;
        z-index: 1;
        padding: 40px 20px;
        justify-content: center;
        box-shadow: none;
        flex: 1;
    }

    .logos {
        gap: 25px;
    }

    .logo-item {
        border-radius: 0;
        padding: 40px 20px;
    }

    .logo-item::before,
    .logo-item::after {
        width: 60px;
        height: 3px;
    }

    .logo-item span {
        font-size: 2rem;
    }

    .vs-text {
        font-size: 3rem;
    }

    .countdown {
        font-size: 1.5rem;
        padding: 15px 30px;
        margin-bottom: 35px;
    }

    .countdown::before {
        width: 10px;
        height: 10px;
        margin-right: 10px;
    }

    .countdown span {
        font-size: 4.5rem;
    }

    .live-btn {
        padding: 16px 40px;
        font-size: 1.6rem;
    }

    .live-btn-inner {
        gap: 12px;
    }

    .sec-title {
        font-size: 4rem;
        margin-bottom: 30px;
    }

    .btn-primary {
        width: 220px;
        padding: 14px 0;
        font-size: 1.125rem;
        margin-top: 30px;
    }

    .about-box {
        padding: 40px;
    }

    .about-title {
        font-family: "IBM Plex Mono", monospace;
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 8px;
		word-spacing: -1rem;
    }

    .about-desc {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 25px;
    }

    .about-news-list li {
        font-size: 1rem;
    }

    .players-grid {
        gap: 20px;
    }

    .player-info {
        padding: 15px;
    }

    .player-num {
        font-size: 6rem;
    }

    .player-name {
        font-size: 1.3rem;
    }

    .player-name span {
        font-size: 1rem;
    }

    .more-card {
        font-size: 3rem;
    }

    .good-item {
        padding: 15px;
    }

    .good-name {
        font-size: 1.125rem;
        margin-bottom: 5px;
    }

    .good-price {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .btn-buy {
        font-size: 1rem;
        padding: 10px 0;
    }

    .sp-footer {
        padding: 60px 20px;
    }

    .sp-footer h2 {
        font-size: 1.5rem;
    }

    .sp-footer p {
        font-size: 0.85rem;
    }

    .menu-btn {
        font-size: 1.25rem;
        font-weight: bold;
        padding: 20px;
        margin-bottom: 15px;
        font-family: "Anonymous Pro", monospace;
    }

    .news-title {
        font-size: 1.5rem;
        font-family: "Anonymous Pro", monospace;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .news-item {
        flex-direction: row;
        gap: 15px;
        font-size: 1rem;
        font-family: "Anonymous Pro", monospace;
        padding: 20px 0;
    }

    .player-filter {
        gap: 15px;
        margin-bottom: 50px;
    }

    .filter-btn {
        padding: 12px 24px;
        font-size: 1.2rem;
    }

    .position-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .position-title::before {
        width: 8px;
    }

    .member-category {
        margin-bottom: 40px;
    }

    .member-category-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .member-category {
        margin-bottom: 40px;
    }

    .member-category-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .sec-player-detail {
        max-width: 800px;
        margin: 0 auto;
    }


    .detail-num {
        font-size: 5rem;
    }

    .detail-name-ja {
        font-size: 2.2rem;
    }

    .detail-sec-title {
        font-size: 1.4rem;
    }

    .profile-table,
    .comment-text {
        font-size: 1.1rem;
    }

    .news-page-title {
        font-size: 3.5rem;
        margin-bottom: 40px;
    }

    .news-archive-item {
        gap: 25px;
        padding: 30px 10px;
    }

    .news-thumb {
        width: 220px;
    }

    .news-info .news-date {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .news-title-text {
        font-size: 1.2rem;
    }

    .pagination {
        gap: 12px;
        margin-top: 60px;
    }

    .page-numbers {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .page-news-detail {
        max-width: 800px;
        margin: 0 auto;
        padding: 50px 40px;
    }

    .news-detail-title {
        font-size: 2.2rem;
        margin-bottom: 35px;
    }

    .news-detail-lead {
        font-size: 1.2rem;
    }

    .news-detail-body {
        font-size: 1.1rem;
    }

    .news-back-box {
        margin-top: 70px;
    }

}

/* =======================================
   全試合終了後パネル（EVENT CONCLUDED）
   ======================================= */
/* パネル全体のトーンを少し落として「終了感」を出す */
.finished-panel {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(10, 10, 10, 0.8);
}

.finished-panel .hud-header {
    color: #888; /* ヘッダー文字色も少し落ち着かせる */
}

/* メッセージエリアのサイバー装飾 */
.finished-panel .hud-message {
    text-align: center;
    padding: 40px 10px;
    margin: 15px 0;
    /* 背景にうっすらと斜めの警告線ストライプを入れる */
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.02) 10px,
        rgba(255, 255, 255, 0.02) 20px
    );
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.finished-panel .msg-main {
    font-size: 1.15em;
    font-weight: bold;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: 0.1em;
    /* ぼんやりと白く発光させる */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.finished-panel .msg-sub {
    font-size: 0.85em;
    color: #999;
    letter-spacing: 0.05em;
}

/* ボタンのアレンジ（ライブ中ではないので、少し落ち着いた白系のボタンに） */
.finished-panel .btn-finished {
    border-color: rgba(255, 255, 255, 0.3);
    color: #ddd;
}
.finished-panel .btn-finished:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.8);
}