/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Sponsor Section */
.sponsor-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-bottom: 2px solid #ffd700;
    padding: 0.8rem 1rem;
    box-shadow: 0 3px 15px rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.sponsor-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.sponsor-label {
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
    color: #ffd700;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.sponsor-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.sponsor-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
    transition: all 0.3s ease;
}

.sponsor-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
}

.sponsor-details {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sponsor-name {
    font-family: 'Orbitron', monospace;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    margin: 0;
    letter-spacing: 1px;
}

.sponsor-link {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    color: #000;
    text-decoration: none;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.sponsor-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
    background: linear-gradient(45deg, #ffed4a, #ffd700);
}

@media (max-width: 768px) {
    .sponsor-section {
        padding: 0.6rem 1rem;
    }
    
    .sponsor-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .sponsor-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .sponsor-logo {
        height: 30px;
    }
    
    .sponsor-name {
        font-size: 1rem;
    }
    
    .sponsor-link {
        padding: 0.3rem 0.8rem;
        font-size: 0.75rem;
    }
}

html, body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.container {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

/* Header */
.header {
    position: relative;
    z-index: 2;
    padding: 2rem 1rem;
    text-align: center;
    background: linear-gradient(45deg, #1a1a2e, #16213e, #0f3460);
    border-bottom: 2px solid #00ffff;
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.3);
}

.tournament-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s ease infinite;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.tournament-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.prize-pool {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.4);
}

.prize-label {
    font-size: 0.9rem;
    color: #000;
    font-weight: 600;
    margin-right: 1rem;
}

.prize-amount {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #000;
}

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

/* Navigation */
.nav {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
    padding: 0 1rem;
}

.nav-list {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-link {
    display: block;
    padding: 1rem 2rem;
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    transition: left 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 0;
}

/* Main Content */
.main {
    position: relative;
    z-index: 2;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.section.active {
    display: block;
}

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

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ffff;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

/* Tournament Info Cards */
.tournament-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.2);
}

.info-card h3 {
    font-family: 'Orbitron', monospace;
    color: #ff00ff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
    color: #cccccc;
    position: relative;
    padding-left: 1.5rem;
}

.info-card li:last-child {
    border-bottom: none;
}

.info-card li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00ffff;
    font-size: 0.8rem;
}

/* LoL-Style Schedule */
.schedule-container {
    margin-bottom: 3rem;
}

.schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.schedule-header h3 {
    font-family: 'Orbitron', monospace;
    color: #ffff00;
    font-size: 1.8rem;
    margin: 0;
}

.schedule-tabs {
    display: flex;
    gap: 0.5rem;
}

.schedule-tab {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border: 1px solid #333;
    color: #cccccc;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.schedule-tab:hover {
    background: linear-gradient(145deg, #2a2a3e, #26334e);
    border-color: #00ffff;
    color: #00ffff;
}

.schedule-tab.active {
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border-color: #00ffff;
    color: #000;
    font-weight: 700;
}

.schedule-content {
    position: relative;
}

.schedule-week {
    display: none;
}

.schedule-week.active {
    display: block;
    animation: fadeInSlide 0.4s ease-out;
}

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

.week-header {
    background: linear-gradient(135deg, #1a1a2e, #0f1419);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.week-header h4 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.week-dates {
    color: #888;
    font-size: 0.95rem;
    font-weight: 500;
}

.matches-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.match-day-header {
    background: linear-gradient(90deg, #16213e, #1a1a2e);
    border-left: 4px solid #ff6b6b;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.day-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.day-title {
    font-family: 'Orbitron', monospace;
    color: #ff6b6b;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.day-date {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 500;
}

.lol-match {
    background: linear-gradient(145deg, #0f0f23, #1a1a2e);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 80px 1fr 120px;
    gap: 2rem;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lol-match::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lol-match:hover::before {
    opacity: 1;
}

.lol-match:hover {
    border-color: #00ffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.2);
}

.lol-match.playoff-match {
    border-left: 4px solid #ffd93d;
    background: linear-gradient(145deg, #1a1a0f, #2a2a1e);
}

.lol-match.grand-final-match {
    border: 2px solid #ff6b6b;
    background: linear-gradient(145deg, #1a0f0f, #2a1e1e);
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
}

.match-time {
    font-family: 'Orbitron', monospace;
    color: #ffff00;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    background: rgba(255, 255, 0, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 0, 0.3);
}

.match-details {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
}

.team {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: #ffffff;
}

.team-left {
    justify-content: flex-start;
}

.team-right {
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.team-logo-small {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px;
}

.team-logo-placeholder {
    width: 32px;
    height: 32px;
    background: linear-gradient(45deg, #333, #555);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-logo-placeholder::before {
    content: '?';
    color: #888;
    font-weight: bold;
}

.team-name {
    font-size: 1rem;
    font-weight: 600;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.match-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.vs-text {
    font-family: 'Orbitron', monospace;
    color: #ff00ff;
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.match-format {
    background: linear-gradient(45deg, #ff00ff, #8000ff);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(255, 0, 255, 0.3);
}

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

.status-text {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(78, 205, 196, 0.3);
}

.lol-match[data-status="live"] .status-text {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    animation: pulse 2s infinite;
}

.lol-match[data-status="completed"] .status-text {
    background: linear-gradient(45deg, #2d3436, #636e72);
}

/* Teams Section */
.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.team-card {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.team-card h3 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #333;
    padding-bottom: 1rem;
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    border-left: 4px solid #ff00ff;
    transition: all 0.3s ease;
}

.team:hover {
    background: rgba(255, 0, 255, 0.1);
    transform: translateX(5px);
}

/* New detailed team styles */
.team-detailed {
    background: linear-gradient(145deg, #0f0f23, #1a1a2e);
    border: 1px solid #444;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.team-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.2);
}

.team-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #333;
    gap: 1rem;
    flex-wrap: wrap;
}

.team-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
}

.team-header h4 {
    font-family: 'Orbitron', monospace;
    color: #ff00ff;
    font-size: 1.3rem;
    font-weight: 700;
    flex: 1;
    min-width: 200px;
}

.team-country {
    color: #ffff00;
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(255, 255, 0, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 0, 0.3);
}

.team-roster {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.player {
    display: grid;
    grid-template-columns: 30px 120px 1fr;
    gap: 1rem;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.8rem;
    border-radius: 8px;
    border-left: 3px solid #00ffff;
    transition: all 0.3s ease;
}

.player:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateX(3px);
}

.position {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    color: #000;
    font-weight: 700;
    border-radius: 50%;
    font-size: 0.8rem;
}

.player-name {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    font-weight: 600;
    font-size: 0.95rem;
}

.real-name {
    color: #cccccc;
    font-size: 0.85rem;
    font-weight: 400;
}

/* Position-specific colors */
.player:nth-child(1) .position { background: linear-gradient(45deg, #ff6b6b, #ff8e8e); }
.player:nth-child(2) .position { background: linear-gradient(45deg, #4ecdc4, #7ed6cc); }
.player:nth-child(3) .position { background: linear-gradient(45deg, #45b7d1, #74c9e0); }
.player:nth-child(4) .position { background: linear-gradient(45deg, #f39c12, #f5b041); }
.player:nth-child(5) .position { background: linear-gradient(45deg, #9b59b6, #bb7ab8); }

/* Brackets Section */
.bracket-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.bracket-info {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.bracket-info h3 {
    font-family: 'Orbitron', monospace;
    color: #ffff00;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.bracket-info p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.bracket-info h4 {
    color: #ff00ff;
    margin: 1rem 0 0.5rem 0;
}

.bracket-info ul {
    list-style: none;
}

.bracket-info li {
    padding: 0.5rem 0;
    color: #cccccc;
    position: relative;
    padding-left: 1.5rem;
}

.bracket-info li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00ffff;
    font-size: 1.2rem;
}

/* Rules Section */
.rules-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.rule-card {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.rule-card:hover {
    transform: translateY(-5px);
}

.rule-card h3 {
    font-family: 'Orbitron', monospace;
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 2px solid #333;
    padding-bottom: 0.5rem;
}

.rule-card ul {
    list-style: none;
}

.rule-card li {
    padding: 0.7rem 0;
    color: #cccccc;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #2a2a3a;
}

.rule-card li:last-child {
    border-bottom: none;
}

.rule-card li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: #ffff00;
    font-size: 0.9rem;
}

/* Prizes Section */
.prizes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.prize-card {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border: 2px solid;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.prize-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.prize-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.prize-card.first {
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.prize-card.second {
    border-color: #c0c0c0;
    box-shadow: 0 15px 40px rgba(192, 192, 192, 0.3);
}

.prize-card.third {
    border-color: #cd7f32;
    box-shadow: 0 15px 40px rgba(205, 127, 50, 0.3);
}

.prize-card.fourth {
    border-color: #00ffff;
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.3);
}

.prize-card.fifth {
    border-color: #ff00ff;
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.3);
}

.prize-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.place {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.amount {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #ffff00;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.5);
}

.prize-info {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.prize-info h3 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.prize-info ul {
    list-style: none;
}

.prize-info li {
    padding: 0.7rem 0;
    color: #cccccc;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #333;
}

.prize-info li:last-child {
    border-bottom: none;
}

.prize-info li::before {
    content: '💰';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #000;
    border-top: 1px solid #333;
    padding: 1rem;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tournament-title {
        font-size: 2.5rem;
    }
    
    .nav-list {
        flex-direction: column;
    }
    
    .nav-link {
        padding: 0.8rem 1rem;
    }
    
    .schedule-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .schedule-header h3 {
        text-align: center;
    }
    
    .schedule-tabs {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .schedule-tab {
        flex: 1;
        min-width: 100px;
        text-align: center;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .lol-match {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
        padding: 1rem;
    }
    
    .match-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .team-right {
        flex-direction: row;
    }
    
    .match-time {
        font-size: 0.9rem;
        padding: 0.4rem;
    }
    
    .team-name {
        max-width: none;
        font-size: 0.9rem;
    }
    
    .vs-text {
        font-size: 1rem;
    }
    
    .day-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .teams-grid {
        grid-template-columns: 1fr;
    }
    
    .team-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .team-header h4 {
        min-width: auto;
        text-align: center;
        width: 100%;
    }
    
    .player {
        grid-template-columns: 30px 100px 1fr;
        gap: 0.8rem;
    }
    
    .real-name {
        font-size: 0.8rem;
    }
    
    .tournament-info {
        grid-template-columns: 1fr;
    }
    
    .bracket-container {
        grid-template-columns: 1fr;
    }
    
    .rules-container {
        grid-template-columns: 1fr;
    }
    
    .prizes-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .teams-grid {
        grid-template-columns: 1fr;
    }
    
    .player {
        grid-template-columns: 25px 80px 1fr;
        gap: 0.5rem;
        padding: 0.6rem;
    }
    
    .position {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .player-name {
        font-size: 0.85rem;
    }
    
    .real-name {
        font-size: 0.75rem;
    }
    
    .team-country {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }
    
    .match {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .tournament-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .info-card,
    .team-card,
    .bracket-info,
    .rule-card,
    .prize-info {
        padding: 1.5rem;
    }
    
    .prize-card {
        padding: 1.5rem;
    }
    
    .amount {
        font-size: 1.5rem;
    }
}

/* Privacy Controls */
.privacy-controls {
    margin-top: 1rem;
}

.privacy-toggle {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid #00ffff;
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    color: #00ffff;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.privacy-toggle:hover {
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    transform: translateY(-2px);
}

.privacy-toggle.active {
    background: rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.privacy-toggle.active:hover {
    background: rgba(255, 107, 107, 0.3);
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.4);
}

.toggle-switch {
    width: 40px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: #00ffff;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.privacy-toggle.active .toggle-switch {
    background: rgba(255, 107, 107, 0.3);
}

.privacy-toggle.active .toggle-switch::after {
    background: #ff6b6b;
    transform: translateX(20px);
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.privacy-toggle:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: rgba(102, 102, 102, 0.2);
    border-color: #666;
    color: #666;
}

.privacy-toggle:disabled:hover {
    background: rgba(102, 102, 102, 0.2);
    box-shadow: none;
    transform: none;
}

.privacy-toggle:disabled .toggle-switch::after {
    background: #666;
    box-shadow: 0 0 5px rgba(102, 102, 102, 0.3);
}

/* Real Name Hiding Styles */
.real-name {
    transition: all 0.3s ease;
}

.names-hidden .real-name {
    color: transparent !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    user-select: none;
    pointer-events: none;
}

.names-hidden .real-name::before {
    content: "●●●●●●●●●";
    color: #666;
    position: absolute;
    letter-spacing: 2px;
}