/* ========================================
   RADIO LOTUS - PAGES COMMON CSS
   Styles partagés pour toutes les pages
   ======================================== */

/* ========================================
   PAGE HERO - En-tête de page
   ======================================== */

.page-hero {
    position: relative;
    padding: 8rem 0 4rem;
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 40%, rgba(99, 102, 241, 0.2), transparent 50%),
        radial-gradient(ellipse 50% 40% at 80% 60%, rgba(236, 72, 153, 0.15), transparent 50%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.8), var(--bg-dark, #0f172a));
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f59e0b 0%, #ec4899 50%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 1.25rem;
    color: rgba(248, 250, 252, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.page-hero .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.5);
}

.page-hero .breadcrumb a {
    color: #6366f1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.page-hero .breadcrumb a:hover {
    color: #818cf8;
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
    padding: 5rem 0;
}

.section.bg-dark {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.03), transparent, rgba(236, 72, 153, 0.03));
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.section-subtitle {
    text-align: center;
    color: rgba(248, 250, 252, 0.6);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-label {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #818cf8;
    margin-bottom: 0.5rem;
}

/* ========================================
   CONTENT BLOCKS
   ======================================== */

.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #f8fafc;
}

.content-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(248, 250, 252, 0.75);
    margin-bottom: 1.5rem;
}

.content-block p strong {
    color: #f8fafc;
}

/* ========================================
   CARDS
   ======================================== */

.info-card,
.reason-card,
.value-item,
.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.info-card:hover,
.reason-card:hover,
.feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
}

.info-icon,
.reason-icon,
.genre-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.info-card h3,
.reason-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #f8fafc;
}

.info-card p,
.reason-card p {
    font-size: 0.95rem;
    color: rgba(248, 250, 252, 0.65);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   GRIDS
   ======================================== */

.programs-info-grid,
.reasons-grid,
.values-grid,
.categories-grid,
.genres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ========================================
   VALUE ITEMS (À propos)
   ======================================== */

.value-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.value-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #6366f1;
    opacity: 0.5;
    line-height: 1;
}

.value-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f8fafc;
}

.value-content p {
    font-size: 0.95rem;
    color: rgba(248, 250, 252, 0.65);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   GENRE CARDS (Musique)
   ======================================== */

.genre-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.genre-card:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: #6366f1;
    transform: translateY(-8px);
}

.genre-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f8fafc;
}

.genre-card p {
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.6);
    margin-bottom: 1rem;
}

.genre-artists {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.genre-artists span {
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    font-size: 0.8rem;
    color: rgba(248, 250, 252, 0.7);
}

/* ========================================
   CATEGORY ITEMS (Programmes)
   ======================================== */

.category-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.category-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.category-name {
    font-weight: 600;
    color: #f8fafc;
}

.category-desc {
    font-size: 0.85rem;
    color: rgba(248, 250, 252, 0.5);
    margin-left: auto;
}

/* ========================================
   FORMS
   ======================================== */

.contact-form-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #f8fafc;
}

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

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

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(248, 250, 252, 0.8);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #f8fafc;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(248, 250, 252, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23f8fafc' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
}

.form-group select option {
    background: #1e1b4b;
    color: #f8fafc;
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.form-group.checkbox input {
    width: 18px;
    height: 18px;
    accent-color: #6366f1;
}

.form-group.checkbox label {
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.7);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1, #ec4899);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #f8fafc;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #6366f1;
}

/* ========================================
   ALERTS
   ======================================== */

.alert {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* ========================================
   CONTACT INFO SIDEBAR
   ======================================== */

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

.contact-info .info-card {
    text-align: left;
}

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

.contact-info .info-card p {
    margin: 0;
}

.contact-info .info-card a {
    color: #6366f1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info .info-card a:hover {
    color: #818cf8;
}

.contact-info .info-card small {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.8rem;
    color: rgba(248, 250, 252, 0.5);
}

/* ========================================
   MUSIC INTRO
   ======================================== */

.music-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.music-intro p {
    font-size: 1.15rem;
    color: rgba(248, 250, 252, 0.75);
    line-height: 1.8;
}

/* ========================================
   PLAYLIST SELECTOR
   ======================================== */

.playlist-selector-wrapper {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.playlist-selector-title {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #f8fafc;
}

/* ========================================
   TEAM PAGE
   ======================================== */

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

.team-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.team-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #f8fafc;
}

.team-role {
    font-size: 0.9rem;
    color: #6366f1;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.65);
    line-height: 1.6;
}

/* ========================================
   PARTNERS PAGE
   ======================================== */

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

.partner-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.partner-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.3);
}

.partner-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.partner-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f8fafc;
}

.partner-card p {
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.6);
}

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

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

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

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

@media (max-width: 768px) {
    .page-hero {
        padding: 6rem 0 3rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .value-item {
        flex-direction: column;
        text-align: center;
    }

    .value-number {
        margin-bottom: 0.5rem;
    }

    .category-item {
        flex-wrap: wrap;
    }

    .category-desc {
        width: 100%;
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

/* ========================================
   CHARTER (Charte)
   ======================================== */

.charter-block {
    max-width: 900px;
    margin: 0 auto;
}

.charter-block > h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #f8fafc;
}

.charter-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
}

.charter-content h3 {
    font-size: 1.15rem;
    margin: 2rem 0 1rem;
    color: #818cf8;
}

.charter-content h3:first-child {
    margin-top: 0;
}

.charter-content p {
    color: rgba(248, 250, 252, 0.7);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.charter-content ul {
    list-style: none;
    padding-left: 0;
}

.charter-content li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: rgba(248, 250, 252, 0.7);
}

.charter-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6366f1;
}

/* ========================================
   COUNTRIES GRID (À propos)
   ======================================== */

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

.country-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.country-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
}

.country-flag {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1rem;
}

.country-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #f8fafc;
}

.country-card p {
    color: rgba(248, 250, 252, 0.6);
    font-size: 0.9rem;
}

/* ========================================
   FAQ SECTION
   ======================================== */

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

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.2);
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #818cf8;
}

.faq-item p {
    color: rgba(248, 250, 252, 0.65);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.faq-item a {
    color: #6366f1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.faq-item a:hover {
    color: #818cf8;
}

/* ========================================
   INFO CARD HIGHLIGHT
   ======================================== */

.info-card.highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(236, 72, 153, 0.08));
    border-color: rgba(99, 102, 241, 0.25);
}

/* ========================================
   SOCIAL LINKS
   ======================================== */

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.social-link {
    color: rgba(248, 250, 252, 0.7);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: #f8fafc;
}

/* ========================================
   MUSIC PAGE - Francophonie Grid
   ======================================== */

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

.francophonie-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.francophonie-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
}

.francophonie-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f8fafc;
}

.francophonie-card p {
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.6);
    margin-bottom: 1rem;
}

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

.artist-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.75);
}

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

/* ========================================
   MUSIC PAGE - Music Programs
   ======================================== */

.music-programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.music-program-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.08));
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 20px;
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.music-program-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.4);
}

.music-program-card .program-time {
    background: linear-gradient(135deg, #6366f1, #ec4899);
    display: inline-block;
    padding: 0.25rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.music-program-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f8fafc;
}

.music-program-card p {
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.65);
    margin: 0;
}

/* ========================================
   MUSIC PAGE - Sources
   ======================================== */

.sources-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .sources-content {
        grid-template-columns: 1fr;
    }
}

.sources-text p {
    color: rgba(248, 250, 252, 0.7);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.sources-text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.sources-text li {
    padding: 0.5rem 0;
    color: rgba(248, 250, 252, 0.7);
    position: relative;
    padding-left: 1.5rem;
}

.sources-text li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6366f1;
}

.sources-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.6);
}

/* ========================================
   REQUEST CARD (CTA)
   ======================================== */

.request-card {
    background: linear-gradient(135deg, #6366f1, #ec4899);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
}

.request-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.request-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

.request-card .btn-primary {
    background: white;
    color: #6366f1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.request-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ========================================
   GENRE CARD ENHANCED
   ======================================== */

.genre-card {
    position: relative;
    overflow: hidden;
}

.genre-card::before {
    content: '▶ Écouter';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    color: white;
    padding: 0.25rem 0.85rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.genre-card:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.genre-card:active {
    transform: scale(0.98);
}

/* ========================================
   TEAM PAGE
   ======================================== */

.team-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.team-intro p {
    font-size: 1.15rem;
    color: rgba(248, 250, 252, 0.7);
    line-height: 1.8;
}

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

.team-grid.direction {
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.75rem;
    display: flex;
    gap: 1.25rem;
    transition: all 0.3s ease;
}

.team-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
}

.team-card.featured {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.08));
    border-color: rgba(99, 102, 241, 0.25);
}

.team-avatar {
    font-size: 2.5rem;
    min-width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.team-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #f8fafc;
}

.team-role {
    font-size: 0.85rem;
    color: #818cf8;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}

.team-info p {
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.65);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.team-schedule {
    font-size: 0.8rem;
    background: rgba(99, 102, 241, 0.15);
    padding: 0.25rem 0.85rem;
    border-radius: 999px;
    display: inline-block;
    color: #818cf8;
}

/* JOIN CARD */
.join-card {
    background: linear-gradient(135deg, #6366f1, #ec4899);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
}

.join-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.join-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    color: white;
}

.join-roles {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.role-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    color: white;
}

.join-card .btn-primary {
    background: white;
    color: #6366f1;
}

/* ========================================
   PARTNERS PAGE
   ======================================== */

.partner-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.partner-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.partner-intro p {
    font-size: 1.1rem;
    color: rgba(248, 250, 252, 0.7);
    line-height: 1.8;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f8fafc;
}

.benefit-card p {
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.6);
    margin: 0;
}

/* Partnership Grid */
.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.partnership-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.partnership-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
}

.partnership-card.featured {
    border-color: #6366f1;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.2);
}

.partnership-header {
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.partnership-header.bronze {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.2), rgba(205, 127, 50, 0.08));
}

.partnership-header.silver {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.15));
}

.partnership-header.gold {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.08));
}

.popular-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    font-size: 0.7rem;
    padding: 0.25rem 0.85rem;
    border-radius: 999px;
    font-weight: 600;
    color: white;
}

.partnership-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f8fafc;
}

.partnership-price {
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.6);
}

.partnership-features {
    list-style: none;
    padding: 1.5rem;
    margin: 0;
}

.partnership-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.75);
}

.partnership-features li:last-child {
    border-bottom: none;
}

.partnership-card .btn {
    display: block;
    margin: 1rem 1.5rem 1.5rem;
    text-align: center;
}

/* Partners Logos */
.partners-category {
    margin-bottom: 3rem;
}

.partners-category h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #f8fafc;
}

.partners-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.partner-logo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    text-align: center;
    min-width: 150px;
    transition: all 0.3s ease;
}

.partner-logo-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
}

.logo-placeholder {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.partner-logo-card span {
    display: block;
    font-weight: 500;
    color: #f8fafc;
}

.partner-logo-card small {
    display: block;
    font-size: 0.75rem;
    color: rgba(248, 250, 252, 0.5);
    margin-top: 0.25rem;
}

/* FTCC Block */
.ftcc-block {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem;
}

@media (max-width: 768px) {
    .ftcc-block {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.ftcc-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.ftcc-content p {
    color: rgba(248, 250, 252, 0.7);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.ftcc-logo {
    font-size: 6rem;
    opacity: 0.5;
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, #6366f1, #ec4899);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
}

.cta-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

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

.cta-card .btn-primary {
    background: white;
    color: #6366f1;
}

.cta-card .btn-secondary {
    border-color: white;
    color: white;
}

/* ========================================
   CHARTER PAGE
   ======================================== */

.charter-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.charter-intro p {
    font-size: 1.15rem;
    color: rgba(248, 250, 252, 0.7);
    line-height: 1.8;
}

.charter-content {
    max-width: 900px;
    margin: 0 auto;
}

.charter-block {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.charter-block:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateX(8px);
}

@media (max-width: 600px) {
    .charter-block {
        flex-direction: column;
        gap: 1rem;
    }
}

.charter-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 60px;
    text-align: center;
}

.charter-text h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #f8fafc;
}

.charter-text p {
    color: rgba(248, 250, 252, 0.7);
    line-height: 1.8;
    margin: 0;
}

.charter-conclusion {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(236, 72, 153, 0.06));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 3rem;
}

.charter-conclusion p {
    font-size: 1.1rem;
    color: rgba(248, 250, 252, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.charter-conclusion .signature {
    margin-bottom: 0;
    color: #f8fafc;
}

.charter-conclusion .signature small {
    color: rgba(248, 250, 252, 0.4);
}

/* ========================================
   LEGAL PAGE
   ======================================== */

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.legal-block:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.2);
}

.legal-block h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #818cf8;
}

.legal-block p {
    color: rgba(248, 250, 252, 0.7);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-block p:last-child {
    margin-bottom: 0;
}

.legal-block ul {
    color: rgba(248, 250, 252, 0.7);
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-block li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-block a {
    color: #6366f1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-block a:hover {
    color: #818cf8;
}

.legal-footer {
    text-align: center;
    padding: 2rem 0;
    color: rgba(248, 250, 252, 0.5);
    font-size: 0.9rem;
}
