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

:root {
    /* Primary Brand Colors - Neon Green */
    --primary-color: #00FF00;
    --primary-light: #66FF66;
    --primary-dark: #00BB00;

    /* Secondary Colors - Black */
    --secondary-color: #000000;
    --secondary-light: #1A1A1A;
    --secondary-dark: #0D0D0D;

    /* Accent Colors - Bright Lime */
    --accent-color: #39FF14;
    --accent-light: #B3FFB3;
    --accent-dark: #00CC33;

    /* Text Colors */
    --text-dark: #000000;
    --text-body: #333333;
    --text-light: #ffffff;
    --text-gray: #666666;
    --text-muted: #999999;

    /* Background Colors */
    --bg-light: #FFFFFF;
    --bg-light-alt: #F8F8F8;
    --bg-dark: #0D0D0D;
    --bg-dark-alt: #1A1A1A;

    /* Border Colors */
    --border-light: #E0E0E0;
    --border-dark: rgba(255, 255, 255, 0.1);
    --border-accent: #00FF00;

    /* Effects */
    --glow-green: 0 0 20px rgba(0, 255, 0, 0.4);
    --shadow-light: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 255, 0, 0.3), 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 768px) {
    .header-container {
        padding: 1rem 2rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.logo-icon img,
.logo-icon svg {
    color: var(--primary-color);
    height: 35px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 768px) {

    .logo-icon img,
    .logo-icon svg {
        height: 50px;
        width: auto;
    }
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .logo-text {
        font-size: 1.8rem;
        letter-spacing: 1.5px;
    }
}

.logo-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-color);
    text-transform: uppercase;
    line-height: 1;
}

@media (min-width: 768px) {
    .logo-tagline {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }
}

.nav-menu {
    display: none;
    list-style: none;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        gap: 1.5rem;
    }
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 80%;
}

.lang-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: 2rem;
}

.lang-btn {
    background: transparent;
    border: 2px solid transparent;
    padding: 0.3rem 0.5rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn:hover {
    border-color: var(--primary-green);
}

.lang-btn.active {
    border-color: var(--primary-green);
    background: rgba(57, 255, 20, 0.1);
}

.flag-icon {
    font-size: 1.5rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .lang-switcher {
        margin-left: auto;
        margin-right: 1rem;
    }
}

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

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition);
}

.nav-menu.active {
    display: flex;
    position: fixed;
    left: 0;
    top: 70px;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    width: 100%;
    text-align: center;
    padding: 2rem 0;
    gap: 1.5rem;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 1rem 4rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, transparent 48%, rgba(0, 255, 0, 0.03) 49%, rgba(0, 255, 0, 0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0, 255, 0, 0.03) 49%, rgba(0, 255, 0, 0.03) 51%, transparent 52%);
    background-size: 60px 60px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 12vw, 10rem);
    font-weight: bold;
    letter-spacing: 8px;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

@media (min-width: 768px) {
    .hero-title {
        letter-spacing: 15px;
        margin-bottom: 1rem;
    }
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px rgba(0, 255, 0, 0.5));
    }

    to {
        filter: drop-shadow(0 0 40px rgba(0, 255, 0, 0.8));
    }
}

.hero-slogan {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.hero-subtitle {
    font-size: clamp(0.8rem, 2vw, 1.5rem);
    letter-spacing: 4px;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--text-light);
}

@media (min-width: 768px) {
    .hero-subtitle {
        letter-spacing: 8px;
        margin-bottom: 3rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .hero-buttons {
        gap: 1.5rem;
    }
}

.btn {
    padding: 0.875rem 2rem;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

@media (min-width: 768px) {
    .btn {
        padding: 1rem 2.5rem;
        font-size: 0.9rem;
    }
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--glow-green);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--primary-color);
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 600;
}

@media (min-width: 768px) {
    .scroll-indicator {
        bottom: 3rem;
        font-size: 0.8rem;
    }
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    animation: scroll 2s ease-in-out infinite;
}

@media (min-width: 768px) {
    .scroll-line {
        height: 50px;
    }
}

@keyframes scroll {

    0%,
    100% {
        opacity: 0;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(20px);
    }
}

section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    section {
        padding: 6rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .section-label {
        font-size: 0.9rem;
        letter-spacing: 3px;
        margin-bottom: 1rem;
    }
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 3px;
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .section-title {
        letter-spacing: 5px;
    }
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.about {
    background: var(--bg-light-alt);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 968px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.mission-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.mission-statement {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.brand-colors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.color-item {
    text-align: center;
}

.color-swatch {
    width: 100%;
    height: 80px;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border: 2px solid #e0e0e0;
}

.color-name {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.color-code {
    display: block;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-light);
}

@media (min-width: 768px) {
    .stat-item {
        padding: 2rem;
    }
}

.stat-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    letter-spacing: 2px;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 3rem;
    }
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 0.9rem;
    }
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 0, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.feed {
    background: white;
}

.feed-first {
    padding-top: 8rem;
}

@media (min-width: 768px) {
    .feed-first {
        padding-top: 10rem;
    }
}

.feed-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .feed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 968px) {
    .feed-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feed-item {
    background: white;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.feed-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
    border-color: var(--primary-color);
}

.feed-item-large {
    grid-column: span 1;
    grid-row: span 1;
}

@media (min-width: 768px) {
    .feed-item-large {
        grid-column: span 1;
        grid-row: span 2;
    }
}

@media (min-width: 968px) {
    .feed-item-large {
        grid-column: span 1;
        grid-row: span 2;
    }
}

.feed-image {
    height: 250px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .feed-image {
        height: 280px;
    }
}

.team-link .feed-image {
    height: 200px;
}

@media (min-width: 768px) {
    .team-link .feed-image {
        height: 220px;
    }
}

.feed-item-large .feed-image {
    height: 300px;
}

@media (min-width: 768px) {
    .feed-item-large .feed-image {
        height: 100%;
        min-height: 400px;
    }
}

.feed-image.instagram-post {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.feed-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
}

@media (min-width: 768px) {
    .feed-badge {
        font-size: 0.8rem;
    }
}

.feed-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .feed-content {
        padding: 2rem;
    }
}

.team-link .feed-content {
    padding: 1rem;
}

@media (min-width: 768px) {
    .team-link .feed-content {
        padding: 1.25rem;
    }
}

.feed-meta {
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .feed-meta {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
}

.feed-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.3;
}

@media (min-width: 768px) {
    .feed-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
}

.feed-item-large .feed-title {
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .feed-item-large .feed-title {
        font-size: 2rem;
    }
}

.feed-description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
    flex: 1;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .feed-description {
        font-size: 0.95rem;
    }
}

.feed-item-large .feed-description {
    font-size: 1rem;
}

@media (min-width: 768px) {
    .feed-item-large .feed-description {
        font-size: 1.1rem;
    }
}

.feed-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .feed-link {
        font-size: 0.9rem;
    }
}

.feed-link:hover {
    color: var(--accent-color);
}

.instagram-tile {
    text-decoration: none;
    color: var(--text-dark);
    background: white;
    display: flex;
    flex-direction: column;
}

.instagram-tile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.instagram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-light);
}

.instagram-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.instagram-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}

.instagram-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-info {
    display: flex;
    flex-direction: column;
}

.instagram-username {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.instagram-location {
    font-size: 0.75rem;
    color: var(--text-gray);
}

.instagram-icon {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.instagram-post-image {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    flex: 1;
    min-height: 350px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .instagram-post-image {
        min-height: 450px;
    }
}

.instagram-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% 40%;
    position: absolute;
    top: 0;
    left: 0;
}

.instagram-actions {
    padding: 0.75rem 1rem;
}

.instagram-action-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.action-icon {
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.action-icon:hover {
    transform: scale(1.1);
}

.instagram-likes {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.instagram-caption {
    padding: 0 1rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.instagram-username-bold {
    font-weight: 600;
    margin-right: 0.5rem;
    color: var(--text-dark);
}

.caption-text {
    color: var(--text-dark);
}

.instagram-view-more {
    padding: 0 1rem 1rem;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.team-link {
    text-decoration: none;
    color: inherit;
}

.team-link:hover .feed-title {
    color: var(--primary-color);
}

.team-image {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.male-team {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.female-team {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.youtube-bg {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
}

.flag-football-bg {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 255, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.team-link:hover .team-overlay {
    background: rgba(0, 255, 0, 0.2);
}

.team-icon {
    font-size: 2.5rem;
    opacity: 0.3;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .team-icon {
        font-size: 3rem;
    }
}

.team-link:hover .team-icon {
    opacity: 0.5;
    transform: scale(1.1);
}

.female-team-tile,
.male-team-tile,
.youtube-tile,
.flag-football-tile {
    padding: 0;
}

.female-team-tile .feed-image,
.male-team-tile .feed-image,
.youtube-tile .feed-image,
.flag-football-tile .feed-image {
    height: 100%;
    min-height: 250px;
    position: relative;
}

@media (min-width: 768px) {

    .female-team-tile .feed-image,
    .male-team-tile .feed-image,
    .youtube-tile .feed-image,
    .flag-football-tile .feed-image {
        min-height: 280px;
    }
}

.team-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
    padding: 1.5rem 1rem 1rem;
    transition: var(--transition);
}

.female-team-tile:hover .team-text-overlay,
.male-team-tile:hover .team-text-overlay,
.youtube-tile:hover .team-text-overlay,
.flag-football-tile:hover .team-text-overlay {
    background: linear-gradient(to top, rgba(0, 255, 0, 0.9) 0%, rgba(0, 255, 0, 0.7) 70%, transparent 100%);
}

.team-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: white;
    letter-spacing: 2px;
    margin: 0;
    text-align: center;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .team-title {
        font-size: 1rem;
    }
}

.female-team-tile:hover .team-title,
.male-team-tile:hover .team-title,
.youtube-tile:hover .team-title,
.flag-football-tile:hover .team-title {
    color: var(--text-dark);
}

.team {
    background: var(--bg-light-alt);
    color: var(--text-dark);
}

.team.team-light .section-label {
    color: var(--primary-color);
}

.team.team-light .section-title {
    color: var(--text-dark);
}

.team-roster {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .team-roster {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 968px) {
    .team-roster {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.player-card {
    background: white;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.player-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 255, 0, 0.2);
}

.player-image {
    height: 250px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .player-image {
        height: 300px;
    }
}

.player-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, transparent 48%, rgba(0, 255, 0, 0.05) 49%, rgba(0, 255, 0, 0.05) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0, 255, 0, 0.05) 49%, rgba(0, 255, 0, 0.05) 51%, transparent 52%);
    background-size: 30px 30px;
}

.player-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .player-number {
        font-size: 8rem;
    }
}

.player-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 255, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.player-card:hover .player-overlay {
    opacity: 1;
}

.view-profile {
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.player-info {
    padding: 1.25rem;
    text-align: center;
}

@media (min-width: 768px) {
    .player-info {
        padding: 1.5rem;
    }
}

.player-name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .player-name {
        font-size: 1.3rem;
    }
}

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

@media (min-width: 768px) {
    .player-role {
        font-size: 0.9rem;
    }
}

.player-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-gray);
}

@media (min-width: 768px) {
    .player-stats {
        font-size: 0.85rem;
    }
}

.news {
    background: white;
}

.news-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .news-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 968px) {
    .news-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.news-card {
    background: white;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.news-thumbnail {
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
}

@media (min-width: 768px) {
    .news-thumbnail {
        height: 250px;
    }
}

.news-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .news-badge {
        font-size: 0.8rem;
    }
}

.news-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .news-body {
        padding: 2rem;
    }
}

.news-date {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .news-date {
        font-size: 0.85rem;
    }
}

.news-title {
    margin: 1rem 0;
    font-size: 1.3rem;
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .news-title {
        font-size: 1.5rem;
    }
}

.news-description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
    flex: 1;
}

.news-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .news-link {
        font-size: 0.9rem;
    }
}

.news-link:hover {
    color: var(--accent-color);
}

.gallery {
    background: var(--bg-light-alt);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .gallery-tabs {
        gap: 1rem;
        margin-bottom: 3rem;
    }
}

.gallery-tab {
    padding: 0.875rem 2rem;
    background: white;
    border: 2px solid #e0e0e0;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .gallery-tab {
        padding: 1rem 2.5rem;
        font-size: 0.9rem;
    }
}

.gallery-tab.active {
    background: var(--primary-color);
    color: var(--text-dark);
    border-color: var(--primary-color);
}

.gallery-tab:hover {
    border-color: var(--primary-color);
}

.gallery-tab-content {
    display: none;
}

.gallery-tab-content.active {
    display: block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 968px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

@media (min-width: 768px) {
    .gallery-item {
        height: 250px;
    }
}

.gallery-item-large {
    grid-column: span 1;
    grid-row: span 1;
}

@media (min-width: 968px) {
    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 2;
        height: auto;
    }
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--text-light);
    font-weight: 600;
    transform: translateY(100%);
    transition: var(--transition);
}

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

.gallery-caption {
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .gallery-caption {
        font-size: 1rem;
    }
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 968px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.video-item {
    text-align: center;
}

.video-thumbnail {
    height: 180px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

@media (min-width: 768px) {
    .video-thumbnail {
        height: 200px;
    }
}

.video-thumbnail:hover {
    transform: scale(1.05);
}

.play-button {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--text-dark);
    transition: var(--transition);
}

@media (min-width: 768px) {
    .play-button {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
}

.video-thumbnail:hover .play-button {
    transform: scale(1.2);
}

.video-title {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .video-title {
        font-size: 1.1rem;
    }
}

.video-duration {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.instagram {
    background: white;
}

.instagram-feed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .instagram-feed {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 968px) {
    .instagram-feed {
        grid-template-columns: repeat(6, 1fr);
        gap: 1.5rem;
    }
}

.instagram-post {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.instagram-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 255, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-stats {
    display: flex;
    gap: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .instagram-stats {
        font-size: 0.9rem;
    }
}

.instagram-cta {
    text-align: center;
}

.partners {
    background: var(--bg-light-alt);
}

.carousel-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.carousel-track-container {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

@media (min-width: 640px) {
    .carousel-slide {
        min-width: 50%;
    }
}

@media (min-width: 968px) {
    .carousel-slide {
        min-width: 33.333%;
    }
}

.partner-logo {
    height: 100px;
    width: 100%;
    max-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .partner-logo {
        height: 120px;
    }
}

.partner-logo:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.logo-placeholder {
    font-weight: 700;
    color: var(--text-gray);
    letter-spacing: 2px;
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .logo-placeholder {
        font-size: 0.9rem;
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--text-dark);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

@media (min-width: 768px) {
    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
}

.carousel-btn:hover {
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0.5rem;
}

@media (min-width: 768px) {
    .carousel-prev {
        left: 1rem;
    }
}

.carousel-next {
    right: 0.5rem;
}

@media (min-width: 768px) {
    .carousel-next {
        right: 1rem;
    }
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .indicator {
        width: 12px;
        height: 12px;
    }
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.contact {
    background: var(--bg-light-alt);
    color: var(--text-dark);
}

.contact.contact-light .section-label {
    color: var(--primary-color);
}

.contact.contact-light .section-title {
    color: var(--text-dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .contact-details {
        gap: 2rem;
    }
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .contact-item {
        gap: 1.5rem;
    }
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

@media (min-width: 768px) {
    .contact-icon {
        font-size: 2rem;
        min-width: 40px;
    }
}

.contact-item h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .contact-item h4 {
        font-size: 1.1rem;
    }
}

.contact-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

.social-section {
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .social-section {
        margin-top: 2rem;
    }
}

.social-section h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1rem;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .social-section h4 {
        font-size: 1.1rem;
    }
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .social-icon {
        width: 50px;
        height: 50px;
    }
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.contact-form {
    background: white;
    padding: 1.5rem;
    border: 1px solid var(--border-light);
}

@media (min-width: 768px) {
    .contact-form {
        padding: 2rem;
    }
}

.form-group {
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .form-group {
        margin-bottom: 1.5rem;
    }
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    background: var(--bg-light-alt);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
}

@media (min-width: 768px) {

    .form-group input,
    .form-group textarea {
        padding: 1rem;
        font-size: 0.95rem;
    }
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 3rem 0 1.5rem;
    border-top: 3px solid var(--primary-color);
}

@media (min-width: 768px) {
    .footer {
        padding: 4rem 0 2rem;
    }
}

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

@media (min-width: 640px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
        margin-bottom: 3rem;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img,
.footer-logo svg {
    color: var(--primary-color);
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    color: var(--primary-color);
    letter-spacing: 3px;
}

@media (min-width: 768px) {
    .footer-section h3 {
        font-size: 2rem;
    }
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1rem;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .footer-section h4 {
        font-size: 1.1rem;
    }
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .footer-section p {
        font-size: 0.95rem;
    }
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .footer-section ul li a {
        font-size: 0.95rem;
    }
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .newsletter-form input {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    padding: 0.75rem 1.25rem;
    background: var(--primary-color);
    border: none;
    color: var(--text-dark);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

@media (min-width: 768px) {
    .newsletter-form button {
        padding: 0.8rem 1.5rem;
        font-size: 1.3rem;
    }
}

.newsletter-form button:hover {
    background: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 255, 0, 0.2);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        padding-top: 2rem;
        font-size: 0.9rem;
    }
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* ============================================
   ABOUT SECTION - Pro Komandu
   Modern, Athletic, Premium Design
   ============================================ */

.about {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.05) 0%, transparent 50%, rgba(0, 255, 0, 0.05) 100%);
    pointer-events: none;
}

@media (min-width: 768px) {
    .about {
        padding: 7rem 0;
    }
}

/* Header */
.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .about-header {
        margin-bottom: 4rem;
    }
}

.about-header__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: white;
    text-transform: uppercase;
    margin: 0;
    position: relative;
    display: inline-block;
}


@media (min-width: 768px) {
    .about-header__title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
}

/* Grid Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 968px) {
    .about-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
    }
}

/* Left Column - Story & List */
.about-grid__left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-story__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1.5rem 0;
    text-align: justify;
}

.about-story__text:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .about-story__text {
        font-size: 1.05rem;
        line-height: 1.9;
    }
}

/* Bullet List */
.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-list__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--primary-color);
    border-radius: 4px;
    transition: var(--transition);
}

.about-list__item:hover {
    background: rgba(0, 255, 0, 0.08);
    transform: translateX(5px);
}

.about-list__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-list__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.about-list__text strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Right Column - Image Tiles */
.about-grid__right {
    display: flex;
    align-items: center;
}

.about-tiles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    width: 100%;
}

@media (min-width: 768px) {
    .about-tiles {
        gap: 4rem;
    }
}

.about-tiles__card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-tiles__image {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .about-tiles__image {
        height: 450px;
    }
}

.about-tiles__card:hover .about-tiles__image {
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(0, 255, 0, 0.3);
}

.about-tiles__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-tiles__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .about-tiles__title {
        font-size: 1.5rem;
    }
}

.about-tiles__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

@media (min-width: 768px) {
    .about-tiles__text {
        font-size: 1rem;
        line-height: 1.8;
    }
}

.about-tiles__highlight {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.6;
    margin: 0.5rem 0 0 0;
    padding: 1rem;
    background: rgba(0, 255, 0, 0.1);
    border-left: 3px solid var(--primary-color);
    border-radius: 4px;
}

@media (min-width: 768px) {
    .about-tiles__highlight {
        font-size: 1.05rem;
    }
}

/* CTA Button */
.about-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .about-cta {
        margin-top: 4rem;
    }
}

.about-cta__button {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    background: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.about-cta__button:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
}

@media (min-width: 768px) {
    .about-cta__button {
        font-size: 1.1rem;
        padding: 1.2rem 3rem;
    }
}

/* Social Proof Strip */
.about-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 0, 0.2);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .about-social {
        margin-top: 3rem;
        padding-top: 3rem;
    }
}

.about-social__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.about-social__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.about-social__link:hover {
    color: white;
    transform: translateX(5px);
}

.about-social__icon {
    width: 24px;
    height: 24px;
}

/* ============================================
   TEAM SECTIONS - Men's & Women's Teams
   ============================================ */

.team-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.05) 0%, transparent 50%, rgba(0, 255, 0, 0.05) 100%);
    pointer-events: none;
}

@media (min-width: 768px) {
    .team-section {
        padding: 7rem 0;
    }
}

/* Team Photos Grid */
.team-photos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .team-photos {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        margin: 4rem 0;
    }
}

.team-photos__item {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .team-photos__item {
        height: 500px;
    }
}

.team-photos__item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(0, 255, 0, 0.4);
}

/* Team Content */
.team-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.team-content__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
    text-align: center;
}

@media (min-width: 768px) {
    .team-content__title {
        font-size: 1.8rem;
        margin: 0 0 2rem 0;
    }
}

.team-content__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

@media (min-width: 768px) {
    .team-content__text {
        font-size: 1.1rem;
        line-height: 1.9;
    }
}

.team-content__highlight {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.6;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: rgba(0, 255, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    text-align: center;
    max-width: 600px;
}

@media (min-width: 768px) {
    .team-content__highlight {
        font-size: 1.15rem;
        padding: 2rem;
    }
}

/* Simplified About Content */
.about-content-simple {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-content-simple .about-story {
    margin-bottom: 2rem;
}

.about-content-simple .about-list {
    margin-top: 2rem;
}

/* ============================================
   SPONSORS GRID - Simple Logo Display
   ============================================ */

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .sponsors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 968px) {
    .sponsors-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 3rem;
        margin: 4rem 0;
    }
}

.sponsor-logo {
    width: 180px;
    height: 180px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.sponsor-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1) 0%, transparent 50%, rgba(0, 255, 0, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
}

.sponsor-logo:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.sponsor-logo:hover::before {
    opacity: 1;
}

.sponsor-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

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

/* ============================================
   LARGE SOCIAL ICONS - Instagram & YouTube
   ============================================ */

.social-icon-large {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon-large:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.social-icon-large svg {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-icon-large:hover svg {
    transform: scale(1.05);
}

.social-icons {
    gap: 2rem;
}

/* ============================================
   PRACTICE LOCATIONS - Training Venues
   ============================================ */

.practice-locations {
    margin: 4rem 0 3rem 0;
    position: relative;
    z-index: 1;
}

.practice-locations__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin: 0 0 2.5rem 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (min-width: 768px) {
    .practice-locations__title {
        font-size: 1.8rem;
        margin: 0 0 3rem 0;
    }
}

.practice-locations__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .practice-locations__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.practice-location__card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
}

.practice-location__card:hover {
    transform: translateY(-5px);
}

.practice-location__image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    border: 2px solid rgba(0, 255, 0, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .practice-location__image {
        height: 220px;
    }
}

.practice-location__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
    transition: var(--transition);
}

.practice-location__card:hover .practice-location__image {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 255, 0, 0.3);
}

.practice-location__card:hover .practice-location__image::before {
    background: linear-gradient(to top, rgba(0, 255, 0, 0.3) 0%, transparent 50%);
}

.practice-location__info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.practice-location__name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    text-align: center;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .practice-location__name {
        font-size: 0.95rem;
    }
}

.practice-location__time {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .practice-location__time {
        font-size: 0.85rem;
    }
}

/* ============================================
   SIMPLIFIED FOOTER
   ============================================ */

.footer-simple {
    text-align: center;
    padding: 2rem 0;
}

.footer-simple h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    letter-spacing: 2px;
}

.footer-simple p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ============================================
   FLAG FOOTBALL RULES PAGE
   ============================================ */

.flag-football-rules {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 4rem 0;
    min-height: 100vh;
}

/* Rules Header */
.rules-header {
    text-align: center;
    margin-bottom: 4rem;
}

.rules-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 3px;
}

@media (min-width: 768px) {
    .rules-title {
        font-size: 3rem;
    }
}

.rules-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Highlights Section */
.rules-highlights {
    margin-bottom: 4rem;
}

.highlights-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin: 0 0 2rem 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 968px) {
    .highlights-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
    }
}

.highlight-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.highlight-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 255, 0, 0.3);
    transform: translateY(-5px);
}

.highlight-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #0a0a0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1rem auto;
}

.highlight-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.5rem 0;
}

.highlight-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

/* Table of Contents */
.rules-toc {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    margin-bottom: 3rem;
    border-radius: 8px;
}

.rules-toc h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1rem 0;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .toc-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

@media (min-width: 968px) {
    .toc-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

.toc-list li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 0.5rem 0;
}

.toc-list li a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

/* Rules Content */
.rules-content {
    margin-bottom: 4rem;
}

.rule-section {
    margin-bottom: 4rem;
    scroll-margin-top: 100px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 2rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 255, 0, 0.3);
}

.rule-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.rule-card:hover {
    border-color: rgba(0, 255, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.rule-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1rem 0;
}

.rule-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

.rule-card ul {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 1rem 0 0 0;
    padding-left: 1.5rem;
}

.rule-card li {
    margin-bottom: 0.5rem;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.faq-answer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin: 0;
}

/* CTA Section */
.rules-cta {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1) 0%, rgba(0, 255, 0, 0.05) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
}

.rules-cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 0 1rem 0;
}

.rules-cta p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 2rem 0;
}

.btn-cta {
    display: inline-block;
    background: var(--primary-color);
    color: #0a0a0a;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.4);
}

/* ============================================
   FLAG FOOTBALL PAGE - SIMPLE TILE LAYOUT
   ============================================ */

.flag-football-page {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 8rem 0 4rem 0;
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 4px;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
}

.page-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Rule Tiles */
.rules-tiles {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.rule-tile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

@media (min-width: 968px) {
    .rule-tile {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }
}

.rule-tile:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 255, 0, 0.2);
    transform: translateY(-5px);
}

.rule-tile__media {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

@media (min-width: 968px) {
    .rule-tile__media {
        height: 100%;
        min-height: 400px;
    }
}

.rule-tile__image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

.rule-tile:hover .rule-tile__image {
    transform: scale(1.05);
}

.rule-tile__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 968px) {
    .rule-tile__content {
        padding: 3rem;
    }
}

.rule-tile__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

@media (min-width: 968px) {
    .rule-tile__title {
        font-size: 2.2rem;
    }
}

.rule-tile__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0 0 1rem 0;
}

.rule-tile__text:last-child {
    margin-bottom: 0;
}

@media (min-width: 968px) {
    .rule-tile__text {
        font-size: 1.05rem;
    }
}

/* Alternate layout for even tiles */
.rule-tile:nth-child(even) {
    direction: ltr;
}

@media (min-width: 968px) {
    .rule-tile:nth-child(even) {
        grid-template-columns: 1fr 1fr;
    }

    .rule-tile:nth-child(even) .rule-tile__media {
        order: 2;
    }

    .rule-tile:nth-child(even) .rule-tile__content {
        order: 1;
    }
}