:root {
    /* Brand Colors from Logo */
    --gold: #FFA500;
    --gold-dark: #FF8C00;
    --gold-light: #FFB732;
    --bronze: #CD7F32;
    --orange: #FF6B00;
    --black: #000000;
    --dark-grey: #1a1a1a;
    --medium-grey: #2d2d2d;
    --light-grey: #4a4a4a;
    --silver: #C0C0C0;
    --white: #ffffff;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(255,165,0,0.2) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    color: var(--white);
    background: var(--black);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.gold-text {
    color: var(--gold);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 5px 30px rgba(255, 165, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.logo-text h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1;
}

.logo-text span {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 16px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.admin-link {
    background: var(--gold);
    color: var(--black);
    font-weight: 700;
}

.admin-link:hover {
    background: var(--gold-dark);
    color: var(--black);
}

.admin-link::before {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,165,0,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>'),
        radial-gradient(circle at 30% 50%, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid var(--gold);
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 30px;
    margin-top: 40px;
}

.hero-badge span {
    color: var(--gold);
    font-size: 20px;
}

.hero-badge p {
    color: var(--white);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 100px;
    line-height: 0.9;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(255, 165, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    letter-spacing: 8px;
    color: var(--white);
    margin-bottom: 10px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-tagline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 6px;
    color: var(--gold);
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 550px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.btn {
    padding: 15px 35px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--black);
    box-shadow: 0 5px 20px rgba(255, 165, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 12px 25px;
    font-size: 14px;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
color: wheat;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    animation: fadeInRight 0.8s ease-out 0.4s backwards;
}

.stat-card {
    background: rgba(255, 165, 0, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 165, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.2);
    background: rgba(255, 165, 0, 0.1);
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    color: var(--gold);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 50px;
    background: var(--gold);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(20px); opacity: 0.3; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

section:nth-child(even) {
    background: var(--dark-grey);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 0 auto;
    border-radius: 2px;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* About Section */
.about {
    background: var(--black);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.lead-text {
    font-size: 24px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 25px;
    line-height: 1.6;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.core-values {
    margin-top: 50px;
}

.core-values h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 30px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.value-item {
    background: rgba(255, 165, 0, 0.05);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: var(--gold);
    background: rgba(255, 165, 0, 0.1);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.value-item h4 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 10px;
}

.value-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.about-image {
    position: sticky;
    top: 100px;
}

.logo-large {
    width: 100%;
    max-width: 400px;
    margin-bottom: 30px;
    border-radius: 15px;
    border: 3px solid var(--gold);
    box-shadow: 0 10px 40px rgba(255, 165, 0, 0.3);
}

.achievement-highlights {
    background: rgba(255, 165, 0, 0.05);
    border: 1px solid rgba(255, 165, 0, 0.2);
    border-radius: 15px;
    padding: 20px;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 165, 0, 0.1);
}

.achievement-item:last-child {
    border-bottom: none;
}

.achievement-icon {
    font-size: 30px;
}

.achievement-item h5 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 5px;
}

.achievement-item p {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
}

/* Teams Section */
.teams {
    background: var(--dark-grey);
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}
.team-leadership {
    margin: 20px 0;
    display: grid;
    gap: 12px;
}

.leader-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 165, 0, 0.18);
}

.leader-image img,
.leader-placeholder {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
}

.leader-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    font-size: 24px;
}

.leader-info span {
    display: block;
    font-size: 0.75rem;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.leader-info h4 {
    margin: 0;
    color: #fff;
    font-size: 1rem;
}
.team-card {
    background: rgba(255, 165, 0, 0.05);
    border: 1px solid rgba(255, 165, 0, 0.2);
    border-radius: 15px;
    padding: 35px;
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(255, 165, 0, 0.2);
}

.team-header {
    margin-bottom: 20px;
}

.team-header h3 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 10px;
}

.team-division {
    display: inline-block;
    padding: 6px 15px;
    background: var(--gradient-gold);
    color: var(--black);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.6;
}

.team-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 165, 0, 0.2);
    border-bottom: 1px solid rgba(255, 165, 0, 0.2);
}

.team-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Players Section */
.players {
    background: var(--black);
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.player-card {
    background: rgba(255, 165, 0, 0.05);
    border: 1px solid rgba(255, 165, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.player-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 50px rgba(255, 165, 0, 0.3);
}

.player-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.2), rgba(255, 140, 0, 0.2));
}

.player-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.player-card:hover .player-image img {
    transform: scale(1.1);
}

.player-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
}

.jersey-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.player-info {
    padding: 25px;
}

.player-info h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 8px;
}

.player-role {
    color: var(--gold);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 15px;
}

.player-stats-mini {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.player-stats-mini span {
    background: rgba(255, 165, 0, 0.1);
    padding: 5px 12px;
    border-radius: 15px;
}

/* Matches Section */
.matches {
    background: var(--dark-grey);
}

.matches-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid rgba(255, 165, 0, 0.3);
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--gradient-gold);
    color: var(--black);
    border-color: var(--gold);
}

.matches-content {
    max-width: 900px;
    margin: 0 auto;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.match-card {
    background: rgba(255, 165, 0, 0.05);
    border: 1px solid rgba(255, 165, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.match-card:hover {
    border-color: var(--gold);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(255, 165, 0, 0.2);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 165, 0, 0.1);
}

.match-date {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.match-badge {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.match-badge.league {
    background: rgba(255, 165, 0, 0.2);
    color: var(--gold);
}

.match-badge.tournament {
    background: rgba(255, 100, 0, 0.2);
    color: #FF6400;
}

.match-badge.friendly {
    background: rgba(192, 192, 192, 0.2);
    color: var(--silver);
}

.match-teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.team {
    display: flex;
    align-items: center;
    gap: 15px;
}

.team.opponent {
    justify-content: flex-end;
}

.team-logo-small {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.team-name {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
}

.match-vs {
    font-size: 16px;
    color: var(--gold);
    font-weight: 700;
}

.score {
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
    margin-left: 15px;
}

.match-info {
    display: flex;
    gap: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    flex-wrap: wrap;
}

.match-result {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.match-result.won {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.match-result.lost {
    background: rgba(255, 0, 0, 0.1);
    color: #ff4444;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.match-result.tied {
    background: rgba(255, 165, 0, 0.1);
    color: var(--gold);
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.match-result-details {
    background: rgba(255, 165, 0, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    color: var(--gold);
    font-weight: 600;
    text-align: center;
}

.no-data {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
}

/* Videos Section */
.videos {
    background: var(--black);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.video-card {
    background: rgba(255, 165, 0, 0.05);
    border: 1px solid rgba(255, 165, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(255, 165, 0, 0.3);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.2), rgba(255, 140, 0, 0.2));
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--gold);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 165, 0, 0.5);
}

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-type-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    background: var(--black);
    color: var(--gold);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid var(--gold);
}

.video-info {
    padding: 25px;
}

.video-info h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.video-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* News Section */
.news {
    background: var(--dark-grey);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background: rgba(255, 165, 0, 0.05);
    border: 1px solid rgba(255, 165, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(255, 165, 0, 0.3);
}

.news-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.2), rgba(255, 140, 0, 0.2));
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 15px;
    background: var(--gradient-gold);
    color: var(--black);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.news-content {
    padding: 25px;
}

.news-date {
    display: block;
    font-size: 13px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 600;
}

.news-content h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--gold);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--gold-light);
    letter-spacing: 2px;
}

/* Gallery Section */
.gallery {
    background: var(--black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 25px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: var(--gold);
    font-size: 14px;
}

/* Contact Section */
.contact {
    background: var(--dark-grey);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: rgba(255, 165, 0, 0.05);
    border: 1px solid rgba(255, 165, 0, 0.2);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.contact-card h3 {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 12px;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-btn {
    display: inline-block;
    padding: 10px 25px;
    background: var(--gradient-gold);
    color: var(--black);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 165, 0, 0.4);
}

.contact-form {
    background: rgba(255, 165, 0, 0.05);
    border: 1px solid rgba(255, 165, 0, 0.2);
    padding: 40px;
    border-radius: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Footer */
.footer {
    background: var(--black);
    padding: 60px 0 30px;
    border-top: 2px solid var(--gold);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.footer-brand h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.footer-tagline {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 4px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-links h4,
.footer-social h4 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.social-link {
    display: block;
    margin-bottom: 10px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 165, 0, 0.2);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 80px;
    }
    
    .section-title {
        font-size: 50px;
    }
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 78px;
        left: -100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 40px 0;
        gap: 0;
        transition: left 0.3s ease;
        border-top: 2px solid var(--gold);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 30px;
        width: 100%;
    }

    .nav-link {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 60px;
    }

    .hero-description {
        margin: 0 auto 40px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        position: static;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 50px;
    }

    .section-title {
        font-size: 40px;
    }

    .hero-buttons,
    .form-row {
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .match-teams {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .team {
        justify-content: center;
    }

    .team.opponent {
        justify-content: center;
    }

    .players-grid,
    .videos-grid,
    .news-grid,
    .gallery-grid,
    .teams-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}


/* Lazy loading */
img.lazy {
    opacity: 0;
    transition: opacity .3s ease;
}
img:not(.lazy) {
    opacity: 1;
}

/* Video modal */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.video-modal.active {
    display: flex;
}
.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}
.video-modal iframe {
    width: 100%;
    height: 500px;
}
.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
}

/* Instagram placeholder */
.video-placeholder.insta {
    background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af);
    color: #fff;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

    .page-header {
            background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
            padding: 80px 20px 60px;
            text-align: center;
            border-bottom: 3px solid var(--gold);
            position: relative;
            overflow: hidden;
        }
        
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(255, 165, 0, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }