/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f7fa;
    color: #1a1a2e;
    line-height: 1.6;
}

::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: #f5f7fa;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    border-radius: 10px;
}

/* ===== MODERN HEADER - WHITE THEME ===== */
.header-modern {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.02);
}

.header-container-modern {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    color: #1a1a2e;
}

.logo-icon-modern {
    color: #4facfe;
    font-size: 16px;
}

.logo-text-modern span {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-modern {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link-modern {
    color: #6b7280;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 8px;
    transition: 0.3s;
}

.nav-link-modern:hover {
    color: #1a1a2e;
    background: rgba(79, 172, 254, 0.04);
}

.nav-link-modern.active {
    color: #4facfe;
    background: rgba(79, 172, 254, 0.06);
}

.nav-cta-modern {
    display: inline-block;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: #ffffff !important;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    margin-left: 4px;
}

.nav-cta-modern:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(79, 172, 254, 0.2);
}

.hamburger-modern {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger-modern span {
    display: block;
    width: 20px;
    height: 2px;
    background: #1a1a2e;
    border-radius: 2px;
    transition: 0.3s;
}

.hamburger-modern.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}
.hamburger-modern.active span:nth-child(2) {
    opacity: 0;
}
.hamburger-modern.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* ===== AD BANNERS ===== */
.ad-banner-top,
.ad-banner-middle,
.ad-banner-bottom {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin: 0 auto;
    max-width: 1200px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.ad-banner-top {
    border-radius: 0 0 12px 12px;
    margin-top: 0;
}
.ad-banner-middle {
    border-radius: 12px;
    margin: 16px auto;
}
.ad-banner-bottom {
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
}

.ad-inner {
    text-align: center;
    padding: 6px 12px;
}

.ad-label {
    font-size: 8px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 2px;
}

.ad-box {
    background: rgba(255, 255, 255, 0.4);
    border: 1px dashed rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    padding: 8px;
    min-height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ad-box p {
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
    font-weight: 600;
}

.ad-box small {
    font-size: 9px;
    color: #d1d5db;
}

.ad-box.ad-vertical {
    min-height: 200px;
    padding: 16px;
}

/* ===== HERO ===== */
.hero-section {
    padding: 24px 20px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(79, 172, 254, 0.08);
    color: #4facfe;
    padding: 3px 16px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.hero-content h1 {
    font-size: 34px;
    line-height: 1.1;
    font-weight: 900;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
}

.hero-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: #ffffff;
    padding: 8px 26px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(79, 172, 254, 0.25);
}

.btn-secondary {
    display: inline-block;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #1a1a2e;
    padding: 8px 26px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-secondary:hover {
    border-color: #4facfe;
    background: rgba(79, 172, 254, 0.04);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 4px 16px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    min-width: 50px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #4facfe;
}

.stat-label {
    font-size: 9px;
    color: #6b7280;
    font-weight: 500;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 16px;
}

.section-tag {
    display: inline-block;
    color: #4facfe;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-header h2 {
    font-size: 24px;
    font-weight: 900;
    color: #1a1a2e;
    margin-top: 2px;
}

.section-header p {
    color: #6b7280;
    font-size: 13px;
    margin-top: 2px;
}

/* ===== LEAGUE BOXES ===== */
.league-boxes {
    padding: 16px 20px 10px;
    background: #f5f7fa;
}

.league-box {
    background: #defbff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.02);
}

.league-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    background: rgba(79, 172, 254, 0.02);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.league-box-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.league-icon {
    font-size: 20px;
}

.league-box-title h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
}

.league-count {
    background: rgba(79, 172, 254, 0.06);
    color: #4facfe;
    padding: 0px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
}

.league-status {
    font-size: 9px;
    font-weight: 700;
    color: #4facfe;
    animation: blink 1.2s infinite;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

/* ===== EVENT ROWS ===== */
.league-box-body {
    padding: 4px 0;
}

.event-group-label {
    padding: 6px 16px 4px;
    font-size: 13px;
    font-weight: 700;
    color: #4facfe;
    background: rgba(79, 172, 254, 0.02);
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.event-group-label.other-date {
    color: #9ca3af;
    margin-top: 4px;
}

.event-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    transition: 0.2s;
    font-size: 15px;
}

.event-row:hover {
    background: rgba(79, 172, 254, 0.02);
}

.event-row.event-live-row {
    background: rgba(79, 172, 254, 0.03);
}

.event-time {
    min-width: 80px;
    color: #6b7280;
    font-weight: 600;
    font-size: 14px;
}

.event-teams {
    flex: 1;
    color: #1a1a2e;
    font-weight: 600;
    font-size: 16px;
}

.event-league {
    min-width: 90px;
    color: #6b7280;
    font-size: 13px;
}

.event-tv {
    min-width: 110px;
    color: #9ca3af;
    font-size: 12px;
}

.event-status-badge {
    min-width: 75px;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 12px;
    text-align: center;
}

.badge-live {
    color: #4facfe;
    background: rgba(79, 172, 254, 0.06);
    animation: blink 1.2s infinite;
}

.badge-upcoming {
    color: #9ca3af;
    background: rgba(0, 0, 0, 0.02);
}

.event-watch-btn {
    display: inline-block;
    background: linear-gradient(135deg, #4facfe, #95d6da);
    color: #ffffff;
    padding: 5px 18px;
    border-radius: 18px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    white-space: nowrap;
}

.event-watch-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.2);
}

.no-events-msg {
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
    padding: 14px 0;
}

/* ===== SPORTS SECTION ===== */
.sports-section {
    padding: 16px 20px 24px;
    background: #ffffff;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    max-width: 700px;
    margin: 0 auto;
}

.sport-card {
    background: #f5f7fa;
    border-radius: 10px;
    padding: 14px 10px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: 0.3s;
    cursor: pointer;
}

.sport-card:hover {
    background: #e8ecf1;
    border-color: rgba(79, 172, 254, 0.1);
    transform: translateY(-2px);
}

.sport-card span {
    font-size: 26px;
    display: block;
    margin-bottom: 2px;
}

.sport-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
}

.sport-card p {
    color: #6b7280;
    font-size: 10px;
}

/* ===== ARTICLE ===== */
.article-section {
    padding: 16px 20px 24px;
    background: #f5f7fa;
}

.article-container {
    max-width: 900px;
    margin: 0 auto;
    background: hsla(0, 0%, 100%, 0.829);
    border-radius: 12px;
    padding: 24px 28px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.02);
}

.article-head {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.article-tag {
    display: inline-block;
    background: rgba(79, 172, 254, 0.06);
    color: #4facfe;
    padding: 2px 12px;
    border-radius: 16px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.article-title {
    font-size: 26px;
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1.2;
    margin: 6px 0 4px;
}

.article-meta {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: #9ca3af;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.article-meta span:not(:last-child)::after {
    content: '•';
    margin-left: 6px;
    color: #d1d5db;
}

.article-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.article-body h2 {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 6px;
    margin-top: 16px;
}

.article-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: #4facfe;
    margin: 12px 0 4px;
}

.article-body p {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.article-body a {
    color: #4facfe;
    text-decoration: none;
    transition: 0.3s;
}

.article-body a:hover {
    color: #00f2fe;
    text-decoration: underline;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 6px;
    margin: 6px 0 10px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: #f5f7fa;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-icon {
    font-size: 14px;
    color: #4facfe;
    font-weight: 700;
    margin-top: 2px;
}

.feature-item h4 {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a2e;
}

.feature-item p {
    font-size: 11px;
    color: #6b7280;
    margin: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 6px;
    margin: 6px 0 10px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: #f5f7fa;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.step-num {
    font-size: 14px;
    font-weight: 800;
    color: #4facfe;
    min-width: 22px;
}

.step-item h4 {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a2e;
}

.step-item p {
    font-size: 10px;
    color: #6b7280;
    margin: 0;
}

.tip-box {
    display: flex;
    gap: 10px;
    background: rgba(79, 172, 254, 0.03);
    border: 1px solid rgba(79, 172, 254, 0.06);
    border-radius: 8px;
    padding: 10px 14px;
    margin: 14px 0;
}

.tip-box span {
    font-size: 18px;
}

.tip-box div {
    color: #4b5563;
    font-size: 13px;
}

.tip-box strong {
    color: #4facfe;
}

.sport-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 6px 0 12px;
}

.sport-tag {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s;
}

.sport-tag:hover {
    transform: translateY(-2px);
}

.sport-tag.nfl {
    background: linear-gradient(135deg, #013369, #004b87);
}
.sport-tag.nba {
    background: linear-gradient(135deg, #1d428a, #c8102e);
}
.sport-tag.nhl {
    background: linear-gradient(135deg, #1a1a2e, #c41230);
}
.sport-tag.mlb {
    background: linear-gradient(135deg, #041e42, #003d6b);
}
.sport-tag.soccer {
    background: linear-gradient(135deg, #1a4a2a, #2e8b57);
}

.cta-section {
    text-align: center;
    margin: 16px 0 14px;
    padding: 14px;
    background: #f5f7fa;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: #ffffff;
    padding: 8px 30px;
    border-radius: 22px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(79, 172, 254, 0.2);
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    flex-wrap: wrap;
    gap: 8px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.tag-link {
    display: inline-block;
    background: #f5f7fa;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 10px;
    color: #6b7280;
    transition: 0.3s;
    text-decoration: none;
}

.tag-link:hover {
    background: rgba(79, 172, 254, 0.06);
    color: #446581;
}

.share {
    display: flex;
    align-items: center;
    gap: 6px;
}

.share span {
    color: #9ca3af;
    font-size: 11px;
}

.share-btn {
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 11px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.share-btn:hover {
    transform: scale(1.08);
}

.share-btn.fb {
    background: #446581;
    color: #fff;
}
.share-btn.tw {
    background: #000;
    color: #fff;
}
.share-btn.wa {
    background: #25d366;
    color: #fff;
}

/* ===== PLAYER ===== */
.player-section {
    padding: 12px 20px 24px;
}

.player-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 14px;
}

.player-main {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.02);
}

.player-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    background: rgba(79, 172, 254, 0.02);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.player-head h2 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
}

.player-live {
    color: #446581;
    font-size: 10px;
    font-weight: 700;
    animation: blink 1.2s infinite;
}

.player-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.player-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.player-controls {
    padding: 8px 16px;
    background: #f5f7fa;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.player-info {
    display: flex;
    gap: 10px;
    font-size: 11px;
    color: #6b7280;
}

.player-info span {
    background: #ffffff;
    padding: 2px 8px;
    border-radius: 6px;
}

.player-actions {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.channel-btn {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: #6b7280;
    padding: 4px 12px;
    border-radius: 14px;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.channel-btn:hover {
    background: rgba(79, 172, 254, 0.04);
    color: #1a1a2e;
}

.channel-btn.active {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: #c4c1c1da;
    border-color: #4facfe;
}

.fullscreen-btn {
    background: #c4c1c1da;
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: #6b7280;
    padding: 4px 12px;
    border-radius: 14px;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.fullscreen-btn:hover {
    background: rgba(79, 172, 254, 0.04);
    color: #1a1a2e;
}

.player-tip {
    padding: 6px 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.player-tip p {
    font-size: 11px;
    color: #6b7280;
    margin-bottom: 2px;
}

.player-tip small {
    font-size: 9px;
    color: #9ca3af;
}

.player-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ad-sidebar-box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    overflow: hidden;
}

.related-box {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 12px;
}

.related-box h4 {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.related-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 8px;
    border-radius: 6px;
    transition: 0.3s;
    cursor: pointer;
}

.related-item:hover {
    background: rgba(79, 172, 254, 0.03);
}

.related-item span {
    font-size: 16px;
}

.related-item strong {
    display: block;
    font-size: 11px;
    color: #1a1a2e;
}

.related-item small {
    font-size: 9px;
    color: #4facfe;
}

/* ===== FOOTER ===== */
.footer-main {
    background: #1a1a2e;
    padding: 16px 20px 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 16px;
}

.footer-brand .footer-logo {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
}

.footer-brand .footer-logo span {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: #9ca3af;
    font-size: 11px;
    margin-top: 4px;
    max-width: 280px;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 4px;
}

.footer-col a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    font-size: 11px;
    padding: 2px 0;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #4facfe;
}

.footer-social {
    display: flex;
    gap: 6px;
}

.social-link {
    display: inline-block;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-size: 12px;
    transition: 0.3s;
    text-decoration: none;
    color: #9ca3af;
}

.social-link:hover {
    background: rgba(79, 172, 254, 0.1);
    color: #4facfe;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    margin-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom p {
    color: #6b7280;
    font-size: 10px;
}

.footer-bottom a {
    color: #9ca3af;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #4facfe;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .player-container {
        grid-template-columns: 1fr;
    }
    .player-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .hamburger-modern {
        display: flex;
    }

    .nav-modern {
        position: fixed;
        top: 0;
        right: -100%;
        width: 240px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 50px 16px 16px;
        gap: 2px;
        transition: 0.4s;
        border-left: 1px solid rgba(0, 0, 0, 0.04);
    }

    .nav-modern.open {
        right: 0;
    }

    .nav-link-modern {
        width: 100%;
        padding: 8px 12px;
        font-size: 14px;
        color: #1a1a2e;
    }

    .nav-cta-modern {
        width: 100%;
        text-align: center;
        margin-left: 0;
        margin-top: 4px;
        padding: 8px;
        font-size: 13px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .event-row {
        flex-wrap: wrap;
        padding: 8px 12px;
        gap: 4px;
    }
    .event-time {
        min-width: 60px;
        font-size: 12px;
    }
    .event-teams {
        width: 100%;
        font-size: 15px;
        order: 1;
    }
    .event-league {
        font-size: 12px;
        min-width: auto;
    }
    .event-tv {
        display: none;
    }
    .event-status-badge {
        font-size: 10px;
        padding: 1px 8px;
        min-width: 60px;
    }
    .event-watch-btn {
        font-size: 12px;
        padding: 4px 14px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .article-title {
        font-size: 22px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .player-controls {
        flex-direction: column;
        align-items: stretch;
    }
    .player-actions {
        justify-content: center;
    }
    .player-sidebar {
        grid-template-columns: 1fr;
    }

    .league-box-title h3 {
        font-size: 13px;
    }
    .league-icon {
        font-size: 16px;
    }
    .league-count {
        font-size: 10px;
        padding: 0px 6px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 20px;
    }

    .sports-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
    .sport-card {
        padding: 10px 8px;
    }
    .sport-card span {
        font-size: 20px;
    }
    .sport-card h3 {
        font-size: 12px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .article-title {
        font-size: 18px;
    }
    .article-body h2 {
        font-size: 17px;
    }

    .event-row {
        padding: 6px 10px;
        gap: 2px;
    }
    .event-time {
        min-width: 50px;
        font-size: 10px;
    }
    .event-teams {
        font-size: 14px;
    }
    .event-league {
        font-size: 10px;
    }
    .event-status-badge {
        font-size: 9px;
        padding: 1px 6px;
        min-width: 50px;
    }
    .event-watch-btn {
        font-size: 10px;
        padding: 3px 10px;
    }
    .event-group-label {
        font-size: 11px;
    }

    .player-head h2 {
        font-size: 13px;
    }
    .channel-btn {
        font-size: 9px;
        padding: 3px 8px;
    }

    .ad-box p {
        font-size: 11px;
    }
    .ad-box.ad-vertical {
        min-height: 100px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 6px 16px;
        font-size: 12px;
        width: 100%;
        text-align: center;
    }

    .header-container-modern {
        padding: 4px 12px;
    }
    .logo-modern {
        font-size: 14px;
    }
    .logo-icon-modern {
        font-size: 12px;
    }
    .nav-link-modern {
        font-size: 12px;
        padding: 4px 10px;
    }
    .nav-cta-modern {
        font-size: 11px;
        padding: 4px 12px;
    }

    .article-container {
        padding: 16px;
    }
}