/* Global Styles */
body {
    background-color: #0a0a0a;
    color: white;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}
a .logo {
    width: 8px;
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease;
}

/* Hover effect for the logo */
a:hover .logo {
    transform: scale(1.06);
    opacity: 0.9; /* Adds opacity effect on hover */
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #0057ff, #002e99);
    padding: 15px 30px;
    box-shadow: 0px 4px 10px rgba(0, 170, 255, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-right: 10%;
}

.nav-links li {
    transition: transform 0.3s ease;
}

.nav-links li:hover {
    transform: scale(1.1);
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffcc00;
}

/* Logo Styling */
.logo1 {
    height: 50px;
    width: 50px;
}

/* Hero Section */
.hero {
    background: url('banner.jpg') no-repeat center center/cover;
    text-align: center;
    padding: 120px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.coming-soon {
    background: #ff4500;
    color: white;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.coming-soon:hover {
    background: #ff6320;
    transform: scale(1.05);
}

/* Highlights Section */
.highlights {
    padding: 40px;
    text-align: center;
}

.highlight-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Individual Match Highlight Card */
.highlight-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 12px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: scale(1.05);
}

.highlight-card img {
    width: 100%;
    border-radius: 12px;
    height: 180px;
    object-fit: cover;
}

.highlight-card h3 {
    font-size: 18px;
    margin: 12px 0;
    color: #ffcc00;
}

.watch-button {
    background: #008000;
    color: white;
    padding: 12px;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
}

.watch-button:hover {
    background: #00b300;
    transform: scale(1.05);
}
