/* ============================================
   PAGE-SPECIFIC PREMIUM STYLES
   For About, Roster, Champions, Contact Pages
   ============================================ */

:root {
    --primary-dark: #0a0e27;
    --secondary-dark: #1a1f3a;
    --card-dark: rgba(30, 40, 75, 0.6);
    --primary-red: #e53935;
    --bright-red: #ff5252;
    --accent-red: #ff1744;
    --text-light: #e0e0e0;
    --text-muted: #b0bec5;
    --border-color: rgba(229, 57, 53, 0.3);
    --border-hover: rgba(229, 57, 53, 0.8);
}

/* ============================================
   PAGE HERO SECTION
   ============================================ */

.page-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.35) 0%, rgba(229, 57, 53, 0.22) 50%, rgba(10, 14, 39, 0.45) 100%);
    margin-bottom: 0;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(229, 57, 53, 0.18), transparent 70%);
    animation: heroPulse 8s ease-in-out infinite;
    z-index: 1;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 40%, rgba(255, 82, 82, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(229, 57, 53, 0.08) 0%, transparent 45%);
    animation: heroBgShift 12s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% { 
        opacity: 0.7;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.08);
    }
}

@keyframes heroBgShift {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(10px, -10px); }
    50% { transform: translate(0, 0); }
    75% { transform: translate(-10px, 10px); }
}

.page-hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    animation: pageHeroFade 0.9s ease-out;
}

@keyframes pageHeroFade {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.page-hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-family: 'Bebas Neue', cursive;
    text-shadow: 
        0 0 20px rgba(229, 57, 53, 0.8),
        0 0 40px rgba(229, 57, 53, 0.4),
        0 0 80px rgba(229, 57, 53, 0.2);
    margin-bottom: 1rem;
    animation: pageHeroTitle 1.2s ease-out;
}

@keyframes pageHeroTitle {
    from {
        opacity: 0;
        transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--bright-red);
    font-weight: 300;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* ============================================
   PAGE CONTENT CONTAINER
   ============================================ */

.page-content {
    max-width: 1200px;
    margin: -3rem auto 0;
    padding: 0 2rem 4rem;
    position: relative;
    z-index: 5;
}

.page-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.roster-search {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--card-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    box-shadow: 0 12px 32px rgba(10, 14, 39, 0.55);
    backdrop-filter: blur(12px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.roster-search:focus-within {
    border-color: var(--border-hover);
    box-shadow: 0 16px 40px rgba(229, 57, 53, 0.28);
}

.roster-search input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.roster-search input::placeholder {
    color: var(--text-muted);
}

.roster-search input:focus {
    outline: none;
    color: #ffffff;
}

.roster-search-empty {
    margin: 0.5rem 0 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    letter-spacing: 0.4px;
}

/* ============================================
   COMING SOON SECTION
   ============================================ */

.coming-soon {
    background: linear-gradient(135deg, rgba(30, 40, 75, 0.6), rgba(20, 30, 60, 0.4));
    border: 2px solid rgba(229, 57, 53, 0.4);
    border-radius: 16px;
    padding: 4rem 2rem;
    text-align: center;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.coming-soon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(229, 57, 53, 0.08) 50%, transparent 100%);
    animation: shimmerSlide 3s linear infinite;
}

@keyframes shimmerSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.coming-soon-content {
    position: relative;
    z-index: 2;
    animation: slideInUp 0.8s ease-out;
}

.coming-soon-content h2 {
    color: var(--bright-red);
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    font-family: 'Bebas Neue', cursive;
}

.coming-soon-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

/* ============================================
   ROSTER PAGE STYLES
   ============================================ */

.roster-info {
    background: linear-gradient(135deg, rgba(30, 40, 75, 0.6), rgba(20, 30, 60, 0.4));
    border: 2px solid rgba(229, 57, 53, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    animation: slideInUp 0.8s ease-out;
}

.roster-intro {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 1.8rem;
}

/* Premium Roster Card */
.roster-card {
    background: linear-gradient(135deg, rgba(30, 40, 75, 0.7), rgba(20, 30, 60, 0.5));
    border: 2px solid rgba(229, 57, 53, 0.35);
    border-radius: 14px;
    padding: 2.2rem 1.8rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    animation: slideInUp 0.7s ease-out backwards;
}

.roster-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(229, 57, 53, 0.2), transparent 70%);
    transition: all 0.6s ease;
    transform: rotate(0deg);
}

.roster-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 12px;
    border: 1px solid rgba(229, 57, 53, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.roster-card:nth-child(1) { animation-delay: 0.1s; }
.roster-card:nth-child(2) { animation-delay: 0.15s; }
.roster-card:nth-child(3) { animation-delay: 0.2s; }
.roster-card:nth-child(4) { animation-delay: 0.25s; }
.roster-card:nth-child(5) { animation-delay: 0.3s; }
.roster-card:nth-child(6) { animation-delay: 0.35s; }
.roster-card:nth-child(7) { animation-delay: 0.4s; }
.roster-card:nth-child(8) { animation-delay: 0.45s; }
.roster-card:nth-child(n+9) { animation-delay: 0.5s; }

.roster-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-family: 'Bebas Neue', cursive;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.roster-card:hover {
    border-color: var(--border-hover);
    box-shadow: 
        0 0 25px rgba(229, 57, 53, 0.5),
        0 0 50px rgba(229, 57, 53, 0.3),
        inset 0 0 20px rgba(229, 57, 53, 0.1);
    transform: translateY(-8px) scale(1.03);
    background: linear-gradient(135deg, rgba(40, 55, 100, 0.8), rgba(30, 45, 80, 0.6));
}

.roster-card:hover::before {
    top: -50%;
    left: -50%;
    transform: rotate(360deg);
}

.roster-card:hover::after {
    opacity: 1;
}

.roster-card:hover h3 {
    color: var(--bright-red);
    text-shadow: 0 0 15px rgba(255, 82, 82, 0.5);
}

/* Wrestler Record */
.roster-card .record {
    display: block;
    font-size: 0.85rem;
    color: var(--bright-red);
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-top: 0.5rem;
    text-shadow: 0 0 8px rgba(255, 82, 82, 0.3);
    transition: all 0.3s ease;
}

.roster-card:hover .record {
    text-shadow: 0 0 12px rgba(255, 82, 82, 0.6);
    font-size: 0.9rem;
}

/* ============================================
   CHAMPIONS PAGE STYLES
   ============================================ */


.champions-intro {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.champions-intro h2 {
    font-size: 2.8rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Bebas Neue', cursive;
    margin: 0;
}

.champions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.4rem;
    margin-top: 2rem;
    width: 100%;
}

.champion-card {
    background: linear-gradient(135deg, rgba(30, 40, 75, 0.82), rgba(20, 30, 60, 0.58));
    border: 2px solid rgba(229, 57, 53, 0.32);
    border-radius: 16px;
    padding: 2.8rem 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
    width: 100%;
    min-height: 260px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.champion-card::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: linear-gradient(45deg, transparent 0%, rgba(229, 57, 53, 0.14) 30%, transparent 55%);
    transform: rotate(0deg);
    transition: transform 0.6s ease;
}

.champion-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 14px;
    border: 1px solid rgba(229, 57, 53, 0.2);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.champion-card:nth-child(1) { animation-delay: 0.1s; }
.champion-card:nth-child(2) { animation-delay: 0.2s; }
.champion-card:nth-child(3) { animation-delay: 0.3s; }

.champion-card:hover {
    border-color: var(--border-hover);
    box-shadow:
        0 22px 70px rgba(229, 57, 53, 0.28),
        0 0 70px rgba(229, 57, 53, 0.22),
        inset 0 0 22px rgba(229, 57, 53, 0.1);
    transform: translateY(-10px) scale(1.03);
}

.champion-card:hover::before {
    transform: rotate(360deg);
}

.champion-card:hover::after {
    opacity: 1;
}

.champion-tier {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(229, 57, 53, 0.35);
    background: rgba(229, 57, 53, 0.12);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.champion-name {
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    font-family: 'Bebas Neue', cursive;
    position: relative;
    z-index: 2;
}

.champion-status {
    color: var(--accent-red);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    position: relative;
    z-index: 2;
    animation: statusPulse 2s ease-in-out infinite;
}

.champion-card--primary {
    border-color: rgba(255, 82, 82, 0.6);
    box-shadow: 0 26px 80px rgba(229, 57, 53, 0.38);
}

.champion-card--primary .champion-tier {
    background: rgba(255, 82, 82, 0.18);
    color: #ffffff;
}

.champion-card--primary .champion-status {
    color: var(--bright-red);
}

@media (max-width: 900px) {
    .champion-card {
        min-height: 220px;
        padding: 2.4rem 2rem;
    }
}

@media (max-width: 640px) {
    .champions-intro {
        align-items: center;
        text-align: center;
    }

    .champion-card {
        align-items: center;
        text-align: center;
    }

    .champion-tier {
        margin: 0 auto;
    }
}

@keyframes statusPulse {
    0%, 100% { 
        opacity: 0.9;
        text-shadow: 0 0 10px rgba(255, 23, 68, 0.3);
    }
    50% { 
        opacity: 1;
        text-shadow: 0 0 20px rgba(255, 23, 68, 0.6);
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-container {
    max-width: 850px;
    margin: 0 auto;
}

.contact-title {
    color: #ffffff;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    font-family: 'Bebas Neue', cursive;
    margin-bottom: 1.2rem;
    text-align: center;
    animation: slideInUp 0.8s ease-out;
}

.contact-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: slideInUp 0.8s ease-out 0.1s both;
}

.contact-card {
    background: linear-gradient(135deg, rgba(30, 40, 75, 0.7), rgba(20, 30, 60, 0.5));
    border: 2px solid rgba(229, 57, 53, 0.4);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(229, 57, 53, 0.1) 50%, transparent 100%);
    transition: all 0.6s ease;
}

.contact-card:hover::before {
    animation: shimmerSlide 0.6s ease-out;
}

.contact-card:hover {
    border-color: var(--border-hover);
    box-shadow: 
        0 0 30px rgba(229, 57, 53, 0.5),
        0 0 60px rgba(229, 57, 53, 0.3),
        inset 0 0 30px rgba(229, 57, 53, 0.1);
    background: linear-gradient(135deg, rgba(40, 55, 100, 0.7), rgba(30, 45, 80, 0.5));
    transform: translateY(-8px);
}

.contact-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(229, 57, 53, 0.3));
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.contact-card h3 {
    color: var(--bright-red);
    font-size: 2rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
    font-family: 'Bebas Neue', cursive;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 300;
}

.contact-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red), var(--bright-red));
    color: white;
    padding: 1.1rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.95rem;
    font-family: 'Bebas Neue', cursive;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 
        0 8px 25px rgba(229, 57, 53, 0.4),
        inset 0 -4px 0 rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-button:hover {
    box-shadow: 
        0 12px 40px rgba(229, 57, 53, 0.7),
        0 0 60px rgba(229, 57, 53, 0.4),
        inset 0 -4px 0 rgba(0, 0, 0, 0.3);
    transform: scale(1.1) translateY(-3px);
    background: linear-gradient(135deg, var(--bright-red), #ff7070);
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-button:hover::before {
    left: 100%;
}

.additional-info {
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.12), rgba(139, 0, 0, 0.08));
    border: 2px solid rgba(229, 57, 53, 0.35);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    animation: slideInUp 0.8s ease-out 0.3s both;
}

.additional-info::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.1), transparent 70%);
    pointer-events: none;
}

.additional-info h3 {
    color: var(--bright-red);
    font-size: 1.7rem;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    font-family: 'Bebas Neue', cursive;
    position: relative;
    z-index: 2;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    color: var(--text-muted);
    font-size: 1rem;
    padding: 1rem 0;
    padding-left: 1.5rem;
    border-bottom: 1px solid rgba(229, 57, 53, 0.2);
    line-height: 1.7;
    font-weight: 300;
    position: relative;
    transition: all 0.3s ease;
    z-index: 2;
}

.info-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.info-list li:hover {
    color: var(--bright-red);
    padding-left: 2rem;
}

.info-list li:hover::before {
    color: var(--bright-red);
    text-shadow: 0 0 10px rgba(255, 82, 82, 0.6);
}

.info-list li:last-child {
    border-bottom: none;
}

/* ============================================
   SHARED ANIMATIONS
   ============================================ */

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

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

/* ============================================
   COMING SOON PLACEHOLDER
   ============================================ */

.coming-soon-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(30, 40, 75, 0.6), rgba(20, 30, 60, 0.4));
    border: 2px solid rgba(229, 57, 53, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    animation: slideInUp 0.8s ease-out;
}

.coming-soon-placeholder h2 {
    font-size: 2.5rem;
    color: var(--bright-red);
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 82, 82, 0.4);
}

.coming-soon-placeholder p {
    color: var(--text-muted);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.staff-intro {
    background: linear-gradient(135deg, rgba(30, 40, 75, 0.65), rgba(20, 30, 60, 0.45));
    border: 2px solid rgba(229, 57, 53, 0.35);
    border-radius: 18px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.28);
    animation: slideInUp 0.8s ease-out;
}

.staff-intro::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 82, 82, 0.2), transparent 60%);
    opacity: 0.6;
    pointer-events: none;
}

.staff-intro-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.9;
    letter-spacing: 0.6px;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.staff-section {
    background: linear-gradient(135deg, rgba(30, 40, 75, 0.62), rgba(20, 30, 60, 0.45));
    border: 2px solid rgba(229, 57, 53, 0.28);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: slideInUp 0.8s ease-out;
}

.staff-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.18), transparent 65%);
    pointer-events: none;
}

.staff-section-header {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    position: relative;
    z-index: 1;
}

.staff-category {
    align-self: flex-start;
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--bright-red);
    background: rgba(229, 57, 53, 0.12);
    border: 1px solid rgba(229, 57, 53, 0.35);
    padding: 0.45rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.staff-section-title {
    font-size: 2.6rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ffffff;
    font-weight: 800;
    font-family: 'Bebas Neue', cursive;
    margin: 0;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.8rem;
    position: relative;
    z-index: 1;
}

.staff-grid.single {
    max-width: 420px;
    margin: 0 auto;
}

.staff-card {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.82), rgba(20, 30, 60, 0.6));
    border: 2px solid rgba(229, 57, 53, 0.35);
    border-radius: 16px;
    padding: 2.3rem 1.9rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

.staff-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(229, 57, 53, 0.18), transparent 65%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.staff-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border: 1px solid rgba(229, 57, 53, 0.2);
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.staff-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(229, 57, 53, 0.6);
    box-shadow: 0 20px 60px rgba(229, 57, 53, 0.25);
}

.staff-card:hover::before {
    opacity: 1;
}

.staff-card:hover::after {
    opacity: 1;
}

.staff-card.featured {
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.28), rgba(10, 14, 39, 0.85));
    border-color: rgba(229, 57, 53, 0.6);
    box-shadow: 0 22px 60px rgba(229, 57, 53, 0.35);
}

.staff-name {
    font-size: 1.5rem;
    color: #ffffff;
    letter-spacing: 1px;
    font-weight: 800;
    font-family: 'Bebas Neue', cursive;
    margin-bottom: 0.75rem;
}

.staff-role {
    color: var(--text-muted);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    font-weight: 500;
    text-transform: uppercase;
}

.staff-card:nth-child(1) { animation-delay: 0.05s; }
.staff-card:nth-child(2) { animation-delay: 0.1s; }
.staff-card:nth-child(3) { animation-delay: 0.15s; }
.staff-card:nth-child(4) { animation-delay: 0.2s; }

.staff-grid.single .staff-card {
    text-align: center;
}

.staff-grid.single .staff-name {
    font-size: 1.7rem;
}

.staff-grid.single .staff-role {
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .page-hero h1 {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }

    .page-subtitle {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .staff-intro {
        padding: 2.2rem;
    }

    .staff-section {
        padding: 2.2rem;
        gap: 1.8rem;
    }

    .staff-section-title {
        font-size: 2.2rem;
    }

    .staff-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .staff-card {
        padding: 2rem 1.6rem;
    }

    .staff-name {
        font-size: 1.35rem;
    }

    .roster-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1.5rem;
    }

    .champions-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 2rem;
    }

    .champion-card {
        padding: 3rem 2rem;
    }

    .champion-card h2 {
        font-size: 1.9rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 50vh;
        padding: 1.5rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .page-subtitle {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }

    .page-content {
        margin: -2rem auto 0;
        padding: 0 1.5rem 3rem;
    }

    .coming-soon {
        padding: 3rem 1.5rem;
        min-height: 300px;
    }

    .coming-soon-content h2 {
        font-size: 2rem;
    }

    .coming-soon-content p {
        font-size: 1rem;
    }

    .staff-intro {
        padding: 2rem 1.6rem;
    }

    .staff-intro-text {
        font-size: 1rem;
    }

    .staff-section {
        padding: 2rem 1.6rem;
        gap: 1.6rem;
    }

    .staff-section-title {
        font-size: 1.9rem;
        letter-spacing: 2px;
    }

    .staff-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.2rem;
    }

    .staff-grid.single {
        max-width: 360px;
    }

    .staff-card {
        padding: 1.8rem 1.4rem;
    }

    .staff-name {
        font-size: 1.25rem;
    }

    .staff-role {
        font-size: 0.85rem;
    }

    .roster-info {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .roster-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .roster-card {
        padding: 1.8rem 1.5rem;
    }

    .roster-card h3 {
        font-size: 1.1rem;
    }

    .champions-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .champion-card {
        padding: 2.5rem 1.8rem;
    }

    .champion-card h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .champion-status {
        font-size: 1.2rem;
    }

    .contact-card {
        padding: 2.5rem 1.8rem;
        margin-bottom: 2rem;
    }

    .contact-icon {
        font-size: 3.5rem;
        margin-bottom: 1.2rem;
    }

    .contact-card h3 {
        font-size: 1.7rem;
        margin-bottom: 1rem;
    }

    .contact-card p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .contact-button {
        padding: 1rem 2.5rem;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .additional-info {
        padding: 2rem 1.5rem;
    }

    .additional-info h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .info-list li {
        font-size: 0.95rem;
        padding: 0.8rem 0;
        padding-left: 1.3rem;
    }

    .contact-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .contact-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .coming-soon-placeholder {
        padding: 3rem 1.5rem;
    }

    .coming-soon-placeholder h2 {
        font-size: 1.8rem;
    }

    .coming-soon-placeholder p {
        font-size: 0.95rem;
    }

    .staff-intro {
        padding: 1.6rem 1.2rem;
    }

    .staff-intro-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .staff-section {
        padding: 1.6rem 1.2rem;
        gap: 1.4rem;
    }

    .staff-section-title {
        font-size: 1.6rem;
        letter-spacing: 1.5px;
    }

    .staff-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1rem;
    }

    .staff-grid.single {
        max-width: 100%;
    }

    .staff-card {
        padding: 1.6rem 1.1rem;
    }

    .staff-name {
        font-size: 1.1rem;
    }

    .staff-role {
        font-size: 0.8rem;
    }

    .roster-card .record {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        min-height: 45vh;
        padding: 1rem;
    }

    .page-hero h1 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .page-subtitle {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    .page-content {
        margin: -1.5rem auto 0;
        padding: 0 1rem 2rem;
    }

    .coming-soon {
        padding: 2.5rem 1rem;
        min-height: 250px;
    }

    .coming-soon-content h2 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .coming-soon-content p {
        font-size: 0.9rem;
    }

    .roster-info {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .roster-intro {
        font-size: 0.95rem;
    }

    .roster-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.8rem;
    }

    .roster-card {
        padding: 1.5rem 1rem;
    }

    .roster-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

    .champions-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .champion-card {
        padding: 2rem 1.2rem;
    }

    .champion-card h2 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .champion-status {
        font-size: 1rem;
    }

    .contact-title {
        font-size: 1.5rem;
        letter-spacing: 1.5px;
    }

    .contact-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .contact-card {
        padding: 2rem 1.2rem;
        margin-bottom: 1.5rem;
    }

    .contact-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .contact-card h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .contact-card p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.6;
    }

    .contact-button {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .additional-info {
        padding: 1.5rem 1rem;
    }

    .additional-info h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .info-list li {
        font-size: 0.9rem;
        padding: 0.7rem 0;
        padding-left: 1.2rem;
    }

    .info-list li::before {
        font-size: 1rem;
    }

    .coming-soon-placeholder {
        padding: 2.5rem 1rem;
        border-radius: 12px;
    }

    .coming-soon-placeholder h2 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .coming-soon-placeholder p {
        font-size: 0.9rem;
    }

    .roster-card .record {
        font-size: 0.75rem;
        margin-top: 0.3rem;
    }

    .roster-card:hover .record {
        font-size: 0.8rem;
    }
}