/* =========================================
   FEDERATION PROFILE PAGE SPECIFIC STYLES
   ========================================= */

/* 1. Hero Section & Background Slider */
.profile-hero {
    padding: 220px 0 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease-in-out, transform 10s linear;
}

.hero-slide::after {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,1) 100%);
}

.hero-slide.active { opacity: 1; transform: scale(1); }

.profile-hero .container {
    position: relative;
    z-index: 2;
}

.page-badge {
    display: inline-block; padding: 0.5rem 1.5rem; border-radius: 50px;
    background: rgba(255, 255, 255, 0.9); color: var(--text-main);
    font-family: var(--font-heading); font-weight: 700; letter-spacing: 2px; margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.hero-title {
    font-family: var(--font-display); font-size: 3.5rem; line-height: 1.1; margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-intro {
    max-width: 800px; margin: 0 auto; font-size: 1.2rem; font-weight: 500;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* 2. Content Layout & Info Cards */
.content-section { padding: 80px 0; }

.history-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.info-card {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: 0.4s var(--ease-out-expo);
    box-shadow: var(--glass-shadow);
    width: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: rgba(0, 124, 195, 0.3);
}

.info-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
    background: var(--neon-cyan); opacity: 0.5; transition: 0.3s;
}

.info-card:hover::before { opacity: 1; width: 6px; }

.card-icon { font-size: 2.5rem; margin-bottom: 20px; color: var(--text-main); }
.card-title { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 15px; color: var(--text-main); }
.card-text { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; }

/* 3. Card Variations */
.card-intro { border-left-color: var(--neon-gold); }
.card-intro::before { background: var(--neon-gold); }
.card-intro .card-icon { color: var(--neon-gold); }

.card-ninja { 
    background: #ffffff; 
    border: 1px solid rgba(211, 47, 47, 0.15); 
}
.card-ninja::before { background: var(--neon-red); }
.card-ninja .card-icon { color: var(--neon-red); }
.card-ninja .card-title { color: var(--text-main); }

.card-spirit { border-left-color: var(--neon-cyan); }

.highlight { font-weight: 700; color: var(--text-main); }

/* 4. Responsive Adjustments */
@media (max-width: 992px) {
    .hero-title { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
}