.about-container {
    flex: 1;
    padding: 8rem 4rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.page-title {
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-white);
}

.about-hero {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.about-image {
    flex: 0 0 300px;
    perspective: 1000px;
}

.about-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(74, 111, 165, 0.3));
    animation: float 3s ease-in-out infinite;
    border-radius: 20px;
}


.about-content {
    flex: 1;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* Section compétences */
.skills-section {
    text-align: center;
    margin-bottom: 6rem;
}

.skills-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-white);
}

.skills-category {
    margin-bottom: 2.5rem;
}

.skills-category-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.skills-grid {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.skill-card {
    background: rgba(20, 26, 55, 0.6);
    border: 1px solid rgba(184, 193, 219, 0.1);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 90px;
}

.skill-card:hover {
    border-color: rgba(74, 111, 165, 0.4);
    box-shadow: 0 4px 16px rgba(74, 111, 165, 0.2);
}

.skill-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.skill-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
}

/* Section réseaux sociaux */
.social-links {
    text-align: center;
    margin-bottom: 6rem;
}

.social-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-white);
}

.social-grid {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.social-grid li {
    display: contents;
}

.social-card {
    background: rgba(20, 26, 55, 0.6);
    border: 1px solid rgba(184, 193, 219, 0.1);
    border-radius: 12px;
    padding: 0.85rem 1.5rem;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-card:hover {
    box-shadow: 0 4px 16px rgba(74, 111, 165, 0.2);
}

.social-icon {
    width: 28px;
    height: 28px;
}

.social-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
}

/* Couleurs spécifiques aux réseaux sociaux — visibles au hover seulement */
.social-card.youtube:hover   { background: rgba(255, 0, 0, 0.12);      border-color: #FF0000; }
.social-card.github:hover    { background: rgba(36, 41, 47, 0.5);       border-color: rgba(255, 255, 255, 0.4); }
.social-card.instagram:hover { background: linear-gradient(45deg, rgba(131, 58, 180, 0.2), rgba(253, 29, 29, 0.2), rgba(252, 176, 69, 0.2)); border-color: #E1306C; }
.social-card.twitter:hover   { background: rgba(0, 0, 0, 0.45);         border-color: rgba(255, 255, 255, 0.4); }
.social-card.twitch:hover    { background: rgba(145, 70, 255, 0.15);    border-color: #9146FF; }
.social-card.steam:hover     { background: rgba(23, 26, 33, 0.5);       border-color: #66C0F4; }

/* Section artiste */
.artist-section {
    text-align: center;
}

.artist-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-white);
}

.artist-content {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.artist-image {
    flex: 0 0 250px;
    perspective: 1000px;
}

.artist-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(74, 111, 165, 0.3));
    animation: float 3s ease-in-out infinite;
}

.artist-text {
    flex: 1;
}

.artist-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.artist-social {
    margin-top: 2rem;
}

.artist-instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.25rem;
    background: rgba(20, 26, 55, 0.5);
    border: 1px solid rgba(184, 193, 219, 0.14);
    border-radius: 25px;
    text-decoration: none;
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 600;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.artist-instagram-link:hover {
    background: rgba(225, 48, 108, 0.08);
    border-color: rgba(225, 48, 108, 0.45);
    box-shadow: 0 4px 14px rgba(225, 48, 108, 0.12);
}

.artist-instagram-icon {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-container {
        padding: 7rem 2rem 2rem;
    }

    .page-title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .about-hero {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .about-image {
        flex: 0 0 250px;
    }

    .about-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .skills-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }

    .skill-card {
        padding: 1.25rem 0.75rem;
    }

    .social-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .artist-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .artist-content {
        flex-direction: column;
        gap: 2rem;
    }

    .artist-image {
        flex: 0 0 200px;
    }

    .artist-description {
        font-size: 1rem;
    }

}

@media (max-width: 480px) {
    .about-container {
        padding: 6rem 1.5rem 1.5rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .about-title {
        font-size: 1.5rem;
    }

    .about-description {
        font-size: 0.95rem;
    }

    .skills-section {
        margin-bottom: 4rem;
    }

    .skills-title {
        font-size: 1.5rem;
    }

    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 0.75rem;
    }

    .skill-card {
        padding: 1rem 0.5rem;
    }

    .skill-icon {
        width: 40px;
        height: 40px;
    }

    .skill-name {
        font-size: 0.8rem;
    }

    .social-title {
        font-size: 1.5rem;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .artist-title {
        font-size: 1.5rem;
    }

    .artist-image {
        flex: 0 0 180px;
    }

    .artist-description {
        font-size: 0.95rem;
    }

}
