/* --- THEME POP & ENFANT - CATEGORY IKIDS --- */
/* Intro Banner */
.ikids-banner-container {
    position: relative;
    border-radius: 0 0 40px 40px; /* Arrondi en bas */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}
.ikids-banner-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 40px 20px;
    color: white;
}

/* Sections Colorées (Pop Cards) */
.pop-section-card {
    border-radius: 30px;
    padding: 3rem;
    color: white;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease;
}
.pop-section-card:hover { transform: translateY(-5px); }

/* Variantes de couleurs (Dégradés) */
.bg-pop-orange { background: linear-gradient(135deg, #f6d365 0%, #fda085 100%); }
.bg-pop-blue   { background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%); }
.bg-pop-green  { background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%); }
.bg-pop-purple { background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%); }
.bg-pop-white  { background: white; color: #2c3e50; border: 1px solid rgba(0,0,0,0.05); }

/* Typographie spécifique */
.pop-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.pop-subtitle {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}
.pop-text {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
}

/* Images & Vidéos dans les cadres */
.media-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    background: white;
    padding: 10px; /* Bordure blanche style polaroid */
}
.media-frame img, .media-frame video {
    border-radius: 15px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Effet TV Retro (Section 1) */
.tv-retro-wrapper {
    background: url('https://infinitewatch.com/img/cms/9151.png') no-repeat center center;
    background-size: contain;
    width: 320px;
    height: 320px;
    position: relative;
    margin: 0 auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2));
}
.tv-video-content {
    width: 130px;
    position: absolute;
    top: 52%; left: 50%;
    transform: translate(-50%, -60%);
    border-radius: 10px;
}

/* Texte Arc-en-ciel pour la gravure */
.text-rainbow {
    background: linear-gradient(90deg, #ff0000, #ffa500, #ffff00, #008000, #0000ff, #4b0082, #ee82ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Mobile */
@media (max-width: 991px) {
    .pop-section-card { padding: 2rem; margin-bottom: 1rem; }
    .tv-retro-wrapper { width: 280px; height: 280px; }
    .tv-video-content { width: 115px; }
    .ikids-banner-container { border-radius: 0; }
}