/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0e1a;
    color: #ffffff;
    line-height: 1.8;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0e1a;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00ff88, #00cc66);
    border-radius: 10px;
}

/* ===== HEADER ===== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    background: rgba(10, 14, 26, 0.95);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
}

.logo-icon {
    font-size: 26px;
}

.logo-text {
    color: #ffffff;
}

.logo-text span {
    color: #00ff88;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #8899bb;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff88;
    transition: 0.3s;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover,
nav a.active {
    color: #00ff88;
}

/* ===== HERO ===== */
.hero {
    padding: 80px 60px 70px;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(0, 255, 136, 0.03) 0%, transparent 60%),
        linear-gradient(135deg, #0a0e1a 0%, #0d1a2a 50%, #0a0e1a 100%);
    text-align: center;
    border-bottom: 1px solid rgba(0, 255, 136, 0.05);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.02) 0%, transparent 70%);
    animation: rotateGlow 25s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    padding: 4px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 255, 136, 0.15);
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 18px;
    font-weight: 900;
}

.hero-content h1 span {
    color: #00ff88;
}

.hero-content p {
    font-size: 18px;
    color: #8899bb;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #00ff88, #00cc66);
    border: none;
    color: #0a0e1a;
    padding: 14px 38px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 4px 30px rgba(0, 255, 136, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 50px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    border: 2px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
    padding: 14px 38px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-secondary:hover {
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(0, 255, 136, 0.1);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #00ff88;
}

.stat-label {
    font-size: 13px;
    color: #667799;
    font-weight: 500;
}

/* ===== STREAMS ===== */
.streams {
    padding: 60px 60px 70px;
    background: #0a0e1a;
}

.streams h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 8px;
    color: #ffffff;
}

.section-sub {
    text-align: center;
    color: #667799;
    font-size: 16px;
    margin-bottom: 40px;
}

.stream-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
}

.stream-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.06);
    transition: none;
    backdrop-filter: blur(10px);
}

.card-image {
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 14, 26, 0.9));
    z-index: 1;
}

.card-image.nfl { background: linear-gradient(135deg, #013369, #0a4a7a); }
.card-image.nba { background: linear-gradient(135deg, #1d428a, #6a1a2a); }
.card-image.nhl { background: linear-gradient(135deg, #1a1a2e, #6a1a2a); }
.card-image.mlb { background: linear-gradient(135deg, #041e42, #0a3a6a); }
.card-image.mma { background: linear-gradient(135deg, #0a2240, #6a1a2a); }
.card-image.boxing { background: linear-gradient(135deg, #2d1b0e, #6a2a1a); }

.sport-icon {
    font-size: 64px;
    z-index: 2;
    position: relative;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.05));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.live-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    color: #00ff88;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.95); }
}

.card-content {
    padding: 18px 20px 22px;
    text-align: center;
    background: rgba(10, 14, 26, 0.95);
}

.card-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #ffffff;
}

.card-content p {
    color: #667799;
    font-size: 14px;
    margin-bottom: 14px;
}

.btn-watch {
    display: inline-block;
    background: linear-gradient(135deg, #00ff88, #00cc66);
    color: #0a0e1a;
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.1);
}

.btn-watch:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 40px rgba(0, 255, 136, 0.25);
}

/* ===== ARTICLE ===== */
.article-section {
    padding: 60px 60px 70px;
    background: linear-gradient(180deg, #0a0e1a, #0d1a2a);
}

.article-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 45px;
    border: 1px solid rgba(0, 255, 136, 0.06);
    backdrop-filter: blur(10px);
}

.article-header {
    margin-bottom: 30px;
}

.article-tag {
    display: inline-block;
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    padding: 3px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.article-header h1 {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 6px;
    color: #ffffff;
}

.article-sub {
    color: #667799;
    font-size: 16px;
}

.article-body h2 {
    font-size: 26px;
    font-weight: 800;
    margin: 35px 0 12px;
    color: #00ff88;
}

.article-body p {
    color: #aabbdd;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.9;
}

.article-body ul,
.article-body ol {
    padding-left: 25px;
    margin: 15px 0 25px;
}

.article-body ul li,
.article-body ol li {
    color: #aabbdd;
    padding: 6px 0;
    font-size: 15px;
}

.article-body ul li strong,
.article-body ol li strong {
    color: #00ff88;
}

.tip-box {
    background: rgba(0, 255, 136, 0.03);
    border-left: 4px solid #00ff88;
    padding: 18px 22px;
    border-radius: 8px;
    display: flex;
    gap: 14px;
    margin: 30px 0;
    align-items: flex-start;
}

.tip-box span {
    font-size: 22px;
}

.tip-box div {
    color: #aabbdd;
    font-size: 15px;
}

.tip-box strong {
    color: #00ff88;
}

.sports-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 15px 0 30px;
}

.sport-tag {
    background: rgba(0, 255, 136, 0.06);
    color: #00ff88;
    padding: 6px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(0, 255, 136, 0.08);
    transition: 0.3s;
}

.sport-tag:hover {
    background: rgba(0, 255, 136, 0.12);
    border-color: rgba(0, 255, 136, 0.2);
    transform: translateY(-2px);
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 255, 136, 0.06);
    flex-wrap: wrap;
    gap: 15px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tags span {
    background: rgba(255, 255, 255, 0.02);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: #667799;
    transition: 0.3s;
    cursor: pointer;
}

.tags span:hover {
    background: rgba(0, 255, 136, 0.08);
    color: #00ff88;
}

.share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share span {
    color: #667799;
    font-size: 14px;
}

.share-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.share-btn:hover {
    transform: scale(1.1) translateY(-2px);
}

.share-btn.fb { background: #1877f2; color: #fff; }
.share-btn.tw { background: #000; color: #fff; }
.share-btn.wa { background: #25d366; color: #fff; }

/* ===== FOOTER ===== */
footer {
    background: #0a0e1a;
    padding: 20px 60px;
    border-top: 1px solid rgba(0, 255, 136, 0.03);
    text-align: center;
}

.footer-content p {
    color: #334466;
    font-size: 13px;
    letter-spacing: 1px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    header, .hero, .streams, .article-section, footer {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 12px;
        padding: 15px 20px;
    }
    nav {
        gap: 20px;
    }
    .hero {
        padding: 50px 20px;
    }
    .hero-content h1 {
        font-size: 34px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
    }
    .streams {
        padding: 30px 20px;
    }
    .stream-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .article-section {
        padding: 30px 20px;
    }
    .article-container {
        padding: 25px;
    }
    .article-header h1 {
        font-size: 28px;
    }
    .article-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    footer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .stream-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 28px;
    }
    .card-image {
        height: 140px;
    }
    .sport-icon {
        font-size: 52px;
    }
    .article-header h1 {
        font-size: 24px;
    }
    .hero-stats {
        gap: 20px;
    }
    .stat-number {
        font-size: 26px;
    }
}