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

:root {
    --primary: #1a5f2a;
    --primary-dark: #0d3d18;
    --primary-light: #2d8a42;
    --accent: #f5a623;
    --accent-dark: #d4901a;
    --white: #ffffff;
    --light: #f8f9fa;
    --dark: #1a1a2e;
    --gray: #6c757d;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    min-height: 100vh;
}

/* 3D Moving Background */
.bg-3d-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #0d1b0e 0%, #1a2e1c 50%, #0a1a0c 100%);
}

.bg-3d-layer {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-size: 400px 400px;
    opacity: 0.08;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.bg-3d-layer.layer-1 {
    background-image:
        url('../images/slides/swimming.jpg'),
        url('../images/slides/badminton.jpg'),
        url('../images/slides/squash.jpg');
    background-blend-mode: overlay;
    background-position: 0% 0%, 33% 33%, 66% 66%;
    animation: move3d1 25s linear infinite;
}

.bg-3d-layer.layer-2 {
    background-image:
        url('../images/slides/cricket.jpg'),
        url('../images/slides/table-tennis.jpg'),
        url('../images/slides/pickleball.jpg');
    background-blend-mode: overlay;
    background-position: 50% 50%, 20% 80%, 80% 20%;
    animation: move3d2 30s linear infinite reverse;
    opacity: 0.06;
}

.bg-3d-layer.layer-3 {
    background-image:
        url('../images/slides/badminton.jpg'),
        url('../images/slides/cricket.jpg'),
        url('../images/slides/swimming.jpg');
    background-blend-mode: overlay;
    background-position: 10% 90%, 90% 10%, 50% 50%;
    animation: move3d3 35s linear infinite;
    opacity: 0.04;
}

@keyframes move3d1 {
    0% { transform: perspective(500px) rotateX(0deg) rotateY(0deg) translate(0, 0); }
    25% { transform: perspective(500px) rotateX(5deg) rotateY(10deg) translate(2%, 3%); }
    50% { transform: perspective(500px) rotateX(0deg) rotateY(20deg) translate(0, 5%); }
    75% { transform: perspective(500px) rotateX(-5deg) rotateY(10deg) translate(-2%, 3%); }
    100% { transform: perspective(500px) rotateX(0deg) rotateY(0deg) translate(0, 0); }
}

@keyframes move3d2 {
    0% { transform: perspective(600px) rotateX(0deg) rotateY(0deg) scale(1); }
    33% { transform: perspective(600px) rotateX(8deg) rotateY(-15deg) scale(1.05); }
    66% { transform: perspective(600px) rotateX(-4deg) rotateY(10deg) scale(0.98); }
    100% { transform: perspective(600px) rotateX(0deg) rotateY(0deg) scale(1); }
}

@keyframes move3d3 {
    0% { transform: perspective(400px) rotateY(0deg) rotateX(0deg); }
    50% { transform: perspective(400px) rotateY(-20deg) rotateX(10deg); }
    100% { transform: perspective(400px) rotateY(0deg) rotateX(0deg); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 29, 14, 0.95);
    backdrop-filter: blur(20px);
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    height: 60px;
    background: rgba(13, 29, 14, 0.98);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
}

.nav-brand-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 1px;
    line-height: 1.2;
}

.nav-brand-tagline {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 3px;
    text-transform: uppercase;
}

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

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
    background: rgba(245, 166, 35, 0.1);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--accent);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-admin-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
    color: var(--dark) !important;
    font-weight: 700 !important;
    padding: 8px 20px !important;
    border-radius: 25px !important;
}

.nav-admin-btn::after {
    display: none !important;
}

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

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

/* Hero / Slideshow Section */
.hero {
    margin-top: 75px;
    height: 85vh;
    position: relative;
    overflow: hidden;
}

.slideshow {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.45);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13, 29, 14, 0.5) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(13, 29, 14, 0.8) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 40px;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
    letter-spacing: 2px;
    animation: slideUp 0.8s ease-out;
}

.slide-content .sport-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--dark);
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.slide-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    animation: slideUp 0.8s ease-out 0.4s both;
}

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

.slideshow-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slide-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slide-dot.active {
    background: var(--accent);
    border-color: var(--white);
    transform: scale(1.2);
}

.slide-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.slideshow-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-btn:hover {
    background: var(--accent);
    color: var(--dark);
    transform: scale(1.1);
}

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

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-header .underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    margin: 15px auto;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Sports Grid */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sport-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
}

.sport-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--accent);
}

.sport-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.sport-card-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: rgba(245, 166, 35, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.sport-card-body {
    padding: 25px;
}

.sport-card-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.sport-card-body p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.sport-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 12px;
    transition: gap 0.3s ease;
}

.sport-card:hover .sport-card-arrow {
    gap: 12px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(245, 166, 35, 0.2);
    transform: scale(1.05);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.contact-card a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--white);
}

/* Footer */
.footer {
    background: rgba(10, 20, 10, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 40px 25px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

/* Sport Detail Page */
.sport-hero {
    margin-top: 75px;
    height: 50vh;
    position: relative;
    overflow: hidden;
}

.sport-hero-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.35);
}

.sport-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 29, 14, 0.4) 0%, rgba(13, 29, 14, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.sport-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.sport-hero-content .sport-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--dark);
    padding: 6px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

.sport-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.sport-description h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 15px;
}

.sport-description p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.sport-highlights {
    display: grid;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(245, 166, 35, 0.08);
    border: 1px solid rgba(245, 166, 35, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(245, 166, 35, 0.15);
    transform: translateX(5px);
}

.highlight-icon {
    width: 45px;
    height: 45px;
    background: rgba(245, 166, 35, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.highlight-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 3px;
}

.highlight-text p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Gallery */
.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--accent);
    color: var(--dark);
    border-color: var(--accent);
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--accent);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-info h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.gallery-item-info span {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
}

.gallery-upload-btn {
    display: block;
    margin: 40px auto 0;
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border: none;
    border-radius: 30px;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-upload-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.3);
}

/* Login Page */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    margin-top: 0;
}

.login-box {
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.login-box h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    margin-bottom: 8px;
}

.login-box .login-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 35px;
}

.login-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.login-logo img {
    height: 60px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus {
    border-color: var(--accent);
    background: rgba(245, 166, 35, 0.08);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

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

.login-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border: none;
    border-radius: 12px;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.3);
}

.login-error {
    color: #ff6b6b;
    font-size: 0.85rem;
    text-align: center;
    margin-top: 15px;
    display: none;
}

/* Admin Panel */
.admin-panel {
    margin-top: 75px;
    padding: 40px;
    min-height: calc(100vh - 75px);
}

.admin-header {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.admin-logout-btn {
    padding: 10px 25px;
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 10px;
    color: #ff6b6b;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-logout-btn:hover {
    background: rgba(255, 107, 107, 0.3);
}

.admin-tabs {
    max-width: 1200px;
    margin: 0 auto 30px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.admin-tab {
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-tab:hover,
.admin-tab.active {
    background: var(--accent);
    color: var(--dark);
    border-color: var(--accent);
}

.admin-content {
    max-width: 1200px;
    margin: 0 auto;
}

.admin-section {
    display: none;
}

.admin-section.active {
    display: block;
}

.admin-form-group {
    margin-bottom: 20px;
}

.admin-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.admin-form-group input,
.admin-form-group textarea,
.admin-form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: var(--white);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.admin-form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.admin-form-group input:focus,
.admin-form-group textarea:focus,
.admin-form-group select:focus {
    border-color: var(--accent);
    background: rgba(245, 166, 35, 0.08);
}

.admin-form-group select option {
    background: #1a2e1c;
    color: var(--white);
}

.admin-save-btn {
    padding: 12px 35px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border: none;
    border-radius: 10px;
    color: var(--dark);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-save-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.3);
}

.admin-success {
    color: #51cf66;
    font-size: 0.9rem;
    margin-top: 10px;
    display: none;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 107, 107, 0.5);
    transform: rotate(90deg);
}

/* Upload Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: rgba(26, 46, 28, 0.98);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    text-align: center;
}

.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.modal-cancel-btn {
    flex: 1;
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-cancel-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.modal-submit-btn {
    flex: 1;
    padding: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border: none;
    border-radius: 10px;
    color: var(--dark);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.3);
}

.file-upload-area {
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-area:hover {
    border-color: var(--accent);
    background: rgba(245, 166, 35, 0.05);
}

.file-upload-area p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.file-upload-area .upload-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.file-upload-area input[type="file"] {
    display: none;
}

.file-upload-area .file-name {
    color: var(--accent);
    font-weight: 600;
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }

    .nav-links {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: rgba(13, 29, 14, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 5px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .mobile-toggle {
        display: flex;
    }

    .slide-content h1 {
        font-size: 2.2rem;
    }

    .hero {
        height: 70vh;
    }

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

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

    .section {
        padding: 60px 20px;
    }

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

    .sport-info-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .sport-hero-content h1 {
        font-size: 2.2rem;
    }

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

    .admin-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Head Coach Section */
.coach-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.coach-photo-wrapper {
    position: sticky;
    top: 100px;
}

.coach-photo {
    width: 100%;
    border-radius: 20px;
    border: 3px solid rgba(245, 166, 35, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.coach-name {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 5px;
}

.coach-title {
    display: inline-block;
    background: rgba(245, 166, 35, 0.15);
    color: var(--accent);
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.coach-qualifications h4,
.coach-training h4,
.coach-expertise h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    margin-top: 20px;
}

.coach-qual-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.qual-tag {
    background: rgba(26, 95, 42, 0.4);
    border: 1px solid rgba(45, 138, 66, 0.4);
    color: #8de6a0;
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
}

.coach-experience {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.12), rgba(245, 166, 35, 0.04));
    border: 1px solid rgba(245, 166, 35, 0.2);
    border-radius: 15px;
}

.coach-exp-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.coach-exp-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.coach-trainers-list {
    display: grid;
    gap: 12px;
}

.trainer-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trainer-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.trainer-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 166, 35, 0.1);
    border-radius: 10px;
}

.trainer-item strong {
    color: var(--white);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 3px;
}

.trainer-item p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin: 0;
}

.coach-expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.expertise-tag {
    background: rgba(245, 166, 35, 0.12);
    border: 1px solid rgba(245, 166, 35, 0.25);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    padding: 30px;
    position: relative;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-author strong {
    color: var(--white);
    font-size: 0.9rem;
    display: block;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

/* Google Map */
.map-container {
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    display: block;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .coach-grid {
        grid-template-columns: 1fr;
    }

    .coach-photo-wrapper {
        position: static;
        max-width: 300px;
        margin: 0 auto;
    }

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

    .coach-exp-number {
        font-size: 2.2rem;
    }
}
