/* ========================================
   V-LEAGUE COMPONENT CLASSES
   Refactored from inline styles for maintainability
   ======================================== */

/* ========================================
   PAGE HERO SECTION
   ======================================== */

.vl-page-hero {
    position: relative;
    min-height: 260px;
    height: auto;
    padding: 60px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #0A0A0A 100%);
    overflow: hidden;
}

.vl-page-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.vl-page-hero-glow {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.vl-page-hero-glow::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 135, 0.3) 0%, transparent 70%);
}

.vl-page-hero-glow--right::before {
    right: -200px;
    top: -200px;
}

.vl-page-hero-glow--left::before {
    left: -150px;
    bottom: -150px;
}

.vl-page-title {
    font-size: clamp(2.2rem, 7vw, 4.5rem);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.vl-section-pretitle {
    color: #00FF87;
    font-family: 'Oswald', sans-serif;
    letter-spacing: clamp(0.12em, 1.2vw, 0.3em);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: clamp(0.8rem, 2.4vw, 1rem);
}

.vl-page-description {
    color: #B0B0B0;
    font-size: clamp(0.95rem, 2.6vw, 1.2rem);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   PAGE SECTIONS
   ======================================== */

.vl-page-section {
    padding: 80px 5%;
    background: #0A0A0A;
}

.vl-page-section--gradient {
    background: linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%);
}

.vl-page-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vl-page-container--narrow {
    max-width: 1000px;
}

.vl-page-container--form {
    max-width: 800px;
}

.vl-page-section-title {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 50px;
    font-size: clamp(1.5rem, 3.8vw, 2rem);
    text-align: center;
}

/* ========================================
   SCHEDULE COMPONENTS
   ======================================== */

.vl-schedule-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.vl-schedule-list {
    margin-bottom: 80px;
}

.vl-schedule-heading {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: var(--vl-primary-green);
    margin-bottom: 30px;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--vl-dark-gray);
}

/* ========================================
   STANDINGS COMPONENTS
   ======================================== */

.vl-standings-card {
    background: #1A1A1A;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #2D2D2D;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.vl-standings-header {
    padding: 30px;
    border-bottom: 1px solid #2D2D2D;
}

.vl-standings-title {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
}

.vl-standings-content {
    padding: 20px;
}

.vl-note-box {
    margin-top: 40px;
    padding: 30px;
    background: rgba(0, 255, 135, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 135, 0.2);
}

.vl-note-box p {
    color: #B0B0B0;
    margin: 0;
    text-align: center;
    font-size: 0.95rem;
}

.vl-note-label {
    color: var(--vl-primary-green);
}

/* ========================================
   STATS LEADERS COMPONENTS
   ======================================== */

.vl-stats-leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.vl-stats-leader-card {
    background: #1A1A1A;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #2D2D2D;
}

.vl-stats-leader-title {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: var(--vl-primary-green);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

/* ========================================
   FORM COMPONENTS
   ======================================== */

.vl-form-header {
    text-align: center;
    margin-bottom: 50px;
}

.vl-form-title {
    font-size: 2.5rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.vl-form-description {
    color: #B0B0B0;
    font-size: 1.1rem;
}

.vl-form-card {
    background: #1A1A1A;
    border-radius: 20px;
    padding: 50px;
    border: 1px solid #2D2D2D;
}

.vl-form {
    display: grid;
    gap: 25px;
}

.vl-form-group {
    display: block;
}

.vl-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.vl-form-label {
    display: block;
    color: #FFFFFF;
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.vl-form-input,
.vl-form-textarea {
    width: 100%;
    padding: 15px 20px;
    background: #2D2D2D;
    border: 2px solid #2D2D2D;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.vl-form-input:focus,
.vl-form-textarea:focus {
    outline: none;
    border-color: var(--vl-primary-green);
}

.vl-form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* ========================================
   PLAYER/SINGLE PAGE COMPONENTS
   ======================================== */

.vl-single-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.vl-single-logo {
    flex-shrink: 0;
}

.vl-single-title {
    margin-bottom: 20px;
}

.vl-single-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.vl-player-single-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.vl-player-photo-container {
    position: relative;
}

.vl-player-photo-large {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.vl-player-photo-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--vl-secondary-black);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vl-player-jersey-xlarge {
    font-size: 6rem;
    color: var(--vl-primary-green);
    font-family: 'Oswald', sans-serif;
}

.vl-player-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--vl-primary-green);
    color: var(--vl-primary-black);
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vl-player-title {
    font-size: 3rem;
    margin-bottom: 10px;
}

.vl-player-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.vl-player-position-badge {
    background: var(--vl-primary-green);
    color: var(--vl-primary-black);
    padding: 8px 20px;
    border-radius: 5px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.vl-player-team-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--vl-white);
    text-decoration: none;
}

.vl-player-team-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.vl-player-physical {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.vl-physical-item {
    display: block;
}

.vl-physical-label {
    color: var(--vl-light-gray);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.vl-physical-value {
    font-size: 1.5rem;
    font-family: 'Oswald', sans-serif;
}

.vl-stats-title {
    margin-bottom: 20px;
}

.vl-stats-subtitle {
    margin-top: 30px;
    margin-bottom: 20px;
}

.vl-stats-grid--compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
}

.vl-stats-grid--three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/* ========================================
   CONTENT CARDS
   ======================================== */

.vl-content-card {
    padding: 30px;
    margin-bottom: 40px;
}

.vl-content-title {
    margin-bottom: 20px;
}

.vl-content {
    color: var(--vl-light-gray);
}

/* ========================================
   TEAM ROSTER COMPONENTS
   ======================================== */

.vl-team-roster {
    margin-top: 40px;
}

.vl-roster-title {
    margin-bottom: 30px;
}

.vl-roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.vl-roster-item {
    display: block;
    text-decoration: none;
}

.vl-roster-player {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.vl-roster-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.vl-roster-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--vl-dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--vl-primary-green);
    font-family: 'Oswald', sans-serif;
}

.vl-roster-name {
    font-weight: 600;
    color: var(--vl-white);
}

.vl-roster-meta {
    font-size: 0.85rem;
    color: var(--vl-light-gray);
}

.vl-roster-stats {
    font-size: 0.8rem;
    color: var(--vl-primary-green);
    margin-top: 5px;
}

/* ========================================
   ARCHIVE/PLAYER COMPONENTS
   ======================================== */

.vl-player-card {
    display: block;
    text-decoration: none;
    overflow: hidden;
}

.vl-player-image-container {
    height: 200px;
    overflow: hidden;
}

.vl-player-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vl-player-placeholder {
    height: 200px;
    background: var(--vl-dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vl-player-jersey-large {
    font-size: 4rem;
    color: var(--vl-primary-green);
    font-family: 'Oswald', sans-serif;
}

.vl-player-info {
    padding: 20px;
}

.vl-player-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 10px;
}

.vl-player-name {
    color: var(--vl-white);
    margin: 0;
}

.vl-player-position {
    color: var(--vl-primary-green);
    font-size: 0.85rem;
}

.vl-player-jersey {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--vl-dark-gray);
}

.vl-player-team {
    font-size: 0.85rem;
    color: var(--vl-light-gray);
    margin-bottom: 15px;
}

.vl-player-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 15px;
    border-top: 1px solid var(--vl-dark-gray);
}

.vl-player-stat {
    text-align: center;
}

.vl-player-stat-value {
    color: var(--vl-primary-green);
    font-weight: 700;
}

.vl-player-stat-label {
    color: var(--vl-light-gray);
    font-size: 0.75rem;
    text-transform: uppercase;
}

/* ========================================
   GAME/SCHEDULE COMPONENTS
   ======================================== */

.vl-game-team {
    display: flex;
    align-items: center;
    gap: 15px;
}

.vl-game-team--home {
    justify-content: flex-end;
}

.vl-game-team--away {
    justify-content: flex-start;
}

.vl-game-team-name {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.vl-game-team-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.vl-game-center {
    text-align: center;
    min-width: 150px;
}

.vl-game-score {
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem;
}

.vl-game-score--winner {
    color: var(--vl-primary-green);
}

.vl-game-score-separator {
    color: var(--vl-light-gray);
}

.vl-game-status {
    color: var(--vl-light-gray);
    font-size: 0.8rem;
}

.vl-game-live {
    color: #ff4444;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
}

.vl-game-vs {
    color: var(--vl-primary-green);
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
}

.vl-game-time {
    color: var(--vl-light-gray);
    font-size: 0.9rem;
}

.vl-game-date {
    color: var(--vl-light-gray);
    font-size: 0.8rem;
    margin-top: 5px;
}

/* ========================================
   FOOTER ADDITIONAL COMPONENTS
   ======================================== */

.vl-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.vl-footer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(0, 255, 135, 0.2), rgba(0, 212, 114, 0.1));
    border-radius: 50%;
    flex-shrink: 0;
}

.vl-footer-contact-text {
    padding-top: 8px;
}

.vl-footer-about {
    color: var(--vl-light-gray);
    font-size: 0.95rem;
}

.vl-footer-logo-text {
    color: var(--vl-primary-green);
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

/* ========================================
   EMPTY STATE
   ======================================== */

.vl-empty-state {
    text-align: center;
    padding: 60px 20px;
}

.vl-empty-state p {
    color: var(--vl-light-gray);
    font-size: 1.2rem;
}

/* ========================================
   STAT VALUE MODIFIERS
   ======================================== */

.vl-stat-value--highlight {
    color: var(--vl-primary-green);
}

.vl-stat-value--danger {
    color: #ff6b6b;
}

/* ========================================
   BUTTON MODIFIERS
   ======================================== */

.vl-button-outline--muted {
    border-color: var(--vl-dark-gray);
    color: var(--vl-light-gray);
}

.vl-button-outline--muted:hover {
    border-color: var(--vl-primary-green);
    color: var(--vl-primary-green);
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 768px) {
    .vl-player-single-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vl-single-header {
        flex-direction: column;
        text-align: center;
    }

    .vl-form-row {
        grid-template-columns: 1fr;
    }

    .vl-stats-leaders-grid {
        grid-template-columns: 1fr;
    }

    .vl-stats-leader-card {
        background: transparent;
        border: none;
        padding: 0;
    }

    .vl-stats-grid--three {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   GENERIC PAGE/TEMPLATE COMPONENTS
   ======================================== */

.vl-container--default {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.vl-generic-page-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.vl-page-thumbnail {
    margin-bottom: 30px;
}

.vl-page-featured-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.vl-page-content {
    color: #B0B0B0;
    line-height: 1.8;
}

.vl-hero--fullheight {
    min-height: 80vh;
}

.vl-hero-description {
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto 30px;
}

.vl-logo-fallback {
    color: var(--vl-primary-green);
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

/* ========================================
   SHORTCODE SCHEDULE COMPONENTS
   ======================================== */

.vl-schedule-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex: 1;
}

.vl-schedule-team {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vl-schedule-team--home {
    flex-direction: row;
}

.vl-schedule-team--away {
    flex-direction: row-reverse;
}

.vl-schedule-team-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.vl-schedule-team-name {
    color: #FFFFFF;
    font-weight: 600;
}

.vl-schedule-vs {
    color: #00FF87;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
}

.vl-schedule-venue {
    color: #B0B0B0;
    text-align: right;
    min-width: 150px;
}

.vl-venue-icon {
    vertical-align: middle;
    margin-right: 5px;
}

.vl-empty-message {
    color: #B0B0B0;
    text-align: center;
    padding: 40px;
}

@media (max-width: 768px) {
    .vl-schedule-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .vl-schedule-teams {
        flex-direction: row;
        gap: 12px;
        flex-wrap: nowrap;
    }

    .vl-schedule-team {
        justify-content: center;
    }

    .vl-schedule-team--away {
        flex-direction: row;
    }

    .vl-schedule-vs {
        font-size: 1rem;
    }

    .vl-schedule-venue {
        text-align: center;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .vl-schedule-teams {
        gap: 8px;
    }

    .vl-schedule-team-name {
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .vl-schedule-team-logo {
        width: 34px;
        height: 34px;
    }

    .vl-schedule-vs {
        font-size: 0.9rem;
    }
}

/* ========================================
   SHORTCODE STANDINGS TABLE
   ======================================== */

.vl-standings-wrapper {
    overflow-x: auto;
}

.vl-standings-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.vl-standings-header-row {
    background: #2D2D2D;
}

.vl-standings-th {
    padding: 15px 12px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    color: #B0B0B0;
}

.vl-standings-th--center {
    text-align: center;
}

.vl-standings-th--left {
    text-align: left;
}

.vl-standings-row {
    border-bottom: 1px solid #2D2D2D;
}

.vl-standings-td {
    padding: 18px 12px;
}

.vl-standings-rank {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    color: #00FF87;
    font-weight: 600;
}

.vl-standings-team-cell {
    padding: 18px 12px;
}

.vl-standings-team {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vl-standings-logo {
    width: 35px;
    height: 35px;
    object-fit: contain;
    border-radius: 5px;
}

.vl-standings-logo-placeholder {
    width: 35px;
    height: 35px;
    background: #2D2D2D;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00FF87;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
}

.vl-standings-team-name {
    color: #FFFFFF;
    font-weight: 600;
}

.vl-standings-stat {
    text-align: center;
    color: #FFFFFF;
    font-weight: 500;
}

.vl-standings-pct {
    text-align: center;
    color: #00FF87;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
}

.vl-standings-secondary {
    text-align: center;
    color: #B0B0B0;
}

.vl-diff--positive {
    text-align: center;
    color: #00FF87;
    font-weight: 500;
}

.vl-diff--negative {
    text-align: center;
    color: #FF6B6B;
    font-weight: 500;
}

/* ========================================
   SHORTCODE SPONSORS CAROUSEL
   ======================================== */

.vl-sponsors-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.vl-sponsor-item {
    filter: grayscale(100%) brightness(1.2);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.vl-sponsor-item:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.vl-sponsor-item--placeholder {
    filter: grayscale(100%);
    opacity: 0.5;
}

/* Removed conflicting logo style */
