/* --- Theme Variables (Black/Silver/Gold Theme) --- */
:root {
    --dark-navy: #121212;
    --navy: #282828;
    --light-blue: #E0E0E0;
    --slate: #AAAAAA;
    --light-slate: #F5F5F5;
    --white: #FFFFFF;
    --gold: #D4AF37;
}

/* --- General Body Styles --- */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--slate);
    background-color: var(--dark-navy);
    margin: 0;
    padding: 0;
    padding-top: 80px;
}

main {
    /* Main content container */
}

h1, h2, h3 {
    color: var(--light-slate);
}
h1 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 3rem;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}
h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    color: var(--light-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold);
}

/* --- Header & Navigation --- */
header {
    background: var(--dark-navy);
    padding: 0 2rem;
    border-bottom: 1px solid var(--gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
}
.header-logo { flex: 1; display: flex; justify-content: flex-start; }
.header-logo img { max-height: 100px; width: auto; }
.main-nav { flex: 2; display: flex; justify-content: center; }
.header-countdown {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    text-align: right;
    
    background: linear-gradient(to right, var(--gold) 20%, var(--white) 40%, var(--gold) 60%);
    background-size: 200% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: sheen 5s linear infinite;
}
.header-countdown .no-event {
    background: none;
    color: var(--gold);
    background-clip: unset;
    -webkit-background-clip: unset;
    animation: none;
}
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: nowrap; justify-content: center; }
.main-nav ul li { position: relative; display: flex; align-items: center; }
.main-nav ul li a { color: var(--slate); font-weight: bold; padding: 0 15px; display: flex; align-items: center; height: 80px; transition: all 0.3s ease; }
.main-nav ul li a:hover,
.main-nav ul li:hover > a { color: var(--gold); }

/* --- Dropdown Menu Styles --- */
.dropdown-content { display: none; position: absolute; top: 80px; left: 0; background-color: var(--dark-navy); min-width: 240px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); z-index: 100; border: 1px solid var(--gold); border-top: none; border-radius: 0 0 4px 4px; }
.dropdown-content a { color: var(--slate); padding: 12px 16px; display: block; text-align: left; height: auto; white-space: nowrap; }
.dropdown-content a:hover { background-color: #1b2b4d; }
.dropdown:hover .dropdown-content { display: block; }

/* --- Swiper Force Styles --- */
.swiper-wrapper {
    display: flex;
    align-items: stretch;
}
.swiper-slide {
    flex-shrink: 0;
    height: auto;
    position: relative;
}

/* ... (All previous CSS is the same until the Ticker/Slider Sections) ... */

/* --- Ticker/Slider Sections --- */
.news-ticker-container, .promos-slider-container {
    background-color: #000000;
    padding: 1.5rem 0;
    position: relative; /* All containers need this for z-index context */
}
.news-ticker-container {
    border-top: 2px solid var(--gold);
    margin-top: -80px; /* Pulls the container up over the hero */
    z-index: 4; /* Ensures it's on top */
}
.promos-slider-container {
    border-bottom: 2px solid var(--gold);
}
.swiper {
    width: 100%;
}
.swiper-slide.ticker-slide { /* This now only applies to the News ticker */
    width: 150px;
    height: 150px;
}
.ticker-slide-link { display: block; width:100%; height:100%; text-decoration: none; color: var(--slate); position: relative; overflow: hidden; border-radius: 4px; background-color: var(--navy); }
.ticker-slide-link img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.ticker-slide-link:hover img { transform: scale(1.1); }
.ticker-slide-link .ticker-label { position: absolute; top: 5px; right: 5px; background-color: #c00; color: white; font-size: 0.7rem; padding: 2px 5px; border-radius: 3px; font-weight: bold; }
.ticker-slide-link span { position: absolute; bottom: 0; left: 0; width: 100%; text-align: left; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); padding: 20px 10px 5px; font-size: 0.9rem; font-weight: bold; color: var(--white); box-sizing: border-box; }

/* Promo Slider Card Specific Styles */
.promos-slider-container .promo-swiper-slide {
    width: 200px;
    height: 200px;
}
/* ... (Rest of the promo card styles remain the same) ... */

/* ... (The rest of the CSS file remains the same) ... */
.promo-card-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    text-decoration: none;
    background-color: var(--navy);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.promo-card-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
}
.promo-card-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.promo-card-link:hover img {
    transform: scale(1.05);
}
.promo-card-link .promo-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.75); /* UPDATED */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--white);
}
.promo-card-link .promo-card-date {
    font-size: 0.75rem;
    color: var(--slate);
    margin-bottom: 0.25rem;
    font-weight: bold;
}
.promo-card-link .promo-card-character {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.2;
}
.promo-card-link .promo-card-title {
    font-size: 0.9rem;
    color: var(--light-blue);
}

/* --- Hero Section Styling --- */
.hero.video-hero {
    position: relative;
    height: 80vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}
.video-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.video-background iframe,
.video-background video { width: 100%; height: 100%; object-fit: cover; transform: scale(1.5); }
.hero.video-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2;
}
.hero-content { position: relative; z-index: 3; padding: 2rem; }
.hero-content h1 { font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; font-size: 3.5rem; margin-bottom: 1rem; color: var(--white); text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); }
.hero-content p { font-size: 1.25rem; color: var(--slate); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-btn { padding: 15px 30px; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; background-color: var(--gold); color: var(--dark-navy); font-weight: bold; border: none; cursor: pointer; transition: all 0.3s ease; }
.hero-btn:hover { background-color: var(--white); color: var(--dark-navy); }

/* --- Footer --- */
footer { text-align: center; padding: 2rem; margin-top: 2rem; background: var(--navy); border-top: 1px solid var(--gold); color: var(--slate); }

/* --- Content Sections --- */
.content-section { 
    margin-bottom: 3rem; 
    padding: 0 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.content-section h2 { color: var(--white); border-bottom: 2px solid var(--gold); padding-bottom: 10px; margin-bottom: 1.5rem; }

/* --- Champions Section --- */
.champions-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr);
    gap: 20px; 
}
.champion-card { display: block; position: relative; height: 350px; border-radius: 8px; overflow: hidden; background-size: cover; background-position: center 20%; text-decoration: none; box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.champion-card:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(0,0,0,0.5); }
.champion-card-overlay { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(18, 18, 18, 1) 10%, rgba(18, 18, 18, 0.7) 40%, transparent 70%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem; box-sizing: border-box; }
.champion-card-belt { position: absolute; top: 10px; right: 10px; width: 60px; height: auto; opacity: 0.8; }
.champion-card-info { color: var(--white); text-align: left; }
.champion-card-info .champion-name { 
    font-family: 'Oswald', sans-serif; 
    font-size: 1.5rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    display: block; 
    line-height: 1.2; 
    background: var(--white);
    color: var(--white);
    background-clip: text;
    -webkit-background-clip: text;
    transition: color 0.3s ease;
}
.champion-card-info .title-name { 
    font-size: 0.9rem; 
    color: var(--slate); 
    display: block; 
    background: var(--slate);
    color: var(--slate);
    background-clip: text;
    -webkit-background-clip: text;
    transition: color 0.3s ease;
}
.champion-card:hover .champion-name,
.champion-card:hover .title-name {
    background: linear-gradient(to right, var(--light-slate) 20%, var(--gold) 40%, var(--light-slate) 60%);
    background-size: 200% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: sheen 1.5s linear infinite;
}
.champion-card-info .reign-days { font-size: 0.8rem; font-weight: bold; color: var(--gold); background-color: rgba(0,0,0,0.4); padding: 2px 6px; border-radius: 4px; display: inline-block; margin-top: 8px; }

/* --- Roster Page Styling --- */
.roster-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}
.roster-card {
    background-color: var(--navy);
    border-radius: 8px;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.roster-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.roster-card-image {
    height: 250px;
    background-size: cover;
    background-position: center 20%;
}
.roster-card-image-duo {
    display: flex;
    height: 250px;
}
.duo-image {
    flex: 1;
    background-size: cover;
    background-position: center 20%;
}
.roster-card-name {
    padding: 1rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--light-slate);
    text-align: center;
    background: var(--light-slate);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.roster-card:hover .roster-card-name {
    background: linear-gradient(to right, var(--light-slate) 20%, var(--gold) 40%, var(--light-slate) 60%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: sheen 1.5s linear infinite;
}
.roster-detail-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}
@media (min-width: 768px) {
    .roster-detail-header {
        flex-direction: row;
    }
}
.roster-detail-left {
    flex-shrink: 0;
    width: 100%;
    max-width: 300px;
}
.roster-detail-right {
    flex-grow: 1;
}
.roster-detail-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.roster-info-box {
    background-color: var(--navy);
    padding: 0;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--navy);
}
.roster-info-box h2 {
    margin: 0;
    border-bottom: none;
    padding-bottom: 0;
}
.vitals-box {
    padding: 1.5rem;
}
.vitals-box h2 {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
}
.vitals-box p {
    margin: 0.5rem 0;
    padding: 0;
}
.video-embed-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    margin-bottom: 1rem;
    border-radius: 8px;
}
.video-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.moveset-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}
.move-item {
    background-color: var(--dark-navy);
    padding: 1rem;
    border-radius: 4px;
}
.move-item strong {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
}
.move-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--slate);
}
.other-moves {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #4a5568;
}
.other-moves h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0;
}
details.roster-info-box {
    border: 1px solid var(--navy);
    transition: background-color 0.2s ease;
}
details.roster-info-box:hover {
    border-color: #4a5568;
}
details summary {
    padding: 1.5rem;
    cursor: pointer;
    list-style: none;
    position: relative;
}
details summary::-webkit-details-marker {
    display: none;
}
details .details-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    border-top: 1px solid #4a5568;
}
details summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    font-size: 2rem;
    line-height: 1;
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    transition: transform 0.3s ease;
}
details[open] > summary::after {
    transform: translateY(-50%) rotate(45deg);
}
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
}
.promo-card {
    position: relative;
    height: 200px;
    width: 200px;
    display: block;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    margin: 0 auto;
}
.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.promo-card:hover img {
    transform: scale(1.1);
}
.promo-card .promo-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.promo-card-title {
    color: var(--white);
    font-weight: bold;
    font-size: 0.9rem;
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--light-slate);
    transition: color 0.3s ease;
}
.promo-card-date {
    font-size: 0.75rem;
    color: var(--slate);
    margin-bottom: 0.25rem;
    font-weight: bold;
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--slate);
    transition: color 0.3s ease;
}
.promo-card:hover .promo-card-title,
.promo-card:hover .promo-card-date {
    background: linear-gradient(to right, var(--light-slate) 20%, var(--gold) 40%, var(--light-slate) 60%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: sheen 1.5s linear infinite;
}

/* --- Title History Page Styling --- */
.history-container {
    max-width: 1000px;
    margin: 0 auto;
}
.stats-box {
    background-color: var(--navy);
    border: 1px solid var(--gold);
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    gap: 1rem;
}
.stats-box div { 
    font-size: 1.1rem; 
    color: var(--light-slate);
    white-space: nowrap;
}
.title-header { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; margin-bottom: 2rem; text-align: center; }
.title-history-belt-img { max-height: 120px; width: auto; }
.history-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.history-table th, .history-table td { padding: 12px 15px; border-bottom: 1px solid #282828; text-align: left; vertical-align: middle; }
.history-table thead { background-color: var(--navy); }
.history-table tbody tr {
    transition: background-color 0.2s ease;
}
.history-table tbody tr:hover {
    background-color: var(--navy);
}
.history-table th:nth-child(1), .history-table td:nth-child(1) { width: 30%; }
.history-table th:nth-child(2), .history-table td:nth-child(2),
.history-table th:nth-child(3), .history-table td:nth-child(3) { width: 25%; }
.history-table th:nth-child(4), .history-table td:nth-child(4) { width: 20%; text-align: center; }
.history-table tr.has-tooltip { position: relative; cursor: help; }
.history-table tr.has-tooltip:hover::after { content: attr(data-note); position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); padding: 10px 15px; border-radius: 4px; background-color: var(--navy); color: var(--light-slate); font-size: 0.9rem; white-space: normal; width: 300px; max-width: 90vw; z-index: 10; text-align: left; border: 1px solid var(--gold); box-shadow: 0 4px 15px rgba(0,0,0,0.3); visibility: visible; opacity: 1; transition: opacity 0.2s ease; }
.history-table tr.has-tooltip::after { content: ''; visibility: hidden; opacity: 0; }

/* --- Event Calendar Styling --- */
.on-break-message { text-align: center; background-color: var(--navy); padding: 3rem; border-radius: 8px; border: 1px solid var(--gold); }
.view-toggle { text-align: center; margin-bottom: 2rem; }
.view-toggle button { background-color: var(--navy); color: var(--slate); border: 1px solid var(--light-blue); padding: 10px 20px; cursor: pointer; font-size: 1rem; font-weight: bold; transition: all 0.2s ease; }
.view-toggle button.active { background-color: var(--gold); color: var(--dark-navy); border-color: var(--gold); }
.view-toggle button:first-of-type { border-top-left-radius: 4px; border-bottom-left-radius: 4px; }
.view-toggle button:last-of-type { border-top-right-radius: 4px; border-bottom-right-radius: 4px; border-left: none; }
.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.calendar-header h2 { border-bottom: none; margin: 0; }
.calendar-table { width: 100%; table-layout: fixed; border-collapse: collapse; }
.calendar-table th { text-align: center; padding: 0.5rem; background-color: var(--navy); color: var(--gold); }
.calendar-table td {
    height: 100px;
    vertical-align: top;
    border: 1px solid #2a3f62;
    padding: 5px;
}
.calendar-table .day-number { font-weight: bold; color: var(--light-slate); }
.calendar-event { font-size: 0.8rem; padding: 3px 5px; border-radius: 3px; margin-top: 5px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; color: var(--white); }
.event-type-ppv { background-color: var(--gold); color: var(--dark-navy); }
.event-type-zenith { background-color: var(--light-blue); color: var(--dark-navy); }
.event-type-other { background-color: #4a5568; }
.event-type-badge { font-size: 0.8rem; padding: 4px 8px; border-radius: 12px; font-weight: bold; color: var(--dark-navy); }

/* --- Fade-in on Scroll Animation --- */
.fade-in-section { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-in-section.is-visible { opacity: 1; transform: translateY(0); }

/* --- Keyframes for Sheen Animation --- */
@keyframes sheen {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* --- Responsive Design --- */
@media (max-width: 1200px) {
    .header-logo, .header-countdown { display: none; }
    .main-nav { flex: 1; }
    .roster-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
    .champions-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-box { flex-wrap: wrap; } 
    .roster-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .roster-detail-header { flex-direction: column; align-items: center; }
    .roster-detail-left { max-width: 100%; }
    .history-table, .history-table thead, .history-table tbody, .history-table th, .history-table td, .history-table tr { display: block; }
    .history-table thead tr { position: absolute; top: -9999px; left: -9999px; }
    .history-table tr { border: 1px solid #2a3f62; margin-bottom: 1rem; }
    .history-table td { border: none; border-bottom: 1px solid #1d2d50; position: relative; padding-left: 50%; text-align: right; }
    .history-table td:before { position: absolute; top: 12px; left: 15px; width: 45%; padding-right: 10px; white-space: nowrap; text-align: left; font-weight: bold; color: var(--light-slate); }
    .history-table td:nth-of-type(1):before { content: "Champion"; }
    .history-table td:nth-of-type(2):before { content: "Date Won"; }
    .history-table td:nth-of-type(3):before { content: "Date Lost"; }
    .history-table td:nth-of-type(4):before { content: "Days Held"; }
}
@media (max-width: 600px) {
    .roster-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .champions-grid { grid-template-columns: 1fr; }
}

/* --- User Auth Page Styling --- */
.auth-container {
    max-width: 500px;
    margin: 4rem auto;
    background-color: var(--navy);
    padding: 2rem 3rem;
    border-radius: 8px;
}
.auth-form .form-group {
    margin-bottom: 1.5rem;
}
.auth-form button {
    width: 100%;
}
.auth-switch {
    text-align: center;
    margin-top: 1.5rem;
}
.error-messages {
    background-color: rgba(255,0,0,0.1);
    border: 1px solid #c00;
    color: #ff8b8b;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}
.error-messages p { margin: 0.25rem 0; }
.success-message {
    background-color: rgba(88, 255, 166, 0.1);
    border: 1px solid var(--light-blue);
    color: var(--light-slate);
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    text-align: center;
}

/* ... (All previous CSS is the same until the end) ... */

/* --- Application Form Specific Styling --- */
.application-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .application-form .form-group {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .application-form .form-group label {
        flex-basis: 200px; /* Set a fixed base width for all labels */
        flex-shrink: 0;
        text-align: right;
        margin-bottom: 0;
    }

    .application-form .form-group.align-top {
        align-items: flex-start;
    }

    .application-form .form-group.align-top label {
        padding-top: 12px; /* Align label with the top of the textarea */
    }
}
/* --- Rankings Page Styling --- */
.rankings-section {
    margin-bottom: 3rem;
}
.rankings-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--navy);
}
.rankings-table th, .rankings-table td {
    padding: 1rem;
    border-bottom: 1px solid #282828;
    text-align: left;
    vertical-align: middle;
}
.rankings-table thead {
    background-color: var(--dark-navy);
}
.rankings-table th {
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}
.rankings-table .rank-col {
    width: 100px;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}
.rankings-table .record-col {
    width: 200px;
    font-weight: bold;
    text-align: center;
}
.rankings-table .name-col a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--light-slate);
    font-weight: bold;
    font-size: 1.1rem;
}
.rankings-table .name-col a:hover {
    color: var(--gold);
}
.rankings-table .name-col img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid #282828;
}
.rankings-table .tag-team-images {
    display: flex;
    margin-right: 1rem;
}
.rankings-table .tag-team-images img {
    width: 40px;
    height: 40px;
    margin-right: -15px; /* Overlap images */
}

/* ... (All previous CSS is the same until the Rankings Page Styling section) ... */

/* --- Rankings Page Styling --- */
.rankings-section {
    margin-bottom: 3rem;
}
.rankings-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--navy);
}
.rankings-table th, .rankings-table td {
    padding: 1rem;
    border-bottom: 1px solid #282828;
    text-align: left;
    vertical-align: middle;
}
.rankings-table thead {
    background-color: var(--dark-navy);
}
.rankings-table th {
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}
.rankings-table .rank-col {
    width: 100px;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}
.rankings-table .record-col {
    width: 200px;
    font-weight: bold;
    text-align: center;
}
.rankings-table .name-col a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--light-slate);
    font-weight: bold;
    font-size: 1.1rem;
}
.rankings-table .name-col a:hover {
    color: var(--gold);
}
.rankings-table .name-col img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid #282828;
}
.rankings-table .tag-team-images {
    display: flex;
    margin-right: 1rem;
}
.rankings-table .tag-team-images img {
    width: 40px;
    height: 40px;
    margin-right: -15px; /* Overlap images */
}

/* --- Data Table Styling (for Finances) --- */
.data-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--navy);
    color: var(--slate);
    font-size: 0.9rem;
}
.data-table th, .data-table td {
    padding: 12px 15px;
    border: 1px solid #2a3f62;
    text-align: left;
}
.data-table thead {
    background-color: var(--dark-navy);
}
.data-table th {
    font-weight: bold;
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}
.data-table tbody tr:hover {
    background-color: #2a3f62;
}

/* --- Archive Page Styling --- */
.archive-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.archive-item {
    display: block;
    background-color: var(--navy);
    padding: 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    border-left: 4px solid var(--navy);
    transition: all 0.2s ease;
}
.archive-item:hover {
    border-left-color: var(--gold);
    background-color: #2a3f62;
}
.archive-item-title {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--light-slate);
    margin-bottom: 0.25rem;
}
.archive-item-meta {
    font-size: 0.9rem;
    color: var(--slate);
}

/* ... (All previous CSS is the same until the Archive Page Styling section) ... */

/* --- Archive Page Styling --- */
.archive-section {
    margin-bottom: 3rem;
}
.archive-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.archive-item {
    display: block;
    background-color: var(--navy);
    padding: 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    border-left: 4px solid var(--navy);
    transition: all 0.2s ease;
}
.archive-item:hover {
    border-left-color: var(--gold);
    background-color: #2a3f62;
}
.archive-item-title {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--light-slate);
}

/* --- Archive Grid Styling --- */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.archive-grid-item {
    background-color: var(--navy);
    color: var(--light-slate);
    border: 1px solid #4a5568;
    padding: 2rem 1rem;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}
.archive-grid-item:hover {
    background-color: var(--gold);
    color: var(--dark-navy);
    border-color: var(--gold);
}
.archive-hidden-list {
    margin-top: 2rem;
}

/* --- Page Builder Public Styles --- */
.page-columns {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}
@media (min-width: 768px) {
    .page-columns.columns-2 { grid-template-columns: 1fr 1fr; }
    .page-columns.columns-3 { grid-template-columns: 1fr 1fr 1fr; }
}
/* ... (rest of the public column styles are the same) */

/* --- Block Alignment --- */
.align-left { text-align: left; }
.align-center { text-align: center; }
.align-right { text-align: right; }