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

html {
    background-color: #000000;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000;
    line-height: 1.2;
    min-height: 100vh;
    font-size: 14px;
    letter-spacing: -0.01em;
}

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

/* Header */
.header {
    background: #d10716;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 36%;
    height: 100%;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    font-size: 16px;
}

.logo {
    font-size: 0rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
}

.logo::before {
    content: 'STREAM';
    font-size: 1.7rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.logo::after {
    content: 'EAST';
    background: #ffffff;
    color: #dc2626;
    padding: 4px 10px;
    font-weight: 800;
    margin-left: 4px;
    font-size: 1.7rem;
    letter-spacing: 0.05em;
    border-radius: 4px;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 8px 0;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 600;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
    transform: translateY(-2px);
}

/* ── Hamburger Button ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.25);
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: 0.3s ease;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-4px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-4px, -7px);
}

/* ── Mobile Nav ── */
.mobile-nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #dc2626;
    z-index: 999;
    padding: 1rem 1.5rem env(safe-area-inset-bottom, 2rem);
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav .nav-link {
    display: block;
    padding: 0.9rem 0.75rem;
    border: none;
    border-radius: 12px;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    background: transparent;
    transition: background 0.15s ease;
    color: #ffffff;
    letter-spacing: -0.01em;
    text-transform: none;
    line-height: 1.25;
}

.mobile-nav .nav-link::after {
    display: none;
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: none;
}

/* Main Content */
.main {
    padding: 32px 0;
    background: #15151e;
    min-height: calc(100vh - 200px);
}

.page-header {
    margin-bottom: 32px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    backdrop-filter: blur(20px);
    border-radius: 10px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.page-stitle {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    padding-bottom: 16px;
    border-bottom: 3px solid #dc2626;
}

.page-subtitle {
    color: #6a6a6a;
    font-size: 16px;
    margin-top: 16px;
}

/* Hero Section for Watch Page */
.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    backdrop-filter: blur(20px);
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dc2626, #ef4444, transparent);
}

.hero-title {
    font-size: 36px;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 18px;
    color: #6a6a6a;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-datetime {
    font-size: 16px;
    color: #dc2626;
    font-weight: 600;
    margin-bottom: 8px;
}

.hero-venue {
    font-size: 16px;
    color: #6a6a6a;
    font-style: italic;
    font-weight: 400;
}

/* 404 Hero Section */
.hero-404 {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 60px 40px;
    margin-bottom: 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.hero-404::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
}

.hero-404-title {
    font-size: 72px;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-404-subtitle {
    font-size: 24px;
    color: #4a4a4a;
    margin-bottom: 24px;
    font-weight: 600;
}

.hero-404-text {
    font-size: 16px;
    color: #6a6a6a;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.btn-primary {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.25);
}

/* Section */
.section {
    margin-bottom: 3rem;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #dc2626;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.event-card {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: 0.2s ease;
    cursor: pointer;
    border: none;
    position: relative;
    min-height: 56px;
    text-decoration: none;
}

.event-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    background-color: #2c2c2c;
}

.event-card:hover .event-title  { color: #ffffff; }
.event-card:hover .event-league { color: #ff6b6b; }
.event-card:hover .event-league::after { color: rgba(255,80,80,0.7); }

/* İkon gizle */
.league-icon { display: none; }

/* Sol grup */
.event-info {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    padding-right: 170px;
}

/* DESKTOP: LİG | Maç Adı tek satırda */
.event-details {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

/* LİG ADI — solda, kırmızı */
.event-league {
    order: -1;
    color: #f30909;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
}

/* | ayraç */
.event-league::after {
    content: '|';
    color: #f30909;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 0.75rem;
}

/* Maç Adı */
.event-title {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

/* Tarih desktop'ta gizli */
.event-datetime {
    display: none;
}

/* BADGE — sağ köşede sabit */
.event-status {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    border-radius: 12px;
    white-space: nowrap;
    text-transform: none;
}

.status-live {
    background: #dc2626;
    color: white;
    animation: pulse 2s infinite;
}

.status-upcoming {
    background: #000000;
    color: white;
}

.status-finished {
    background: #64748b;
    color: white;
}

/* Live Indicator */
.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 13px;
    font-weight: 700;
}

.live-dot {
    width: 9px;
    height: 9px;
    background: #ffffff;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

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

/* Watch Page */
.event-container {
    max-width: 1000px;
    margin: 0 auto;
}

.video-player {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.8rem;
    border: 5px solid #dc2626;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.player-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    background: #000;
}

.player-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #888888;
    gap: 1rem;
}

.player-placeholder h2 {
    color: #dc2626;
    font-size: 1.5rem;
    text-align: center;
}

.stream-servers {
    background: #ffffff;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.servers-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 0.8rem;
    text-align: center;
}

.servers-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.server-btn {
    padding: 0.5rem 1.5rem;
    background: #f8f8f8;
    color: #4a4a4a;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 800;
    transition: all 0.2s;
}

.server-btn:hover, .server-btn.active {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-color: #dc2626;
    color: #fff;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.2);
}

.discord-btn {
    border: 3px solid rgba(88, 101, 242, 0.2);
    padding: 1rem 1rem;
    background: #5865f2;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s;
    min-width: 70px;
    margin-bottom: 1.8rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(88, 101, 242, 0.2);
}

.discord-btn:hover {
    background: #4752c4;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
}

/* No events message */
.no-events {
    text-align: center;
    padding: 4rem 2rem;
    color: #f5f5f5;
}

.no-events h3 {
    color: #f5f5f5;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-top: 2px solid #dc2626;
    padding: 2.5rem 0;
    margin-top: 0rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #dc2626, #ef4444, transparent);
}

.footer p {
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.footer a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #ef4444;
    text-decoration: none;
}

/* FAQ Section */
.faq-section {
    margin: 3rem 0;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.faq-question {
    padding: 1.25rem;
    background: none;
    border: none;
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}

.faq-question:hover {
    background: #f8f8f8;
}

.faq-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s;
    color: #dc2626;
}

.faq-question[aria-expanded="true"] .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    color: #6a6a6a;
    line-height: 1.6;
}

.faq-answer.active {
    padding: 1rem 1.25rem 1.25rem;
    max-height: 500px;
}

.faq-answer p {
    margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: #1a1a1a;
}

/* Legal Pages */
.legal-content {
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 2rem;
    line-height: 1.6;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.legal-content h2 {
    color: #dc2626;
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    color: #dc2626;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem 0;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.legal-content ul, .legal-content ol {
    margin: 1rem 0 1rem 2rem;
    color: #4a4a4a;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: #1a1a1a;
}

.legal-content a {
    color: #dc2626;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.contact-form {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.contact-form h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    color: #1a1a1a;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
    background: #ffffff;
}

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

.contact-submit {
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.15);
}

.contact-submit:hover {
    background: linear-gradient(135deg, #e55a2b, #ff6b35);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}

/* Stream Links Section */
.stream-links-section {
    margin-top: 32px;
    background: #f8f8f8;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.stream-links-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #dc2626;
    margin: 0 0 20px 0;
    text-align: center;
}
.stream-links-table-wrapper {
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
}
.stream-links-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}
.stream-links-table thead {
    background: #f8fafc;
    border-bottom: 2px solid #e2e8f0;
}
.stream-links-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: #334155;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.stream-link-row {
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
}
.stream-link-row:last-child {
    border-bottom: none;
}
.stream-link-row:hover {
    background: #f1f5f9;
}
.stream-links-table td {
    padding: 16px;
    color: #334155;
    font-size: 14px;
    vertical-align: middle;
}
.stream-text {
    display: block;
}
.streamer-name .stream-text {
    color: #1e293b;
    font-weight: 600;
}
.quality-badge {
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    display: inline-block;
}
.quality-hd {
    background: rgba(76, 175, 80, 0.2);
    color: #1b5e20;
    border: 1px solid rgba(76, 175, 80, 0.4);
}
.quality-fhd {
    background: rgba(33, 150, 243, 0.15);
    color: #1565c0;
    border: 1px solid rgba(33, 150, 243, 0.3);
}
.quality-4k {
    background: rgba(156, 39, 176, 0.15);
    color: #6a1b9a;
    border: 1px solid rgba(156, 39, 176, 0.3);
}
.adblock-status {
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    display: inline-block;
}
.adblock-yes {
    background: rgba(76, 175, 80, 0.2);
    color: #1b5e20;
    border: 1px solid rgba(76, 175, 80, 0.4);
}
.adblock-no {
    background: rgba(244, 67, 54, 0.15);
    color: #c62828;
    border: 1px solid rgba(244, 67, 54, 0.3);
}
.watch-btn {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #dc2626, #dc2626);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s ease;
    text-align: center;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
    position: relative;
    z-index: 2;
}
.watch-btn:hover {
    background: linear-gradient(135deg, #b91c1c, #dc2626);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}
.watch-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
}

/* Lazy Loading */
.lazy-image {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.lazy-image.loaded {
    opacity: 1;
}
.lazy-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 1px;
}
@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* =============================================
   RESPONSIVE - Stream Links Table
   ============================================= */

@media screen and (max-width: 480px) {
    .stream-links-section { padding: 12px; border-radius: 12px; margin-top: 20px; }
    .stream-links-title { font-size: 1rem; margin-bottom: 12px; }
    .stream-links-table th:nth-child(2),
    .stream-links-table th:nth-child(3),
    .stream-links-table th:nth-child(5),
    .stream-links-table th:nth-child(6),
    .stream-links-table th:nth-child(8),
    .stream-links-table td:nth-child(2),
    .stream-links-table td:nth-child(3),
    .stream-links-table td:nth-child(5),
    .stream-links-table td:nth-child(6),
    .stream-links-table td:nth-child(8) { display: none; }
    .stream-links-table th, .stream-links-table td { padding: 8px 4px; font-size: 12px; }
    .stream-links-table th:first-child, .stream-links-table td:first-child { padding-left: 6px; }
    .stream-links-table th:last-child, .stream-links-table td:last-child { padding-right: 6px; }
    .streamer-name .stream-text { font-size: 12px; }
    .watch-btn { padding: 5px 10px; font-size: 11px; }
    .quality-badge { padding: 2px 5px; font-size: 10px; }
}

@media screen and (min-width: 481px) and (max-width: 640px) {
    .stream-links-section { padding: 14px; margin-top: 20px; }
    .stream-links-title { font-size: 1.05rem; margin-bottom: 14px; }
    .stream-links-table th:nth-child(3),
    .stream-links-table th:nth-child(5),
    .stream-links-table th:nth-child(6),
    .stream-links-table th:nth-child(8),
    .stream-links-table td:nth-child(3),
    .stream-links-table td:nth-child(5),
    .stream-links-table td:nth-child(6),
    .stream-links-table td:nth-child(8) { display: none; }
    .stream-links-table th, .stream-links-table td { padding: 9px 5px; font-size: 12px; }
    .watch-btn { padding: 6px 11px; font-size: 11px; }
    .quality-badge { padding: 3px 6px; font-size: 10px; }
}

@media screen and (min-width: 641px) and (max-width: 768px) {
    .stream-links-section { padding: 16px; margin-top: 20px; }
    .stream-links-title { font-size: 1.1rem; margin-bottom: 16px; }
    .stream-links-table th:nth-child(5),
    .stream-links-table th:nth-child(6),
    .stream-links-table th:nth-child(8),
    .stream-links-table td:nth-child(5),
    .stream-links-table td:nth-child(6),
    .stream-links-table td:nth-child(8) { display: none; }
    .stream-links-table th, .stream-links-table td { padding: 10px 6px; font-size: 13px; }
    .watch-btn { padding: 6px 12px; font-size: 12px; }
    .quality-badge { padding: 3px 6px; font-size: 11px; }
}

@media screen and (min-width: 769px) and (max-width: 900px) {
    .stream-links-table th:nth-child(6),
    .stream-links-table th:nth-child(8),
    .stream-links-table td:nth-child(6),
    .stream-links-table td:nth-child(8) { display: none; }
    .stream-links-table th, .stream-links-table td { padding: 11px 8px; }
}

@media screen and (min-width: 901px) and (max-width: 1024px) {
    .stream-links-table th:nth-child(8),
    .stream-links-table td:nth-child(8) { display: none; }
    .stream-links-table th, .stream-links-table td { padding: 12px 10px; }
}

/* =============================================
   RESPONSIVE - General + Mobile Event Cards
   ============================================= */
@media (max-width: 768px) {
    .header::before { width: 100%; clip-path: none; }
    .nav { display: none; }
    .hamburger { display: flex; }
    .event-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1.25rem;
        min-height: unset;
        gap: 0;
    }
    .event-info {
        padding-right: 0;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .event-details {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
    }
    /* display:contents → event-league'in box'ı kaybolur,
       içindeki metin (SOCCER vb.) ve event-status span
       event-details'ın flex child'ı gibi davranır */
    .event-league {
        display: contents;
        font-size: 0.9rem;
        color: #f30909;
        font-weight: 800;
        text-transform: uppercase;
    }
    /* display:contents olunca ::after çalışmaz */
    .event-league::after { display: none; }
    /* Maç Adı — order:2 */
    .event-title {
        order: 2;
        font-size: 1.1rem;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 0.3rem;
        width: 100%;
        color: #1a1a1a;
    }
    /* Tarih — order:3 */
    .event-datetime {
        display: none;
    }
    /* BADGE — order:4, en altta */
    .event-status {
        order: 4;
        position: static;
        transform: none;
        top: auto;
        right: auto;
        font-size: 13px;
        padding: 4px 10px;
        border-radius: 20px;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        margin-top: 0.1rem;
        align-self: flex-start;
    }

    .servers-list { justify-content: center; }
    .page-title { font-size: 1.6rem; }
    .hero-section { padding: 1.5rem; }
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-404 { padding: 2rem; }
    .hero-404-title { font-size: 3rem; }
    .hero-404-subtitle { font-size: 1.2rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .header-content { padding: 0.75rem 0.1; }
    .logo { font-size: 0rem; }
    .main { padding: 1.5rem 0; }

    .event-card { padding: 0.875rem 1rem; }
    .event-title { font-size: 1.05rem; }
    .event-league { font-size: 0.85rem; }
    .event-status { font-size: 13px; padding: 3px 9px; }

    .hero-title { font-size: 1.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-datetime { font-size: 0.9rem; }
    .hero-404 { padding: 1.5rem; }
    .hero-404-title { font-size: 2.5rem; }
    .hero-404-subtitle { font-size: 1rem; }
    .hero-404-text { font-size: 0.9rem; }
}