* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0a1929 0%, #1e3c72 100%);
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
    border-bottom: 2px solid #00d4ff;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #00d4ff, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

header p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 10px;
}

.current-date {
    font-size: 1rem;
    color: #00d4ff;
    font-weight: bold;
}

.match-day {
    margin-bottom: 30px;
}

.match-day h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #00d4ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.match-day h2 i {
    margin-right: 10px;
}

.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.match-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.match-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.2);
}

.match-time {
    font-size: 0.9rem;
    color: #00d4ff;
    margin-bottom: 15px;
    text-align: center;
}

.teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.team-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-weight: bold;
    color: #1e3c72;
    font-size: 1.2rem;
}

.team-name {
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
}

.vs {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff0080;
    margin: 0 10px;
}

.match-status {
    text-align: center;
    margin-bottom: 15px;
}

.status-live {
    background: #ff0080;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.status-upcoming {
    background: #00d4ff;
    color: #1e3c72;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 128, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 128, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 128, 0);
    }
}

.live-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #00d4ff, #ff0080);
    color: #ffffff;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.live-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.stream-sources {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stream-sources h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #00d4ff;
}

.stream-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.stream-link {
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.stream-link:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

.highlights-section {
    margin-top: 50px;
}

.highlights-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #00d4ff;
    text-align: center;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.2);
}

.highlight-thumbnail {
    width: 100%;
    height: 150px;
    background: linear-gradient(45deg, #1e3c72, #0a1929);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #00d4ff;
}

.highlight-content {
    padding: 15px;
}

.highlight-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.highlight-description {
    font-size: 0.9rem;
    opacity: 0.8;
}

footer {
    margin-top: 50px;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

@media (max-width: 768px) {
    .matches-grid {
        grid-template-columns: 1fr;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .match-day h2,
    .highlights-section h2 {
        font-size: 1.5rem;
    }
}