body {
    background-color: #1a1a1a;
    color: white;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
}

.quote-bubble {
    background-color: #333333;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.quote-bubble:hover {
    transform: scale(1.02);
}

.quote-bubble p {
    margin: 0;
    font-size: 1.2em;
    line-height: 1.4;
    text-align: center;
}

/* Nouveaux styles pour la bulle de contact */
.contact-bubble {
    text-align: center;
    background-color: #404040;
    border: 2px solid #505050;
}

.contact-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background-color: #666666;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #777777;
}

/* Styles pour le soundboard */
.navigation {
    margin-bottom: 20px;
}

.nav-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #505050;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.nav-button:hover {
    background-color: #606060;
}

.soundboard-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: white;
}

.soundboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.sound-button {
    background-color: #333333;
    border: none;
    border-radius: 15px;
    padding: 30px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.sound-button:hover {
    background-color: #404040;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.sound-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sound-emoji {
    font-size: 2.5em;
    line-height: 1;
}

.sound-name {
    font-size: 0.9em;
    text-align: center;
    font-weight: normal;
}

.info-bubble {
    background-color: #333333;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    opacity: 0.8;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .soundboard-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .sound-button {
        padding: 25px 15px;
    }
    
    .sound-emoji {
        font-size: 2em;
    }
    
    .soundboard-title {
        font-size: 2em;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .soundboard-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .sound-button {
        padding: 20px 10px;
    }
    
    .sound-emoji {
        font-size: 1.8em;
    }
    
    .sound-name {
        font-size: 0.8em;
    }
}