/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #121212;
    --golden-color: #FFD700;
    --white-color: #FFFFFF;
    --text-color: #f0f0f0;
    --accent-color: var(--golden-color);
    --section-padding: 6rem 0;
    --container-padding: 0 2rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--golden-color);
    box-shadow: 0 0 10px var(--golden-color);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.85));
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--golden-color);
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 0.3rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-img {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    border: 2px solid var(--golden-color);
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--golden-color);
}

.nav-list {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--golden-color);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--golden-color);
}

.nav-link:hover {
    color: var(--golden-color);
}

.nav-link:hover::before {
    width: 100%;
}

/* 🟢 Dropdown Menu Fixes Below */

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid var(--golden-color);
    border-radius: 5px;
    min-width: 160px;
    padding: 0.5rem 0;
    z-index: 2000;
    list-style: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: background 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: rgba(255, 215, 0, 0.1); /* light golden on hover */
    color: var(--golden-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url("img.png") center/cover no-repeat;
    overflow: hidden;
    padding-top: 80px;
    border-bottom: 2px solid var(--golden-color);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease infinite alternate;
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.2;
    background: linear-gradient(45deg, var(--golden-color), var(--white-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Shop Section */
.shop {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, #000000, #0a0a0a);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--golden-color);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 1rem;
}

.product-description {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.product-button {
    width: 100%;
    padding: 0.75rem;
    background: var(--golden-color);
    color: var(--bg-color);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-button:hover {
    background: var(--white-color);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.shop-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-group {
    position: relative;
}

.filter-select {
    padding: 0.75rem 2rem;
    background-color: rgb(255, 255, 255); /* Light transparent yellow */
    border: 1px solid var(--golden-color);
    color: black; /* 🔧 Ensure text is readable */
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    appearance: none;
    min-width: 200px;
}
.filter-select option {
    background-color: rgba(255, 255, 0, 0.695); /* 🔧 Ensures dropdown items are yellow too */
    color: black;             /* 🔧 Ensures text is readable */
}


.filter-select:focus {
    outline: none;
    border-color: var(--white-color);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.filter-group::after {
    content: '▼';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--golden-color);
    pointer-events: none;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--golden-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--golden-color);
    color: var(--bg-color);
    box-shadow: 0 0 20px rgba(var(--golden-color), 0.5);
}

.btn-secondary {
    background: var(--white-color);
    color: var(--bg-color);
    box-shadow: 0 0 20px rgba(var(--white-color), 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

/* Teams Section */
.teams {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, #000000, #0a0a0a);
}

.player-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

/* Schedule Section */
.schedule {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, #0a0a0a, #000000);
    border-top: 1px solid var(--golden-color);
    border-bottom: 1px solid var(--golden-color);
}

/* News Section */
.news {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, #0a0a0a, #000000);
    border-top: 1px solid var(--golden-color);
    border-bottom: 1px solid var(--golden-color);
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, #000000, #0a0a0a);
    border-top: 1px solid var(--golden-color);
    border-bottom: 1px solid var(--golden-color);
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--golden-color);
    color: var(--bg-color);
    box-shadow: 0 0 20px rgba(var(--golden-color), 0.5);
}

.btn-secondary {
    background: var(--white-color);
    color: var(--bg-color);
    box-shadow: 0 0 20px rgba(var(--white-color), 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

/* Teams Section */
.teams {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, #000000, #0a0a0a);
}

.player-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}
/* Teams Section Styling (Already provided above) */
.teams {
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9), rgba(20, 20, 20, 0.95));
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-color);
    border-top: 1px solid var(--golden-color);
    border-bottom: 1px solid var(--golden-color);
}

.teams .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--golden-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: var(--golden-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--golden-color);
}

/* Filter Buttons */
.team-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--golden-color);
    color: var(--text-color);
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.filter-btn:hover {
    background: var(--golden-color);
    color: #000;
    box-shadow: 0 0 15px var(--golden-color);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--golden-color);
    color: #000;
    box-shadow: 0 0 20px var(--golden-color);
}

/* Team Cards */
.team-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.team-card {
  display: none;
}

.team-card.show {
  display: block;
}


.team-card {
    background-color: rgba(0, 0, 0, 0.85);
    border: 1px solid var(--golden-color);
    border-radius: 10px;
    padding: 2rem;
    width: 250px;
    text-align: center;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
    display: none;
}

.team-card a {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background: var(--golden-color);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.team-card a:hover {
    background: #fff8c2;
    color: #000;
}

.team-card.show {
    display: block;
}

/* Schedule Section */
.schedule {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, #0a0a0a, #000000);
}

/* News Section */
.news {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, #0a0a0a, #000000);
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, #000000, #0a0a0a);
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Team Pages Styles */
.team-page {
    padding-top: 2rem;
}

.team-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.team-page .back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--golden-color);
    color: var(--bg-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.team-page .back-button:hover {
    background-color: var(--white-color);
    transform: translateX(-5px);
}

.team-page h1 {
    font-size: 3rem;
    color: var(--golden-color);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.team-page .player-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.team-page .player-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.team-page .player-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    border-color: var(--golden-color);
}

.team-page .player-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-bottom: 2px solid var(--golden-color);
}

.team-page .player-info {
    padding: 1.5rem;
}

.team-page .player-info h3 {
    font-size: 1.5rem;
    color: var(--golden-color);
    margin-bottom: 0.5rem;
}

.team-page .player-info p {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.team-page .player-info a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--golden-color);
    color: var(--bg-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.team-page .player-info a:hover {
    background-color: var(--white-color);
    transform: translateY(-2px);
}

/* Animations */
@keyframes pulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-list {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-out;
    }

    .nav-list.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

.section-title {
        font-size: 2rem;
    }
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #000;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Team Pages Styles */
.team-page {
    padding-top: 2rem;
}

.team-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.team-page .back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--golden-color);
    color: var(--bg-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.team-page .back-button:hover {
    background-color: var(--white-color);
    transform: translateX(-5px);
}

.team-page h1 {
    font-size: 3rem;
    color: var(--golden-color);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.team-page .player-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.team-page .player-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.team-page .player-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    border-color: var(--golden-color);
}

.team-page .player-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-bottom: 2px solid var(--golden-color);
}

.team-page .player-info {
    padding: 1.5rem;
}

.team-page .player-info h3 {
    font-size: 1.5rem;
    color: var(--golden-color);
    margin-bottom: 0.5rem;
}

.team-page .player-info p {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.team-page .player-info a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--golden-color);
    color: var(--bg-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.team-page .player-info a:hover {
    background-color: var(--white-color);
    transform: translateY(-2px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--golden-color);
    color: var(--bg-color);
    box-shadow: 0 0 20px rgba(var(--golden-color), 0.5);
}

.btn-secondary {
    background: var(--white-color);
    color: var(--bg-color);
    box-shadow: 0 0 20px rgba(var(--white-color), 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

/* Teams Section */
.teams {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, #000000, #0a0a0a);
}

.player-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

/* Schedule Section */
.schedule {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, #0a0a0a, #000000);
}

/* News Section */
.news {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, #0a0a0a, #000000);
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, #000000, #0a0a0a);
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Schedule Section */
.schedule {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, #0a0a0a, #000000);
}

.schedule-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.tab-btn {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--golden-color);
    padding: 0.75rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--golden-color);
    color: var(--bg-color);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.schedule-content {
    position: relative;
    min-height: 300px; /* Ensure content area has a minimum height */
}

.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.3s ease;
}

.matches-grid.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-list {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-out;
    }

    .nav-list.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}
#scroll-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1000;
}

#scroll-to-top img {
  width: 100%;
  height: 100%;
  transition: filter 0.3s ease, transform 0.3s ease;
  animation: yellowGlowPulse 2s infinite ease-in-out;
}

@keyframes yellowGlowPulse {
  0%, 100% {
    filter: drop-shadow(0 0 4px #000000) drop-shadow(0 0 8px #ffffff);
  }
  50% {
    filter: drop-shadow(0 0 8px #000000) drop-shadow(0 0 12px #796f00);
  }
}

#scroll-to-top img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 12px #fff176) drop-shadow(0 0 20px #ffea00);
}

.contact {
  background-color: #000; /* Pure black */
  padding: 60px 20px;
  color: #fff;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #444;
  border-radius: 6px;
  background-color: #222;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus {
  outline: none;
  border-color: #ffdb4d;
  box-shadow: 0 0 8px #ffdb4d;
  background-color: #1a1a1a;
}
.about {
    padding: 60px 20px;
    background-color: #121212; /* black-themed */
    color: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #ff416c; /* optional color highlight */
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-text h3 {
    font-size: 24px;
    color: #fff42b;
    margin-top: 20px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.news-card {
  background-color: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 75, 43, 0.3);
}

.news-image {
  height: 230px;
  background-size: cover;
  background-position: center;
}

.news-content {
  padding: 20px;
}

.news-content h3 {
  font-size: 20px;
  color: #fff42b;
  margin-bottom: 10px;
}

.news-content p {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 10px;
}

.news-date {
  font-size: 12px;
  color: #888888;
  font-style: italic;
}
.about-description .more-text {
  display: none;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.toggle-btn {
  display: inline-block;
  margin-top: 16px; /* adds space between text and button */
  padding: 10px 20px;
  background-color: #e0e639;
  color: rgb(8, 8, 8);
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.toggle-btn:hover {
  background-color: #d62828;
}

.gallery {
  padding: 60px 20px;
  background-color: #0d0d0d;
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 24px rgba(255, 204, 0, 0.3);
}

.gallery-card img,
.gallery-card video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Overlay Styling */
.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  color: #000;
  text-align: center;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}

.gallery-card:hover .overlay {
  transform: translateY(0);
}

.overlay h4,
.overlay p {
  width: 100%;
  margin: 0;
  padding: 16px 0;
  background: linear-gradient(to right, #ffffff, #ffd000d4);
  color: #000;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9); /* black shadow on text */
  box-shadow: inset 0 0 20px rgba(255, 255, 0, 0.4), 0 0 12px rgba(255, 255, 0, 0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.gallery-card:hover .overlay h4,
.gallery-card:hover .overlay p {
  opacity: 1;
  transform: translateY(0);
}


/* Optional: Animated glow pulse */
@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 10px #000, 0 0 20px rgba(255, 255, 0, 0.6);
  }
  50% {
    box-shadow: 0 0 15px #000, 0 0 30px rgba(255, 255, 0, 0.9);
  }
}
.overlay h4 {
  animation: glowPulse 1.6s infinite;
}

.youtube-preview {
  margin-top: 40px;
  text-align: center;
}

.youtube-preview h4 {
  font-size: 1.5rem;
  color: #ffcc00;
  margin-bottom: 16px;
}

.youtube-preview iframe {
  max-width: 100%;
  border: 4px solid #ffcc00;
  border-radius: 8px;
}

.live-video-sticky {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  height: 200px;
  border: 3px solid #ffcc00;
  border-radius: 10px;
  background-color: #000;
  z-index: 9999;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
}

.live-video-sticky iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.close-video {
  position: absolute;
  top: 4px;
  right: 6px;
  background: #ffcc00;
  border: none;
  font-size: 18px;
  line-height: 18px;
  font-weight: bold;
  cursor: pointer;
  color: #000;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  padding: 0;
}

.close-video:hover {
  background-color: #ffc107;
}

/* Default styles (for desktop) - already written in your CSS */

/* Mobile-optimized match card responsiveness */

.match-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--golden-color);
  border-radius: 10px;
  padding: 1rem;
  margin: 1rem auto;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.teams {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.team {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 45%;
  justify-content: center;
}

.team img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.versus {
  font-size: 1.2rem;
  color: var(--golden-color);
  margin: 0.5rem auto;
  text-align: center;
}

.match-footer {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.match-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.match-actions img {
  width: 24px;
  height: 24px;
  cursor: pointer;
  filter: invert(1);
  transition: transform 0.3s;
}

.match-actions img:hover {
  transform: scale(1.1);
}

.score, .time {
  color: var(--white-color);
  font-weight: 600;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  .teams {
    flex-direction: column;
    gap: 1rem;
  }

  .team {
    justify-content: center;
  }

  .match-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .match-actions {
    justify-content: flex-start;
  }

  .match-card {
    padding: 1rem;
  }
}
#scroll-to-top {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  position: fixed; /* Important */
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

#scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
/* Scrollbar width and shape */
::-webkit-scrollbar {
  width: 10px;
}

/* Scrollbar track */
::-webkit-scrollbar-track {
  background-color: #0d0d0d;  /* Deep black */
  border-left: 1px solid #2c2c2c;
}

/* Scrollbar thumb with glow */
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #fff8dc, #d4af37, #b8860b);
  border-radius: 8px;
  border: 2px solid #0d0d0d;
  box-shadow: 
    0 0 8px rgba(255, 215, 0, 0.4),   /* Golden glow */
    0 0 4px rgba(255, 255, 255, 0.2); /* White soft glow */
}

/* Scrollbar thumb on hover with brighter glow */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #f5deb3, #ffd700, #cfa500);
  box-shadow: 
    0 0 12px rgba(255, 215, 0, 0.7),
    0 0 6px rgba(255, 255, 255, 0.3);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}
