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

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: #dc2626;
    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%;
    background: #9f0712cc;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 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: 'CRACK';
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.logo::after {
    content: 'STREAM';
    background: #ffffff;
    color: #dc2626;
    padding: 2px 54px 2px 6px;
    font-weight: 800;
    clip-path: polygon(0 0, 100% 0, 65% 100%, 0% 100%);
    margin-left: 6px;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
}

.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);
}

/* Mobile hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    color: #ffffff;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

.mobile-nav {
    display: none;
    width: 100%;
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
    z-index: 1000;
    padding: 12px;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

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

.mobile-nav .nav-link {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    color: #ffffff;
}

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

.mobile-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-1px);
}

/* 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);
}

/* Live Events 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;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: #dc2626;
    color: #fff;
    padding: 0.25rem 0.4rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.2);
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

/* Event Cards */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 0;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #dc2626;
    transform: scaleY(0);
    transition: transform 0.25s ease;
}

.event-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 2px;
    background: #dc2626;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.event-card:hover::before {
    transform: scaleY(1);
}

.event-card:hover::after {
    transform: scaleX(1);
}

.event-card:hover {
    border-color: #dc2626;
    box-shadow: 0 2px 16px rgba(220, 38, 38, 0.08);
    transform: translateX(2px);
}

.event-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 10px;
}

.league-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f8f8f8, #f0f0f0);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border: 1px solid #e8e8e8;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.event-card:hover .league-icon {
    transform: scale(1.05);
}

.event-details {
    flex: 1;
    min-width: 0;
}

.event-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.event-datetime {
    color: #26282d;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 6px;
}

.event-league {
    color: #dc2626;
    font-size: 12px;
    font-weight: 800;
    text-transform: none;
    letter-spacing: 0.5px;
}

.event-status {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.3px;
    flex-shrink: 0;

}

.status-live {
    background: #dc2626;
    color: #ffffff;
}

.status-upcoming {
    background: #000;
    color: #ffffff;
}

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

/* 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, #dc2626, #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);
}

/* Extra Small Mobile - 480px */
/* Streamer, Quality, Bitrate, Watch */
@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;
    }

    /* Channel, Language, Ads, AdBlock, MISR */
    .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;
    }
}

/* Small Mobile - 481px - 640px */
/* Channel (Streamer, Quality, Bitrate, Watch, Channel) */
@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;
    }

    /* Language, Ads, AdBlock, MISR */
    .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;
    }

    .stream-links-table th:first-child,
    .stream-links-table td:first-child {
        padding-left: 7px;
    }

    .stream-links-table th:last-child,
    .stream-links-table td:last-child {
        padding-right: 7px;
    }

    .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;
    }

    /* Ads, AdBlock, MISR */
    .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;
    }

    .stream-links-table th:first-child,
    .stream-links-table td:first-child {
        padding-left: 8px;
    }

    .stream-links-table th:last-child,
    .stream-links-table td:last-child {
        padding-right: 8px;
    }

    .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) {
    /* AdBlock, MISR */
    .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) {
    /* MISR */
    .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 */
@media (max-width: 768px) {
    .header::before {
        width: 100%;
        clip-path: none;
    }

    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .event-card {
        padding: 0;
    }

    .event-info {
        padding: 10px 10px;
        gap: 12px;
    }

    .league-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .event-title {
        font-size: 15px;
    }

    .event-datetime {
        font-size: 12px;
    }

    .event-league {
        font-size: 12px;
    }

    .event-status {
        padding: 2px 8px;
        font-size: 13px;
    }

    .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;
    }

    .logo {
        font-size: 0rem;
    }

    .main {
        padding: 1.5rem 0;
    }

    .event-info {
        padding: 10px 10px;
        gap: 10px;
    }

    .league-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        border-radius: 8px;
    }

    .event-title {
        font-size: 16px;
    }

    .event-datetime {
        font-size: 14px;
    }

    .event-league {
        font-size: 12px;
    }

    .event-status {
        padding: 2px 8px;
        font-size: 13px;
    }

    .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;
    }
}
