*{
    justify-content: center;
    z-index: 1;
}

body{
    background-color: rgb(255, 255, 255);
}

#banniere{
    width: 100%;
    justify-content: center;
    display: flex;
}

/* Écran de chargement */
#loading-screen {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #1a001f, #3a004f);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Logo animé */
.loading-logo {
    width: 180px;
    border-radius: 50%;
    animation: pulse 2s infinite ease-in-out;
}

.hero {
    min-height: 100vh;
    text-align: center;
    padding-top: 80px;
}

.hero-tagline {
    font-size: 1.3rem;
    opacity: 0.8;
    margin: 20px 0;
    background-image: url(../images/aniteez.jpeg);
    background-repeat: no-repeat;
    background-position: center;
    padding: 30px;
}

.cta {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    border-radius: 30px;
    background: linear-gradient(45deg,#ff3cac,#784ba0);
    color: white;
    text-decoration: none;
    transition: transform 0.3s;
}

.cta:hover {
    transform: scale(1.1);
}


/* Conteneur */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

/* Particule */
.particles span {
    position: absolute;
    bottom: -20px;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #ff8cff, transparent);
    border-radius: 50%;
    animation: floatParticles 6s infinite ease-in-out;
    opacity: 0;
}

/* Positions aléatoires */
.particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.particles span:nth-child(2) { left: 20%; animation-delay: 0.8s; }
.particles span:nth-child(3) { left: 35%; animation-delay: 1.8s; }
.particles span:nth-child(4) { left: 50%; animation-delay: 0.25s; }
.particles span:nth-child(5) { left: 65%; animation-delay: 1.25s; }
.particles span:nth-child(6) { left: 75%; animation-delay: 2.25s; }
.particles span:nth-child(7) { left: 85%; animation-delay: 0.6s; }
.particles span:nth-child(8) { left: 95%; animation-delay: 1.4s; }
.particles span:nth-child(9) { left: 45%; animation-delay: 2.4s; }
.particles span:nth-child(10){ left: 30%; animation-delay: 2.1s; }

/* Animation */
@keyframes floatParticles {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0;
    }
    30% { opacity: 1; }
    100% {
        transform: translateY(-700px) scale(1.2);
        opacity: 0;
    }
}

.tap-to-enter {
    cursor: pointer;
}

@keyframes pulseText {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

/* Texte */

.loading-text {
    font-family: 'DynaPuff', cursive;
    font-size: 1.4rem;
    color: white;
    margin-top: 20px;

    animation: showText 0.8s ease forwards;
    animation-delay: 4s; /* même durée que la barre */
}

@keyframes showText {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}


/* Barre de chargement */
.loading-bar {
    width: 250px;
    height: 6px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    margin-top: 30px;
    overflow: hidden;
}



.loading-bar span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff3cac, #784ba0, #2b86c5);
    animation: load 4s linear forwards;
}

.loading-hidden {
    opacity: 0;
    pointer-events: none;
}

/* Animations */
@keyframes load {
    to { width: 100%; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes glow {
    from { text-shadow: 0 0 5px #ff6ec7; }
    to { text-shadow: 0 0 15px #ff6ec7; }
}

.fade-out {
    animation: fadeOut 1s ease forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
        transform: scale(1.05);
    }
}

#bodygalerie{
    background-color: pink
}

main{
    width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

#maingalerie{
    background-color: white;
}

#bodycontact{
    background-image: url(../images/bgpic.jpeg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: contain;
    background-color: #fffbfc;
}

#bodycredits{
    background-image: url(../images/bgpic.jpeg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: contain;
    background-color: #fffbfc;
}

#bodypartenaires{
    background-image: url(../images/bgpic.jpeg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: contain;
    background-color: #fffbfc;
}

table td{
    border: solid 1px black;
}

h1{
    text-align: center;
    font-size: 100px;
    font-family: "DynaPuff", system-ui;
    color: pink;
    animation: fadeUp 1.5s ease forwards;
    text-shadow:
        0 0 5px #ff6ec7,
        0 0 10px #ff6ec7,
        0 0 20px #ff3cac;
    margin-bottom: 120px
}

.floating-hearts span {
    position: absolute;
    bottom: -50px;
    animation: floatUp 6s infinite;
    font-size: 2rem;
    opacity: 0.7;
}

.floating-hearts span:nth-child(2) { left: 30%; animation-delay: 1s; }
.floating-hearts span:nth-child(3) { left: 60%; animation-delay: 2s; }

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(0.8);
        opacity: 0;
    }
    50% { opacity: 1; }
    100% {
        transform: translateY(-600px) scale(1.2);
        opacity: 0;
    }
}


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

#section img{
    width: 300px;
}

#lemondrop {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    width: 300px;
}

#lemondrop:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 15px 30px rgba(227, 176, 7, 0.4);
}

nav{
    padding: 1rem 5%;
    z-index: 3;
    background: linear-gradient(90deg,rgba(255, 107, 220, 1) 0%, rgba(255, 187, 239, 1) 19%, rgba(255, 187, 239, 1) 55%, rgba(255, 240, 107, 1) 100%);
    box-shadow: 0px 10px 39px 20px #ffd9f1c3;
    border-bottom: 1px solid rgba(255, 192, 203, 0.393);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: middle;
    width: 91%;
    margin-left: -10px;
    margin-top: -10px;
}

.liens_nav{
    list-style: none;
    display: flex;
    gap: 50px;
    color: white;
}

a{
    text-decoration: none;
}

nav a:visited{
    color: white;
}

video{
    width: 100%;
}

p{
  font-family: "DynaPuff", system-ui;
  color: black;
    text-align: center;
}

footer {
    background: radial-gradient(circle,rgba(255, 189, 252, 1) 0%, rgba(255, 181, 188, 1) 100%);
    padding: 40px 20px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.85;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-credits a {
    color: #ff6ec7;
    text-decoration: none;
}

.footer-credits a:hover {
    text-decoration: underline;
}


#present{
    width: 900px;
    position: relative;
    align-items: center;
}

#logo{
    width: 400px;
}

#ddangyo, #tyuyo{
    width: 200px;
}

li{
    border-radius: 30px;
    background: linear-gradient(90deg,rgba(255, 125, 231, 1) 0%, rgb(255, 234, 159) 100%);
    padding: 10px;
    padding-left: 25px;
    padding-right: 25px;
    font-family: "DynaPuff", system-ui;
    
}

#logomenu{
    width: 300px;
}

main{
    background-image: url(images/ddangyo.jpg);
}

#titre{
    display: flex;
    align-items: center;
    margin-top: -85px;
    padding-bottom: 100px
}

#intro{
    background: radial-gradient(circle,rgba(255, 189, 252, 1) 0%, rgba(222, 237, 255, 1) 100%);
    background-size: 180px;
    border-radius: 15px;
    height: 800px;
    max-width: 900px;
    margin: 120px auto;
    padding: 50px;
    backdrop-filter: blur(12px);
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    line-height: 1.8;
}

.contact-intro p{
    max-width: 600px;
    margin: 40px auto;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    color:#ffffff;
    background-color: #75009f6b;
    font-size: 30px;
}

#random-player {
    width: 260px;
    margin: 3rem auto;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ff5fa2, #b84bff);
    border-radius: 20px;
    text-align: center;
    color: white;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#random-player:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.player-visual {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    animation: pulse 2s infinite;
}

#player-text {
    font-family: 'DynaPuff', cursive;
    font-size: 0.9rem;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.playing {
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(255,255,255,0.4); }
    to { box-shadow: 0 0 25px rgba(255,255,255,0.9); }
}

#introtext{
    color: black;
    text-align: center;
    font-size: 20px;
    padding: 30px;
    padding-left: 200px;
    padding-right: 200px;
}

.gifs{
    display: flex;
    justify-content: space-between;
}

#gif1{
    width: 150px;
}

#gif2{
    width: 150px;
}

.dataTables_wrapper {
    font-family: "DynaPuff", system-ui;
}

form{
    max-width: 900px;
    font-family: "DynaPuff", system-ui;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    margin: 80px auto;
    text-align: left;
    padding: 50px;
    background: linear-gradient(207deg,rgba(255, 189, 252, 1) 0%, rgba(255, 181, 188, 1) 100%);
    border-radius: 25px;
    backdrop-filter: blur(12px);
}

#en-tete {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

#en-tete div {
    flex: 1;
}

#nom, #prenom, #email, #message{
    height: 40px;
    width: 100%;
    font-family: "DynaPuff", system-ui;
    box-sizing: border-box;
    border-radius: 5px;
    border-color: purple;
}

#envoi{
    font-family: "DynaPuff", system-ui;
    background: linear-gradient(45deg,#ff3cac,#784ba0);
    border-color: hotpink;
    width: 100%;
    height: 40px;
    border-radius: 30px;
    padding: 15px;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s;
}

#envoi:hover {
    transform: scale(1.05);
}



label{
    display: block;
    text-transform: uppercase;
}

.loadingScreen {
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 100%;
  background-color: #d4c0b5;
  display: flex;
  align-items: center;
  justify-content: center;
}

#prenom, #nom{
    justify-content: space-evenly;
    margin-bottom: 20px;
}


#choixmessage {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0 40px;
}

#choixmessage label {
    background: rgba(255,255,255,0.15);
    padding: 15px 20px;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s;
}

#choixmessage label:hover {
    transform: scale(1.05);
    background: rgba(255,255,255,0.25);
}

input, textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0 25px;
    border-radius: 15px;
    border: none;
    background: rgba(255,255,255,0.6);
    color: rgb(0, 0, 0);
    font-family: inherit;
}

input::placeholder,
textarea::placeholder {
    color: rgba(62, 62, 62, 0.6);
}

input:focus,
textarea:focus {
    outline: none;
    background: rgba(255,255,255,0.3);
}


#form{
    display: block;
    text-align: center;
    padding: 30px
}

#formgalerie{
    display: block;
    text-align: center;
    padding: 30px
}

#prenom{
    margin-right: 100px
}

#nom{
    margin-right: 100px
}

#email{
    margin-bottom: 20px;
}

#message{
    margin-bottom: 20px;
    height: 150px
}

#reussi, #pasbon {
    max-width: 600px;
    margin: 40px auto;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    color:#2b86c5;
}

#reussi {
    background: rgba(0,255,150,0.2);
}

#pasbon {
    background: rgba(255,80,80,0.2);
}

#reussi img,
#pasbon img {
    width: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
}


.floating-albums img {
    position: absolute;
    width: 200px;
    animation: floatAlbum 6s ease-in-out infinite;
}

.floating-albums img:nth-child(1) { top: 20%; left: 15%; }
.floating-albums img:nth-child(2) { top: 40%; right: 15%; animation-delay: 0.2s; }
.floating-albums img:nth-child(3) { bottom: 15%; left: 25%; animation-delay: 0.4s; }

@keyframes floatAlbum {
    0% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
    100% { transform: translateY(0) rotate(-3deg); }
}

.credits-page {
    max-width: 900px;
    margin: 120px auto;
    padding: 40px;
    line-height: 1.8;
}

.credits-intro {
    text-align: center;
    opacity: 0.85;
    margin-bottom: 60px;
}

.credits-section {
    margin-bottom: 60px;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.credits-section h2 {
    margin-bottom: 15px;
    color: #ff6ec7;
}

.credits-section ul {
    list-style: none;
    padding-left: 0;
}

.credits-section li {
    margin-bottom: 10px;
    opacity: 0.9;
}

.credits-end {
    text-align: center;
    margin-top: 80px;
    font-style: italic;
    opacity: 0.7;
}

#montableau_wrapper {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    margin: 2rem auto;
    width: 95%;
}

#montableau thead th {
    background: linear-gradient(135deg, #ff5fa2, #b84bff);
    color: white;
    font-family: 'DynaPuff', system-ui;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem;
    border: none;
}

#montableau tbody tr {
    transition: background 0.25s ease, transform 0.2s ease;
}

#montableau tbody tr:nth-child(even) {
    background-color: #f7f7fb;
}

#montableau tbody tr:hover {
    background-color: #ffe6f2;
    transform: scale(1.01);
}

#montableau td {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    color: #333;
    vertical-align: middle;
}

.dataTables_filter input {
    border-radius: 20px;
    border: 2px solid #ff5fa2;
    padding: 0.4rem 0.8rem;
    outline: none;
    transition: 0.3s;
}

.dataTables_filter input:focus {
    box-shadow: 0 0 10px rgba(255,95,162,0.5);
}

.dataTables_paginate .paginate_button {
    border-radius: 50%;
    padding: 0.4rem 0.7rem;
    margin: 0 4px;
    border: none;
    background: #eee;
    transition: 0.3s;
}

.dataTables_paginate .paginate_button.current {
    background: #ff5fa2 !important;
    color: white !important;
}

.dataTables_paginate .paginate_button:hover {
    background: #b84bff !important;
    color: white !important;
}

#montableau {
    animation: fadeUp 0.8s ease forwards;
}

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

#now-playing {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: 90%;
    max-width: 600px;
    background: rgba(30, 30, 40, 0.95);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    font-family: 'DynaPuff', cursive;
    transition: transform 0.4s ease;
    z-index: 999;
}

#now-playing.visible {
    transform: translateX(-50%) translateY(0);
}

.track-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
}

.track-icon {
    animation: pulse 1.5s infinite;
}

#play-pause {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: white;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

nav ul li.active a {
    color: #ff5fa2;
    font-weight: bold;
}

nav ul li.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: #ff5fa2;
    margin-top: 4px;
    border-radius: 5px;
}

#galerie{
    max-width: 1080px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

#galerie img{
    margin: 7px 0px;
    border-radius: 15px;
    filter: grayscale(1);
    width: 23%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

#galerie img:hover{
    filter: grayscale(0);
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(255, 150, 220, 0.7);
}

#slot-machine {
    margin: 100px auto;
    text-align: center;
    font-family: 'DynaPuff', cursive;
}

#slot-screen {
    width: 340px;
    height: 110px;
    margin: 25px auto;
    background: radial-gradient(circle, #ff8ad8, #6a00ff);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.15em;
    box-shadow: 0 0 30px rgba(255, 120, 220, 0.9);
    overflow: hidden;
}

.spinning {
    animation: shake 0.15s infinite;
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    50% { transform: translateX(2px); }
    75% { transform: translateX(-2px); }
    100% { transform: translateX(0); }
}

.result-glow {
    animation: glow 1.2s ease;
}

@keyframes glow {
    0% { box-shadow: 0 0 10px #fff; }
    50% { box-shadow: 0 0 40px #ff5cf0; }
    100% { box-shadow: 0 0 20px #fff; }
}

#spin-btn, #play-btn {
    margin: 10px;
    padding: 12px 30px;
    font-size: 1em;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    background: #ff5cf0;
    color: white;
    box-shadow: 0 0 15px rgba(255, 92, 240, 0.7);
}

#play-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

#secret-character {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 90px;
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
    transition: opacity 1s ease, transform 0.4s ease;
    z-index: 9999;
}

#secret-character.visible {
    opacity: 1;
    pointer-events: auto;
    animation: float 3s ease-in-out infinite;
}

#secret-character:hover {
    transform: scale(1.1);
}

#secret-character img {
    width: 100%;
    filter: drop-shadow(0 0 15px rgba(255, 120, 220, 0.8));
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

#secret-msg {
    display: block;
    position: absolute;
    bottom: 80%;
    left: 0%;
    transform: translateX(-50%);
    margin-bottom: 10px;
    color: hotpink;
    font-family: 'DynaPuff', system-ui;
    font-size: 0.9em;
    white-space: nowrap;
    opacity: 0;
    animation: pulse 1.5s infinite;
    pointer-events: none;
}

#secret-character.visible #secret-msg {
    opacity: 1;
}

#nombre{
    font-family: 'DynaPuff', system-ui;
}

#music-player {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;

    display: flex;
    gap: 15px;
    align-items: center;

    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 12px 16px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255,255,255,0.15);

    font-family: 'DynaPuff', sans-serif;
}

#album-cover {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
}

#player-info {
    flex: 1;
}

#track-title {
    font-size: 1.1rem;
    font-weight: bold;
}

#track-artist {
    font-size: 0.85rem;
    opacity: 0.7;
}

#progress-container {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.2);
    border-radius: 5px;
    overflow: hidden;
    margin-top: 8px;
}

#progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff6ec7, #ffd86f);
    transition: width 0.1s linear;
}


#pause-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.6rem;
    cursor: pointer;
}

.partners-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 2rem 0;
}

.partner-block {
    position: relative;
    width: 100%;
    max-width: 1080px;
    margin: 2rem auto;
    border: 3px solid #00ffea;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 20px #00ffea;
    height: 400px;
}


.partner-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* remplissage total du bloc */
    background-size: cover;
    background-position: center;
    z-index: 0; /* derrière tout le contenu */
}

.partner-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #00ffea;
    position: relative; /* au-dessus de la bannière */
    top: 20px; /* décalage vertical */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.partner-info {
    background-color: rgba(255,255,255,0.8); /* semi-transparente pour laisser apparaître la bannière */
    padding: 80px ; /* top = hauteur photo + marge */
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: -60px; /* remonte la section pour chevaucher la photo */
    border-radius: 0 0 20px 20px; /* coins bas arrondis */
}

.partner-info h2 {
    font-family: 'DynaPuff', sans-serif;
    margin: 0 0 0.3rem 0;
    font-size: 2rem;
    color: #222;
}

.partner-info h3 {
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    font-weight: 400;
    color: #555;
}

.partner-info p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #333;
}

.partner-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #00ffea;
    color: #000;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: all 0.3s;
}

.partner-link:hover {
    background-color: #00bfbf;
    box-shadow: 0 0 10px #00ffea;
}

#barbie{
    border: 3px solid hotpink;
    box-shadow: 0 0 20px hotpink;
}

#barbie .partner-photo{
    border: 3px solid hotpink;
}

#barbie .partner-link{
    background-color: hotpink;
}

#laylow{
    border: 3px solid limegreen;
    box-shadow: 0 0 20px limegreen;
}

#laylow .partner-photo{
    border: 3px solid limegreen;
}

#laylow .partner-link{
    background-color: limegreen;
}

#sims{
    border: 3px solid lime;
    box-shadow: 0 0 20px lime;
}

#sims .partner-photo{
    border: 3px solid lime;
}

#sims .partner-link{
    background-color: lime;
}

#intropartenaires{
    background-color: rgba(255, 255, 255, 0.606);
    border-radius: 15px;
    font-size: 20px;
    font-family: 'DynaPuff', system-ui;
    padding: 20px;
    text-align: center;
}

h2{
    font-family: 'DynaPuff', cursive;
    text-align: center;
    color: purple
}

.pdf-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin: 20px 0;
  text-decoration: none;
  color: white;
  background: rgba(0,0,0,0.6);
  border-radius: 15px;
  border: 2px solid rgba(0,255,255,0.6);
  box-shadow: 0 0 15px rgba(0,255,255,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.pdf-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(0,255,255,0.8);
}

.pdf-icon {
  font-size: 40px;
}

.pdf-info h3 {
  margin: 0;
}

.pdf-info p {
  margin: 5px 0 0;
  font-size: 0.9em;
  opacity: 0.8;
}

h3{
    color: white;
    font-family: 'DynaPuff', system-ui;
}

.input-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 40px auto;
}

.input-wrapper input {
  width: 100%;
  padding: 15px;
  border-radius: 20px;
  border: none;
  font-size: 1rem;
}

/* personnage */
.input-character {
  position: absolute;
  bottom: 90%;              /* posé SUR la barre */
  left: 70%;
  width: 80px;
  transform: translateY(20%);
  pointer-events: none;
}

#hetmongi{
      bottom: 74%;
    width: 110px;
}

#sandeoki{
      bottom: 80%;  
}

#jjoongrami{
      bottom: 77%;  
    width: 85px;
}