* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #1a1a1a;
    color: #fff;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #222;
}

.logo img {
    width: 100px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #ec008c;
}

/* Hero Section */
#hero {
    position: relative;
    text-align: center;
    padding: 4rem 2rem;
    background: #222;
}

.hero-content {
    position: relative;
}

.hero-content h1 {
    font-size: 6rem;
    text-transform: uppercase;
    color: #fff;
}

.hero-content h1 span {
    color: #ec008c;
}

.player-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 400px;
    z-index: 1;
}

/* Sections */
section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    color: #ec008c;
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
}

/* Animations */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.animate-slide-in {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 0.8s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Schedule Section */
.schedule-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule-item {
    background: #333;
    padding: 1rem;
    border-left: 4px solid #ec008c;
}

.schedule-item p {
    margin: 0.5rem 0;
}

#countdown {
    color: #ec008c;
    font-weight: bold;
}

/* Replays Section */
.replay-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.replay-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #333;
    padding: 1rem;
    border: 2px solid #ec008c;
}

.replay-item img {
    width: 50px;
}

.replay-item span {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ec008c;
}

/* This Week Section */
.this-week-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.match-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #333;
    padding: 1rem;
    border: 2px solid #ec008c;
}

.match-item img {
    width: 50px;
}

.match-item span {
    font-size: 1.2rem;
    color: #ec008c;
}

/* Live Stream Section */
.stream-card {
    background: #333;
    border: 2px solid #ec008c;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.stream-card:hover {
    transform: scale(1.05);
}

.stream-card img {
    width: 100%;
}

.stream-card h3 {
    color: #ec008c;
    margin-top: 0.5rem;
}

/* Overlay for Streaming */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.overlay-content {
    background: #333;
    padding: 1rem;
    border: 2px solid #ec008c;
    position: relative;
    width: 80%;
    max-width: 800px;
    text-align: center;
}

iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.close-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #ec008c;
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    margin: 1rem auto;
    transition: opacity 0.3s ease-out;
}

.close-btn:hover {
    opacity: 0.8;
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.news-item {
    background: #333;
    padding: 1rem;
    border: 2px solid #ec008c;
}

.news-item img {
    width: 100%;
}

.news-item p {
    margin: 0.5rem 0;
}

/* Footer */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .overlay-content {
        width: 90%;
    }

    iframe {
        height: 200px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .player-img {
        max-width: 200px;
    }

    .replay-grid, .this-week-grid {
        flex-direction: column;
    }
}