@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&family=ZCOOL+KuaiLe&display=swap');

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

:root {
    --deep-blue: #0a1628;
    --bright-blue: #00d4ff;
    --orange: #ff6b35;
    --dark-bg: #0d1b2a;
    --card-bg: #1b2838;
    --text-primary: #e8eaed;
    --text-secondary: #8b949e;
    --glow-blue: rgba(0, 212, 255, 0.3);
    --glow-orange: rgba(255, 107, 53, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    background-color: var(--deep-blue);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: var(--bright-blue);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--orange);
}

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

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

/* Header & Navigation */
header {
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.98) 0%, rgba(13, 27, 42, 0.95) 100%);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 1.8rem;
    color: var(--bright-blue);
    text-shadow: 0 0 20px var(--glow-blue);
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--bright-blue), var(--orange));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--deep-blue);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    color: var(--text-primary);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--bright-blue);
    background: rgba(0, 212, 255, 0.1);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.nav-cta {
    background: linear-gradient(135deg, var(--orange), #ff8c5a) !important;
    color: #fff !important;
    font-weight: 700;
    box-shadow: 0 4px 20px var(--glow-orange);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--glow-orange);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--bright-blue);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 30%, rgba(255, 107, 53, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.hero-text h1 {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, var(--bright-blue) 50%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text .subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
}

.hero-stat .number {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 2.2rem;
    color: var(--bright-blue);
    display: block;
}

.hero-stat .label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--bright-blue), #0099cc);
    color: var(--deep-blue);
    box-shadow: 0 4px 20px var(--glow-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--glow-blue);
    color: var(--deep-blue);
}

.btn-secondary {
    background: transparent;
    color: var(--bright-blue);
    border: 2px solid var(--bright-blue);
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.btn-orange {
    background: linear-gradient(135deg, var(--orange), #ff8c5a);
    color: #fff;
    box-shadow: 0 4px 20px var(--glow-orange);
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--glow-orange);
}

.hero-visual {
    position: relative;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--glow-blue);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.hero-image img {
    width: 100%;
    display: block;
}

.live-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ff3b3b, #ff6b35);
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 20px rgba(255, 59, 59, 0.5);
    z-index: 2;
}

.live-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Section Common */
.section {
    padding: 70px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-title {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 2rem;
    color: var(--text-primary);
}

.section-title .highlight {
    color: var(--bright-blue);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 6px;
}

.section-link {
    color: var(--bright-blue);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.section-link:hover {
    gap: 10px;
}

/* Live Cards Grid */
.live-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.live-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
}

.live-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 30px var(--glow-blue);
}

.live-card-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.live-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.live-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.live-viewers {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
}

.live-viewers::before {
    content: '👁';
}

.live-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 59, 59, 0.9);
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.live-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.live-category {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(10, 22, 40, 0.8);
    backdrop-filter: blur(10px);
    color: var(--bright-blue);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.live-card-body {
    padding: 20px;
}

.live-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.live-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.live-card-teams {
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-name {
    font-weight: 600;
    color: var(--text-primary);
}

.vs {
    color: var(--orange);
    font-weight: 700;
}

/* Schedule Cards */
.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.schedule-item {
    background: var(--card-bg);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s;
}

.schedule-item:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(4px);
}

.schedule-time {
    text-align: center;
    min-width: 90px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 212, 255, 0.05));
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.schedule-time .time {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 1.5rem;
    color: var(--bright-blue);
}

.schedule-time .date {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.schedule-content {
    flex: 1;
}

.schedule-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.schedule-meta {
    display: flex;
    gap: 16px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.schedule-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.schedule-status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-live {
    background: rgba(255, 59, 59, 0.15);
    color: #ff6b6b;
    border: 1px solid rgba(255, 59, 59, 0.3);
}

.status-upcoming {
    background: rgba(0, 212, 255, 0.15);
    color: var(--bright-blue);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.status-completed {
    background: rgba(139, 148, 158, 0.15);
    color: var(--text-secondary);
    border: 1px solid rgba(139, 148, 158, 0.3);
}

/* Ranking Table */
.ranking-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
}

.ranking-table thead {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 212, 255, 0.05));
}

.ranking-table th {
    padding: 18px 20px;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bright-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ranking-table td {
    padding: 16px 20px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    font-size: 0.95rem;
}

.ranking-table tbody tr {
    transition: background 0.3s;
}

.ranking-table tbody tr:hover {
    background: rgba(0, 212, 255, 0.05);
}

.rank-number {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 1.3rem;
    font-weight: 700;
}

.rank-1 { color: #ffd700; }
.rank-2 { color: #c0c0c0; }
.rank-3 { color: #cd7f32; }

.team-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.team-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
}

.win-rate-bar {
    width: 100%;
    max-width: 120px;
    height: 8px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.win-rate-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--bright-blue), var(--orange));
    border-radius: 4px;
}

/* Results Cards */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.result-card {
    background: var(--card-bg);
    border-radius: 14px;
    padding: 24px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s;
}

.result-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.result-tournament {
    font-weight: 600;
    color: var(--bright-blue);
    font-size: 0.95rem;
}

.result-date {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.result-match {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

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

.result-team.winner .team-name {
    color: var(--orange);
}

.result-team .team-logo {
    margin: 0 auto 8px;
    width: 48px;
    height: 48px;
    font-size: 1rem;
}

.result-score {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 1.8rem;
    color: var(--text-primary);
}

.result-score .winner-score {
    color: var(--orange);
}

.result-footer {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Filter Tags */
.filter-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-tag {
    padding: 8px 20px;
    border-radius: 20px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-tag:hover,
.filter-tag.active {
    background: linear-gradient(135deg, var(--bright-blue), #0099cc);
    color: var(--deep-blue);
    border-color: var(--bright-blue);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.about-text h2 {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1rem;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 14px;
    padding: 28px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--bright-blue), var(--orange));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: var(--card-bg);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(4px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 107, 53, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-card h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-form {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 36px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--deep-blue);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bright-blue);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.05) 0%, transparent 100%);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.stat-number {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--bright-blue), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 8px;
}

/* Footer */
footer {
    background: linear-gradient(180deg, var(--deep-blue) 0%, #050a14 100%);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin: 16px 0;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bright-blue);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--bright-blue);
    color: var(--deep-blue);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--bright-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Page Header (inner pages) */
.page-header {
    padding: 50px 0 40px;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.08) 0%, transparent 100%);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.page-header h1 {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 2.8rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff, var(--bright-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Live Room Grid (8 rooms) */
.room-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.room-card {
    background: var(--card-bg);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s;
}

.room-card:hover {
    border-color: var(--orange);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.room-preview {
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
}

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

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

.room-card:hover .room-play {
    opacity: 1;
}

.room-play-btn {
    width: 60px;
    height: 60px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 4px 20px var(--glow-orange);
}

.room-info {
    padding: 16px;
}

.room-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.room-viewer {
    color: var(--text-secondary);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Bracket / Playoff */
.bracket {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
}

.bracket-round {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bracket-match {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 18px;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.bracket-team {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.bracket-team.winner {
    color: var(--orange);
    font-weight: 700;
}

.bracket-team.loser {
    color: var(--text-secondary);
}

.bracket-team + .bracket-team {
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .room-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bracket {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: var(--dark-bg);
        width: 250px;
        height: calc(100vh - 70px);
        padding: 30px 20px;
        transition: right 0.3s;
        border-left: 1px solid rgba(0, 212, 255, 0.2);
    }

    .nav-links.open {
        right: 0;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .section {
        padding: 50px 0;
    }

    .room-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bracket {
        grid-template-columns: 1fr;
    }

    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .ranking-table {
        font-size: 0.85rem;
    }

    .ranking-table th,
    .ranking-table td {
        padding: 12px 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .room-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

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

    .stat-number {
        font-size: 2rem;
    }

    .live-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}