:root {
    --color-primary: #102C5E; /* Fuji Blue */
    --color-accent-red: #ED2024; /* Sun Red */
    --color-accent-gold: #F2BA33; /* Cloud Gold */
    --color-bg: #FAFAFA;
    --color-text: #333333;
    --color-white: #FFFFFF;
    
    --font-heading: 'Shippori Mincho', serif;
    --font-body: 'Noto Sans JP', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: transparent;
    line-height: 1.6;
    overflow-x: clip;
    position: relative;
    width: 100%;
}

/* Background Video */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3; /* Behind everything */
}

/* Video Overlay to make text readable */
.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -2;
    pointer-events: none;
}

/* Background Texture (Washi effect) */
.bg-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease;
    padding: 20px 0;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img, .logo-placeholder:hover {
    transform: scale(1.05);
}

.logo {
    text-decoration: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 500;
    margin-left: 30px;
    font-family: var(--font-heading);
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-accent-red);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-accent-red);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 60px;
}

/* Decorative elements for Hero */
.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 60vh;
    height: 60vh;
    background: radial-gradient(circle, var(--color-accent-gold) 0%, transparent 70%);
    opacity: 0.1;
    z-index: -1;
    animation: float 20s infinite alternate ease-in-out;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 80vh;
    height: 80vh;
    background: radial-gradient(circle, var(--color-accent-red) 0%, transparent 70%);
    opacity: 0.05;
    z-index: -1;
    animation: float 25s infinite alternate-reverse ease-in-out;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5%, 5%) scale(1.1); }
}

.hero-logo-container {
    margin-bottom: 40px;
    opacity: 0;
}

.hero-logo {
    max-width: 300px;
    width: 100%;
    filter: drop-shadow(0 10px 20px rgba(16, 44, 94, 0.1));
}

.hero-catchphrase {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--color-primary);
    line-height: 1.4;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.hero-catchphrase .line {
    display: block;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-subtext {
    font-size: 1.2rem;
    color: #666;
    letter-spacing: 0.1em;
    opacity: 0;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    z-index: 10;
    cursor: pointer;
}

/* Scroll text with pill background for visibility */
.scroll-indicator span {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--color-primary);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 16px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.scroll-indicator:hover span {
    transform: translateY(-3px);
}

/* Mouse Icon */
.scroll-indicator .mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    position: relative;
    background: rgba(16, 44, 94, 0.6);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-accent-gold);
    border-radius: 2px;
    animation: scrollWheel 1.5s cubic-bezier(0.15, 0.41, 0.69, 0.94) infinite;
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 22px; opacity: 0; }
}

/* Sections */
.section {
    padding: 100px 0;
}
/* Ensure non-hero sections have a solid background so the video doesn't bleed through */
.section:not(.hero) {
    background-color: var(--color-bg);
}

.bg-light {
    background-color: var(--color-white);
    position: relative;
}

/* Subtly overlay pattern */
.bg-light::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(var(--color-accent-gold) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.1;
    z-index: 0;
}

.bg-light .container {
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 3.5rem; /* Increased size as requested */
    color: var(--color-primary);
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title span.en {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-accent-red);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 5px;
}

.section-title::after {
    content: '';
    width: 40px;
    height: 3px;
    background-color: var(--color-accent-gold);
    margin-top: 15px;
}

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

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

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

.mb-4 {
    margin-bottom: 40px;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
}

.about-text p {
    margin-bottom: 20px;
}

/* Tournaments */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(16, 44, 94, 0.1);
}

.card-image {
    height: 200px;
    background-color: var(--color-primary);
    position: relative;
    overflow: hidden;
}

.jrl-bg {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e458e 100%);
}

.jrl-bg::after {
    content: 'JRL';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.1);
    font-family: var(--font-heading);
}

.pattern-bg {
    background: repeating-linear-gradient(
        45deg,
        var(--color-primary),
        var(--color-primary) 10px,
        #1e458e 10px,
        #1e458e 20px
    );
}

.card-content {
    padding: 30px;
}

.card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.card .subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #666;
    font-weight: 400;
}

.card p {
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: #555;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--color-accent-red);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.btn:hover {
    background-color: #d1191d;
    box-shadow: 0 5px 15px rgba(237, 32, 36, 0.3);
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 5px 15px rgba(16, 44, 94, 0.2);
}

/* Timeline (Sticky Stacking Layout - Seamless) */
.section.bg-dark {
    background-color: #000c24;
    color: var(--color-white);
}

.text-white {
    color: var(--color-white) !important;
}

#tournaments .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.tournaments-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Featured League (JRL) */
.featured-league {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: #050b14;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.featured-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.featured-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.featured-overlay {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.featured-content {
    position: relative;
    z-index: 1;
    padding: 60px;
    width: 60%;
}

.featured-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(229, 192, 123, 0.2);
    color: var(--color-accent-gold);
    border: 1px solid var(--color-accent-gold);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.featured-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--color-white);
    margin: 0 0 20px 0;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.featured-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.featured-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

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

.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-accent-red);
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.1em;
    margin-top: 5px;
    font-weight: 700;
}

/* Special Events */
.special-events-section {
    margin-top: 20px;
}

.special-events-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.special-events-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--color-accent-gold);
}

.special-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.special-event-card {
    background: #0a1222;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.special-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border-color: rgba(229, 192, 123, 0.4);
}

.event-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    background: #050b14;
}

.event-image img, .placeholder-bg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 30px;
    box-sizing: border-box;
    transition: transform 0.5s ease;
}

.placeholder-bg {
    background: linear-gradient(45deg, #1A0A2E, #2a164a);
}

.special-event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-status {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
    align-self: flex-start;
}

.event-status.upcoming {
    background: rgba(229, 192, 123, 0.2);
    color: var(--color-accent-gold);
}

.event-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-white);
    margin: 0 0 15px 0;
}

.event-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    flex-grow: 1;
}

.event-link-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-accent-gold);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.special-event-card:hover .event-link-text {
    gap: 10px;
}

/* Responsive adjustments for Tournaments */
@media (max-width: 992px) {
    .featured-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .featured-content {
        padding: 40px 20px;
    }
    
    .featured-stats {
        gap: 20px;
    }
    
    .stat-item .stat-number {
        font-size: 2.5rem;
    }
}

/* Academy Redesign: Stadium & Cyber Circles */

/* Apply the stadium background to the entire academy card */
.academy-card {
    background-image: url('assets/stadium-bg.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    color: #fff !important;
}

/* Darken the stadium slightly so the cyan glows pop out */
.academy-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 10, 25, 0.4);
    z-index: 0;
}

.academy-card .container {
    position: relative;
    z-index: 1;
    max-width: none; /* Let it scale fully with the 100vw card to track background features */
    width: 100%;
    /* removed fixed height: 100%; so content determines height and prevents collapse */
    display: flex;
    flex-direction: column;
}

.academy-card .section-title {
    color: #fff !important; /* Make title white */
    text-align: center;
    margin-bottom: 20px;
}

.academy-overview {
    font-size: 1.1vw; /* Responsive font size */
    line-height: 1.8;
    text-align: center;
    max-width: 50vw;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
}

.academy-action {
    text-align: center;
    margin-bottom: 2vh;
}

.academy-action .btn {
    font-size: 1.2vw;
    padding: 1.5vh 3vw;
    border: 2px solid var(--color-white);
    background-color: transparent;
    color: var(--color-white);
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.academy-action .btn:hover {
    background-color: var(--color-white);
    color: #000c24;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Glowing Circles Wrapper */
.academy-circles-wrapper {
    display: flex;
    justify-content: center;
    gap: 2vw;
    flex-wrap: wrap;
    margin-top: auto; /* Push circles to the bottom (the field) */
    margin-bottom: 2vh;
}

.circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 18vw; /* Adjust based on text length */
}

.circle-glow {
    width: 16vw;
    height: 16vw;
    border-radius: 50%;
    background-color: #00f0ff; /* Cyan */
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.6), inset 0 0 15px rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2vw;
    text-align: center;
    transition: transform 0.3s ease;
    margin-bottom: 1.5vh;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 30px rgba(0, 240, 255, 0.6), inset 0 0 15px rgba(255, 255, 255, 0.5); }
    50% { box-shadow: 0 0 80px rgba(0, 240, 255, 1), inset 0 0 30px rgba(255, 255, 255, 0.9); }
    100% { box-shadow: 0 0 30px rgba(0, 240, 255, 0.6), inset 0 0 15px rgba(255, 255, 255, 0.5); }
}

/* sequential pulse applied after landing */
.circle-item.landed:nth-child(1) .circle-glow { animation: pulseGlow 4s infinite 0s; }
.circle-item.landed:nth-child(2) .circle-glow { animation: pulseGlow 4s infinite 1s; }
.circle-item.landed:nth-child(3) .circle-glow { animation: pulseGlow 4s infinite 2s; }
.circle-item.landed:nth-child(4) .circle-glow { animation: pulseGlow 4s infinite 3s; }

.circle-glow:hover {
    transform: scale(1.05);
    /* Box shadow is controlled by animation, so we only scale on hover */
}

.circle-text {
    color: #000; /* Black text for high contrast on cyan */
    font-weight: 700;
    font-size: 0.85vw; /* Responsive font size */
    line-height: 1.6;
}

.circle-title {
    text-align: center;
    margin-bottom: 2vh; /* Add space between the title above and the circle below */
}

.circle-title h4 {
    font-family: var(--font-heading);
    font-size: 1.4vw; /* Slightly larger */
    color: #ffffff; /* Make it pure white to stand out */
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8), 0 0 20px #00f0ff; /* Strong shadow to pop against the background */
}

.feature-num {
    color: var(--color-accent-red);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    display: block;
    margin-bottom: 5px;
}

/* Academy Mobile Responsiveness */
@media (max-width: 768px) {
    .academy-card {
        padding: 60px 20px 40px !important; /* Reset padding for mobile */
    }

    .academy-overview {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .academy-action .btn {
        font-size: 1rem;
        padding: 12px 30px;
        border-width: 1px;
    }

    .academy-circles-wrapper {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
        padding-bottom: 30px; /* Space for scrollbar */
        width: 100%;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    /* Hide scrollbar for a cleaner look while still allowing swipe */
    .academy-circles-wrapper::-webkit-scrollbar {
        display: none;
    }
    .academy-circles-wrapper {
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }

    .circle-item {
        width: auto;
        flex: 0 0 auto;
        margin-bottom: 0;
        scroll-snap-align: start;
    }

    .circle-glow {
        width: 220px;
        height: 220px;
        max-width: none;
        max-height: none;
        padding: 20px;
    }

    .circle-title h4 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .circle-text {
        font-size: 0.95rem;
    }
}

/* Global Support Layout */
.global-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.global-text {
    flex: 1;
}

.global-heading {
    font-size: 2rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.global-subheading {
    display: block;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-accent-red);
    margin-top: 5px;
}

.global-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.global-image {
    flex: 1;
}

.global-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .global-layout {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

/* Streamers */
.streamers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.streamer-card {
    background: #111;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: block;
    text-decoration: none;
}

.streamer-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent-gold);
    box-shadow: 0 15px 40px rgba(229, 192, 123, 0.2);
}

.streamer-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #222;
    position: relative;
}

.streamer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.streamer-content {
    padding: 20px;
    background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
}

.streamer-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-white);
    margin: 0;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Sponsors */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.sponsor-item {
    background: var(--color-white);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #999;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
    transition: filter 0.3s ease, transform 0.3s ease;
    filter: grayscale(100%) opacity(0.7);
}

.sponsor-item:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

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

.copyright {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-catchphrase { font-size: 2.5rem; }
    .nav-links { display: none; }
    .section { padding: 60px 0; }
    .hero { padding-top: 40px; }
    .section-title { font-size: 2.2rem; margin-bottom: 40px; }
    .team-title { font-size: 1.5rem; margin-bottom: 30px; }
}

/* --- Asian Tournament Page Styles --- */
.team-section {
    margin-top: 60px;
}

.team-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.team-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-accent-gold);
}

.japan-team .team-title { color: #d90000; }
.japan-team .team-title::after { background-color: #d90000; }
.korea-team .team-title { color: #003478; }
.korea-team .team-title::after { background-color: #003478; }

.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    margin-bottom: 80px;
}

.player-card {
    background: #111;
    color: #fff;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.player-card:hover {
    transform: translateY(-5px) scale(1.03);
    border-color: var(--color-accent-gold);
    box-shadow: 0 10px 20px rgba(242, 186, 51, 0.15);
}

.player-card.captain {
    border: 1px solid var(--color-accent-gold);
}

.player-card.captain::before {
    content: 'C';
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--color-accent-gold);
    color: #000;
    font-size: 0.8rem;
    font-weight: 800;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.player-image {
    height: 120px;
    background: linear-gradient(135deg, #222 0%, #050505 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Stylized NoImage background for teams (Dark mode) */
.japan-team .player-image {
    background: linear-gradient(135deg, #3a0505 0%, #110000 100%);
}
.korea-team .player-image {
    background: linear-gradient(135deg, #05153a 0%, #000211 100%);
}

.player-image svg {
    width: 45px;
    height: 45px;
    fill: #ffffff;
    opacity: 0.15;
}

.player-info {
    padding: 12px 10px;
    background: #111;
}

.player-name {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-role {
    font-size: 0.7rem;
    color: var(--color-accent-gold);
    font-weight: bold;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
