/* General Page Styling */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
}

/* HEADER & NAVBAR */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #000000, #2E8B57);
    color: white;
    padding: 15px 20px;
    font-family: Arial, sans-serif;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid #1e5b3c;
    border-radius: 8px;
}

/* Logo */
.logo img {
    width: 100px;
    height: auto;
    border-radius: 50%;
}

/* Title */
header h1 {
    margin: 0;
    font-size: 26px;
    text-transform: uppercase;
    flex-grow: 1;
    text-align: center;
}

/* Navigation */
nav {
    display: flex;
    gap: 10px;
}

nav button {
    background: white;
    color: #2E8B57;
    border: none;
    padding: 8px 15px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

nav button:hover {
    background: #1e5b3c;
    color: white;
}

/* Mobile Menu */
.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        align-items: center;
    }

    nav.show {
        display: flex;
    }

    .menu-icon {
        display: block;
    }
}

/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    background: black;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-overlay p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    background: red;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1rem;
    margin: 10px;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: darkred;
}

/* ABOUT SECTION */
.about {
    display: flex;
    align-items: center;
    padding: 50px;
    background: white;
}

.about-content {
    width: 50%;
    padding: 20px;
}

.about img {
    width: 50%;
    border-radius: 10px;
}

/* FEATURED PLAYERS */
.featured-players {
    text-align: center;
    padding: 50px;
    background: #e6f2ff;
}

.players {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.player {
    background: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

.player img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.player h3 {
    margin: 10px 0 5px;
}

/* UPCOMING MATCHES */
.matches {
    text-align: center;
    padding: 40px;
    background: white;
}

.match {
    background: red;
    color: white;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
}

/* CONTAINER STYLING */
.container {
    width: 90%;
    max-width: 500px;
    background: white;
    padding: 20px;
    margin: 50px auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Heading */
h2 {
    text-align: center;
    color: #008080;
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: bold;
    margin-top: 10px;
}

input, select, textarea {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* BUTTON STYLING */
button {
    margin-top: 15px;
    background: #008080;
    color: white;
    padding: 12px;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

button:hover {
    background: #005f5f;










    .container {
        max-width: 800px;
        margin: 20px auto;
        padding: 20px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
    }
    
    th, td {
        padding: 12px;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }
    
    th {
        background-color: #007bff;
        color: #fff;
    }
    
    ul {
        list-style-type: none;
        padding: 0;
    }
    
    ul li {
        background: #f9f9f9;
        padding: 10px;
        margin-bottom: 10px;
        border-radius: 4px;
    }








    .media-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .media-item img, .media-item video {
        width: 100%;
        border-radius: 8px;
    }
    
    .media-item p {
        margin-top: 10px;
        font-size: 0.9em;
        color: #555;
    }












    .fan-messages {
        margin-top: 20px;
    }
    
    .message {
        background: #f9f9f9;
        padding: 15px;
        border-radius: 4px;
        margin-bottom: 10px;
        border: 1px solid #ddd;
    }
    
    .fan-name {
        font-weight: bold;
        color: #007bff;
    }
    
    .timestamp {
        font-size: 0.9em;
        color: #666;
    }
    
    .content {
        margin-top: 10px;
    }


















}

/* FOOTER */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.social-icons a {
    color: white;
    font-size: 20px;
    margin: 0 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #2E8B57;
}

.about {
    margin-top: 10px;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .container {
        width: 95%;
        padding: 15px;
    }
}
