/* TCB Fight Factory - Professional Stylesheet */
:root {
    --purple-dark: #0f0618;
    --purple-deep: #1a0a2e;
    --purple-main: #6b21a8;
    --purple-bright: #9333ea;
    --purple-light: #a855f7;
    --purple-glow: #c084fc;
    --black: #050508;
    --black-light: #0d0d12;
    --black-medium: #151520;
    --white: #ffffff;
    --white-off: #e5e5e5;
    --gray: #9ca3af;
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --gradient-purple: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-deep) 50%, var(--purple-main) 100%);
    --gradient-glow: linear-gradient(135deg, var(--purple-bright) 0%, var(--purple-light) 100%);
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-purple: 0 10px 40px rgba(147, 51, 234, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader {
    text-align: center;
}
.loader-ring {
    width: 60px;
    height: 60px;
    border: 3px solid var(--purple-deep);
    border-top-color: var(--purple-bright);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.loader-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Particles */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(147, 51, 234, 0.15);
    transition: all 0.3s ease;
}
nav.scrolled {
    padding: 0.75rem 5%;
    background: rgba(5, 5, 8, 0.95);
    box-shadow: var(--shadow-md);
}
.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.05em;
}
.nav-logo span {
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}
.nav-link {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-glow);
    transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}
.nav-link:hover,
.nav-link.active {
    color: var(--white);
}
.nav-cta {
    background: var(--gradient-glow);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-purple);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 5% 80px;
    overflow: hidden;
}
.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    z-index: -1;
    filter: grayscale(30%);
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(5, 5, 8, 0.6) 0%,
        rgba(15, 6, 24, 0.85) 50%,
        var(--black) 100%
    );
    z-index: -1;
}
.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
}
.hero-tag {
    display: inline-block;
    background: rgba(147, 51, 234, 0.15);
    border: 1px solid rgba(147, 51, 234, 0.4);
    padding: 0.6rem 1.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    color: var(--purple-light);
    font-weight: 500;
}
.hero h1 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.hero h1 span {
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--gray);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: bounce 2s infinite;
}
.hero-scroll i {
    display: block;
    margin-top: 0.5rem;
    font-size: 1rem;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}
.btn i {
    font-size: 0.9rem;
}
.btn-primary {
    background: var(--gradient-glow);
    color: var(--white);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-purple);
}
.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(147, 51, 234, 0.6);
}
.btn-secondary:hover {
    background: rgba(147, 51, 234, 0.15);
    border-color: var(--purple-bright);
    transform: translateY(-3px);
}
.btn-large {
    padding: 1.25rem 3rem;
    font-size: 0.9rem;
}

/* Scrolling Gallery */
.scrolling-gallery {
    padding: 1.5rem 0;
    background: var(--black-light);
    overflow: hidden;
    border-top: 1px solid rgba(147, 51, 234, 0.1);
    border-bottom: 1px solid rgba(147, 51, 234, 0.1);
}
.gallery-track {
    display: flex;
    gap: 1rem;
    animation: scroll 40s linear infinite;
}
.gallery-track:hover {
    animation-play-state: paused;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.gallery-item {
    flex-shrink: 0;
    width: 320px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover::after {
    opacity: 1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(20%);
}
.gallery-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

/* Stats */
.stats-bar {
    background: var(--gradient-purple);
    padding: 4rem 5%;
    position: relative;
}
.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple-bright), transparent);
}
.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--white) 0%, var(--purple-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.8);
}

/* Sections */
.section {
    padding: 6rem 5%;
}
.section-dark {
    background: var(--black);
}
.section-purple {
    background: var(--gradient-purple);
    position: relative;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-tag {
    display: inline-block;
    background: rgba(147, 51, 234, 0.15);
    border: 1px solid rgba(147, 51, 234, 0.4);
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    color: var(--purple-light);
    font-weight: 600;
}
.section-header h2 {
    font-size: 2.75rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}
.section-header p {
    color: var(--gray);
    max-width: 550px;
    margin: 0 auto;
}

/* Featured Video */
.featured-video {
    background: var(--black-light);
    padding: 5rem 5%;
}
.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-purple);
    border: 1px solid rgba(147, 51, 234, 0.2);
}
.video-container iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}

/* Program Cards */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.program-card {
    background: var(--black-light);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(147, 51, 234, 0.15);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-glow);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.program-card:hover::before {
    transform: scaleX(1);
}
.program-card:hover {
    transform: translateY(-8px);
    border-color: rgba(147, 51, 234, 0.4);
    box-shadow: var(--shadow-purple);
}
.program-icon {
    width: 70px;
    height: 70px;
    background: rgba(147, 51, 234, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--purple-light);
    transition: all 0.3s ease;
}
.program-card:hover .program-icon {
    background: var(--gradient-glow);
    color: var(--white);
    transform: scale(1.1);
}
.program-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.program-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}
.program-link {
    color: var(--purple-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}
.program-link:hover {
    color: var(--white);
}
.program-link i {
    transition: transform 0.3s ease;
}
.program-link:hover i {
    transform: translateX(4px);
}

/* Champions */
.champions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.champion-card {
    background: var(--black-medium);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(147, 51, 234, 0.2);
}
.champion-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-purple);
}
.champion-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.champion-image {
    height: 380px;
    overflow: hidden;
}
.champion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
    filter: grayscale(20%);
}
.champion-card:hover .champion-image img {
    transform: scale(1.05);
    filter: grayscale(0%);
}
.champion-info {
    padding: 1.5rem;
    background: linear-gradient(to top, var(--black-medium), rgba(21, 21, 32, 0.95));
}
.champion-info h3 {
    font-size: 1.35rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}
.champion-info p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}
.champion-record {
    display: inline-block;
    background: rgba(147, 51, 234, 0.2);
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--purple-light);
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Legacy Grid */
.legacy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.legacy-content h3 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.legacy-content p {
    margin-bottom: 1.25rem;
    color: var(--white-off);
    font-size: 1.05rem;
}
.highlight-text {
    color: var(--purple-light);
    font-weight: 600;
}
.legacy-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(147, 51, 234, 0.2);
}
.legacy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.4s ease;
}
.legacy-image:hover img {
    filter: grayscale(0%);
}

/* CTA Section */
.cta-section {
    background: var(--black-light);
    padding: 5rem 5%;
    text-align: center;
    border-top: 1px solid rgba(147, 51, 234, 0.15);
}
.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.cta-section p {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: var(--purple-dark);
    padding: 5rem 5% 2rem;
    border-top: 1px solid rgba(147, 51, 234, 0.2);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}
.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}
.footer-brand h3 span {
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-brand p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.social-links {
    display: flex;
    gap: 0.75rem;
}
.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(147, 51, 234, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(147, 51, 234, 0.3);
}
.social-links a:hover {
    background: var(--purple-bright);
    transform: translateY(-3px);
    border-color: transparent;
}
.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.9rem;
    color: var(--gray);
    font-size: 0.9rem;
}
.footer-links li i {
    margin-right: 0.5rem;
    color: var(--purple-light);
    width: 16px;
}
.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--white);
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-bottom p {
    color: var(--gray);
    font-size: 0.85rem;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 350px;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(147, 51, 234, 0.2);
    }
    .nav-links.active {
        right: 0;
    }
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    .nav-cta {
        display: none;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .legacy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }
    .stat-number {
        font-size: 3rem;
    }
    .programs-grid,
    .champions-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    .social-links {
        justify-content: center;
    }
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.25rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
    .gallery-item {
        width: 220px;
        height: 140px;
    }
    .hero-scroll {
        display: none;
    }
}

/* Page Header */
.page-header {
    padding: 160px 5% 80px;
    text-align: center;
    background: var(--gradient-purple);
    position: relative;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, var(--black), transparent);
}
.page-header h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.page-header h1 span {
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-header p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

/* Programs Full Grid */
.programs-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
.program-card-full {
    background: var(--black-light);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid rgba(147, 51, 234, 0.15);
    display: flex;
    gap: 2rem;
    transition: all 0.4s ease;
}
.program-card-full:hover {
    border-color: rgba(147, 51, 234, 0.4);
    box-shadow: var(--shadow-purple);
}
.program-icon-large {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: rgba(147, 51, 234, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--purple-light);
}
.program-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.program-content p {
    color: var(--gray);
    margin-bottom: 1rem;
}
.program-features {
    list-style: none;
    margin-bottom: 1rem;
}
.program-features li {
    color: var(--white-off);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.program-features li i {
    color: var(--purple-light);
    font-size: 0.8rem;
}
.program-levels {
    color: var(--purple-light);
    font-size: 0.9rem;
}

/* Schedule */
.schedule-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.schedule-day {
    background: var(--black-light);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(147, 51, 234, 0.15);
}
.schedule-day h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
    text-transform: uppercase;
}
.schedule-classes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}
.schedule-time {
    color: var(--gray);
    font-size: 0.85rem;
}
.schedule-class {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.schedule-class.kids { background: rgba(76, 175, 80, 0.2); color: #81c784; }
.schedule-class.kickboxing { background: rgba(147, 51, 234, 0.2); color: var(--purple-light); }
.schedule-class.boxing { background: rgba(244, 67, 54, 0.2); color: #ef5350; }
.schedule-class.bjj { background: rgba(33, 150, 243, 0.2); color: #64b5f6; }
.schedule-class.mma { background: rgba(255, 152, 0, 0.2); color: #ffb74d; }
.schedule-class.sparring { background: rgba(156, 39, 176, 0.2); color: #ba68c8; }

.schedule-legend {
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--black-light);
    border-radius: 12px;
    border: 1px solid rgba(147, 51, 234, 0.15);
}
.schedule-legend h4 {
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}
.legend-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray);
}
.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}
.legend-color.kids { background: #81c784; }
.legend-color.kickboxing { background: var(--purple-light); }
.legend-color.boxing { background: #ef5350; }
.legend-color.bjj { background: #64b5f6; }
.legend-color.mma { background: #ffb74d; }
.legend-color.sparring { background: #ba68c8; }

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}
.video-card {
    background: var(--black-light);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(147, 51, 234, 0.15);
}
.video-card video,
.video-card iframe {
    width: 100%;
    aspect-ratio: 16/9;
}
.video-info {
    padding: 1.25rem;
}
.video-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}
.video-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Privacy Content */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}
.privacy-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    text-transform: uppercase;
}
.privacy-content h3:first-child {
    margin-top: 0;
}
.privacy-content p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}
.privacy-content ul {
    list-style: none;
    margin-bottom: 1rem;
}
.privacy-content li {
    color: var(--gray);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}
.privacy-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: var(--purple-light);
    border-radius: 50%;
}
.privacy-content a {
    color: var(--purple-light);
    text-decoration: none;
}
.privacy-content a:hover {
    text-decoration: underline;
}

/* Coaches */
.coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
.coach-card {
    background: var(--black-light);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(147, 51, 234, 0.2);
    transition: all 0.4s ease;
}
.coach-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-purple);
}
.coach-card.featured {
    border: 2px solid var(--gold);
    position: relative;
}
.coach-card.featured::before {
    content: 'IKF AWARD WINNER';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--black);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    z-index: 10;
    letter-spacing: 0.05em;
}
.coach-image {
    height: 300px;
    overflow: hidden;
}
.coach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
    filter: grayscale(20%);
}
.coach-card:hover .coach-image img {
    transform: scale(1.05);
    filter: grayscale(0%);
}
.coach-info {
    padding: 1.5rem;
}
.coach-info h3 {
    font-size: 1.35rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.coach-title {
    color: var(--purple-light);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: block;
}
.coach-info p {
    color: var(--gray);
    font-size: 0.95rem;
}
.award-highlight {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}
.award-highlight h4 {
    color: var(--gold);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Fighter Roster */
.fighter-roster {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}
.fighter-card {
    background: var(--black-light);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(147, 51, 234, 0.2);
    transition: all 0.3s ease;
}
.fighter-card:hover {
    transform: translateY(-5px);
    border-color: var(--purple-bright);
}
.fighter-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
}
.fighter-card h4 {
    padding: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.contact-info h3,
.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(147, 51, 234, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--purple-light);
    flex-shrink: 0;
}
.contact-text h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}
.contact-text p,
.contact-text a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.95rem;
}
.contact-text a:hover {
    color: var(--purple-light);
}
.contact-form {
    background: var(--black-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(147, 51, 234, 0.15);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: var(--black);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-body);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--purple-bright);
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}
.form-group select {
    cursor: pointer;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    .programs-grid-full {
        grid-template-columns: 1fr;
    }
    .program-card-full {
        flex-direction: column;
        text-align: center;
    }
    .program-icon-large {
        margin: 0 auto;
    }
    .schedule-container {
        grid-template-columns: 1fr;
    }
    .videos-grid {
        grid-template-columns: 1fr;
    }
    .contact-container {
        grid-template-columns: 1fr;
    }
    .coaches-grid {
        grid-template-columns: 1fr;
    }
}
