@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Exo+2:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: radial-gradient(ellipse at center, #0a0a0a 0%, #000000 100%);
    color: #ffffff;
    font-family: 'Exo 2', sans-serif;
    overflow: hidden;
    height: 100vh;
}

canvas {
    display: block;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: radial-gradient(circle at center, #0a0a0a 0%, #000000 100%);
}

/* Conteneur horizontal pour tous les boutons */
.top-controls {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 1004;
}

/* Contrôle audio - maintenant dans top-controls */

/* Bouton TURN COLOR en évidence */
.turn-color-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1002;
}

/* Bouton Toggle UI - maintenant dans top-controls */

.turn-color-btn {
    background: linear-gradient(45deg, #f3ba2f, #ffffff);
    color: #0B0E11;
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(243, 186, 47, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.turn-color-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 186, 47, 0.6);
    background: linear-gradient(45deg, #ffd700, #ffffff);
}

.turn-color-icon {
    font-size: 16px;
}

.turn-color-label {
    font-family: 'Orbitron', monospace;
}

.toggle-ui-btn {
    background: linear-gradient(45deg, #1e2329, #1e2329);
    color: #fcd535;
    border: 2px solid rgba(252, 213, 53, 0.3);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(252, 213, 53, 0.2);
    font-family: 'Orbitron', monospace;
}

.toggle-ui-btn:hover {
    background: linear-gradient(45deg, #fcd535, #fcd535);
    color: #1e2329;
    border-color: rgba(252, 213, 53, 0.6);
    box-shadow: 0 0 20px rgba(252, 213, 53, 0.4);
    transform: translateY(-2px);
}

.toggle-ui-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Styles pour le bouton stream */
.stream-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #1e2329;
    border: 2px solid rgba(252, 213, 53, 0.3);
    border-radius: 12px;
    color: #fcd535;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stream-btn:hover {
    border-color: rgba(252, 213, 53, 0.6);
    box-shadow: 0 0 15px rgba(252, 213, 53, 0.3);
    transform: translateY(-2px);
}

.stream-icon {
    font-size: 14px;
}

.stream-label {
    font-size: 9px;
}

/* Classes pour masquer/afficher l'UI */
.ui-hidden .controls,
.ui-hidden .info,
.ui-hidden .turn-color-container {
    display: none !important;
}

.ui-hidden .top-controls {
    display: flex !important;
}

/* Mode stream */
.stream-mode {
    zoom: 2;
}

.stream-mode .controls,
.stream-mode .info,
.stream-mode .turn-color-container {
    display: none !important;
}

.stream-mode .top-controls {
    display: flex !important;
}

.stream-mode .audio-btn,
.stream-mode .toggle-ui-btn {
    display: none !important;
}

.stream-mode .stream-btn {
    display: flex !important;
}

/* Styles pour les effets de force */
.force-effect-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.effect-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.effect-group label {
    color: #fcd535;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.color-selector {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(252, 213, 53, 0.3);
    border-radius: 6px;
    color: #fcd535;
    padding: 6px 10px;
    font-size: 11px;
    font-family: 'Orbitron', monospace;
    cursor: pointer;
}

.color-selector:focus {
    outline: none;
    border-color: rgba(252, 213, 53, 0.6);
    box-shadow: 0 0 10px rgba(252, 213, 53, 0.3);
}

.effect-buttons {
    display: flex;
    gap: 10px;
}

.effect-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 8px;
    border: 2px solid rgba(252, 213, 53, 0.3);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    color: #fcd535;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.effect-btn:hover {
    border-color: rgba(252, 213, 53, 0.6);
    box-shadow: 0 0 15px rgba(252, 213, 53, 0.3);
    transform: translateY(-2px);
}

.attraction-btn:hover {
    background: rgba(0, 255, 0, 0.1);
    border-color: rgba(0, 255, 0, 0.5);
}

.repulsion-btn:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.5);
}

.effect-icon {
    font-size: 16px;
}

.effect-label {
    font-size: 9px;
}

/* Styles pour les contrôles de force */
.force-controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 10px 0;
}

.force-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.force-group label {
    color: #fcd535;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.force-slider {
    flex: 1;
    height: 6px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.force-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: linear-gradient(45deg, #fcd535, #fcd535);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(252, 213, 53, 0.5);
    transition: all 0.3s ease;
}

.force-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(252, 213, 53, 0.8);
}

.force-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: linear-gradient(45deg, #fcd535, #fcd535);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 8px rgba(252, 213, 53, 0.5);
    transition: all 0.3s ease;
}

.force-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(252, 213, 53, 0.8);
}

.force-value {
    color: #fcd535;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Orbitron', monospace;
    min-width: 50px;
    text-align: right;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(252, 213, 53, 0.3);
}

.audio-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.95) 0%, rgba(0, 10, 20, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(252, 213, 53, 0.3);
    border-radius: 12px;
    color: #fcd535;
    cursor: pointer;
    font-family: 'Orbitron', monospace;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 20px rgba(252, 213, 53, 0.2),
        inset 0 0 20px rgba(252, 213, 53, 0.1);
}

.audio-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 5px 25px rgba(252, 213, 53, 0.4),
        inset 0 0 25px rgba(252, 213, 53, 0.2);
    border-color: rgba(252, 213, 53, 0.6);
}

.audio-btn.playing {
    background: linear-gradient(135deg, rgba(252, 213, 53, 0.2) 0%, rgba(0, 20, 40, 0.95) 100%);
    border-color: rgba(252, 213, 53, 0.5);
    color: #fcd535;
}

.audio-btn.playing:hover {
    box-shadow: 
        0 5px 25px rgba(252, 213, 53, 0.4),
        inset 0 0 25px rgba(252, 213, 53, 0.2);
}

.audio-icon {
    font-size: 14px;
    transition: all 0.3s ease;
}

.audio-btn.playing .audio-icon {
    color: #fcd535;
}

.audio-label {
    font-size: 10px;
    opacity: 0.9;
}

.controls {
    position: fixed;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, rgba(30, 35, 41, 0.95) 0%, rgba(30, 35, 41, 0.95) 100%);
    backdrop-filter: blur(20px);
    padding: 15px;
    border-radius: 15px;
    border: 2px solid rgba(252, 213, 53, 0.3);
    box-shadow: 
        0 0 30px rgba(252, 213, 53, 0.2),
        inset 0 0 30px rgba(252, 213, 53, 0.1);
    z-index: 1000;
    width: 380px;
    min-width: 300px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    font-family: 'Orbitron', monospace;
    box-sizing: border-box;
}

.controls h2 {
    color: #fcd535;
    text-align: center;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(252, 213, 53, 0.5);
    letter-spacing: 1px;
}

.control-section {
    margin-bottom: 12px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(252, 213, 53, 0.2);
}

.control-section h3 {
    color: #fcd535;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.particle-control {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    padding: 6px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.force-control {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    padding: 4px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    border: 1px solid rgba(252, 213, 53, 0.2);
}

.force-label {
    flex: 1;
    font-size: 10px;
    color: #aaaaaa;
    font-weight: 400;
    min-width: 80px;
}

.force-slider {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, #ff6b6b 0%, #333 50%, #fcd535 100%);
    outline: none;
    margin: 0 8px;
    -webkit-appearance: none;
    cursor: pointer;
}

.force-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(45deg, #fcd535, #fcd535);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(252, 213, 53, 0.6);
    transition: all 0.3s ease;
}

.force-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(252, 213, 53, 0.8);
}

.force-value {
    width: 40px;
    text-align: center;
    font-size: 10px;
    color: #fcd535;
    background: rgba(252, 213, 53, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
    border: 1px solid rgba(252, 213, 53, 0.3);
    font-family: 'Orbitron', monospace;
}

.particle-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    display: block;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.particle-label {
    flex: 1;
    font-size: 12px;
    color: #cccccc;
    font-weight: 400;
}

.slider-container {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.slider {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, #333 0%, #666 100%);
    outline: none;
    margin: 0 10px;
    -webkit-appearance: none;
    cursor: pointer;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(45deg, #fcd535, #fcd535);
    cursor: pointer;
    box-shadow: 0 0 15px rgba(252, 213, 53, 0.6);
    transition: all 0.3s ease;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(252, 213, 53, 0.8);
}

.slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(45deg, #fcd535, #fcd535);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 15px rgba(252, 213, 53, 0.6);
}

.value-display {
    width: 50px;
    text-align: center;
    font-size: 12px;
    color: #fcd535;
    background: rgba(252, 213, 53, 0.1);
    padding: 4px 8px;
    border-radius: 5px;
    border: 1px solid rgba(252, 213, 53, 0.3);
    font-family: 'Orbitron', monospace;
}

.button-group {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

button {
    flex: 1;
    padding: 8px 12px;
    min-width: 120px;
    background: linear-gradient(45deg, #fcd535, #fcd535);
    border: none;
    color: #000;
    cursor: pointer;
    font-size: 10px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(252, 213, 53, 0.4);
    background: linear-gradient(45deg, #fcd535, #fcd535);
}

.reset-btn {
    background: linear-gradient(45deg, #fcd535, #fcd535);
    color: #1e2329;
    font-weight: 600;
}

.reset-btn:hover {
    background: linear-gradient(45deg, #fcd535, #fcd535);
    box-shadow: 0 5px 20px rgba(252, 213, 53, 0.4);
    transform: translateY(-2px);
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    border: 1px solid rgba(252, 213, 53, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-value {
    color: #fcd535;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
}

.stat-label {
    color: #888;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, rgba(30, 35, 41, 0.95) 0%, rgba(30, 35, 41, 0.95) 100%);
    backdrop-filter: blur(20px);
    padding: 25px;
    border-radius: 20px;
    border: 2px solid rgba(252, 213, 53, 0.3);
    box-shadow: 
        0 0 30px rgba(252, 213, 53, 0.2),
        inset 0 0 30px rgba(252, 213, 53, 0.1);
    z-index: 1003;
    width: 400px;
    min-width: 300px;
    max-width: 90vw;
    font-size: 13px;
    box-sizing: border-box;
}

.info h3 {
    color: #fcd535;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(252, 213, 53, 0.5);
    letter-spacing: 2px;
    font-family: 'Orbitron', monospace;
}

.info p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.info ul {
    color: #aaaaaa;
    margin-left: 20px;
    margin-bottom: 15px;
}

.info li {
    margin-bottom: 5px;
}

.info strong {
    color: #fcd535;
}

.matrix-container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid rgba(252, 213, 53, 0.2);
    margin-top: 15px;
}

.matrix-title {
    color: #fcd535;
    text-align: center;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.matrix-direction {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 10px;
}

.direction-text {
    color: #fcd535;
    font-weight: 500;
    text-shadow: 0 0 5px rgba(252, 213, 53, 0.3);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Orbitron', monospace;
    font-size: 10px;
}

th, td {
    border: 1px solid rgba(252, 213, 53, 0.3);
    padding: 4px;
    text-align: center;
}

th {
    background: rgba(252, 213, 53, 0.1);
    color: #fcd535;
    font-weight: 600;
}

td {
    color: #ffffff;
}

.positive {
    color: #fcd535;
}

.negative {
    color: #ff6b6b;
}

.neutral {
    color: #ffffff;
}

/* Animations */
@keyframes pulse {
    0% { box-shadow: 0 0 20px rgba(252, 213, 53, 0.3); }
    50% { box-shadow: 0 0 30px rgba(252, 213, 53, 0.6); }
    100% { box-shadow: 0 0 20px rgba(252, 213, 53, 0.3); }
}

.controls, .info {
    animation: pulse 3s ease-in-out infinite;
}

/* Effet de particules en arrière-plan */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20px 30px, rgba(252, 213, 53, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(252, 213, 53, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(252, 213, 53, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(252, 213, 53, 0.3), transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
    animation: twinkle 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Styles pour la modal d'information - Thème du site */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
}

.modal-content {
    background: linear-gradient(135deg, #1e2329 0%, #1e2329 50%, #1e2329 100%);
    margin: 2% auto;
    padding: 0;
    border: 2px solid rgba(252, 213, 53, 0.3);
    border-radius: 8px;
    width: 80%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 
        0 0 50px rgba(252, 213, 53, 0.2),
        inset 0 1px 0 rgba(252, 213, 53, 0.1);
    animation: modalSlideIn 0.3s ease-out;
    position: relative;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(252, 213, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(252, 213, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(252, 213, 53, 0.04) 0%, transparent 50%);
    border-radius: 8px;
    pointer-events: none;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: linear-gradient(135deg, #1e2329 0%, #1e2329 100%);
    color: #fff;
    padding: 20px;
    border-radius: 7px 7px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(252, 213, 53, 0.3);
    position: relative;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #fcd535, #fcd535, #fcd535, #fcd535);
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fcd535;
    text-shadow: 0 0 10px rgba(252, 213, 53, 0.3);
}

.close {
    color: #fcd535;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close:hover {
    color: #fcd535;
    background: rgba(252, 213, 53, 0.1);
    text-shadow: 0 0 10px rgba(252, 213, 53, 0.5);
}

.modal-body {
    padding: 30px;
    color: #ccc;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.modal-body h3 {
    color: #fcd535;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(252, 213, 53, 0.3);
    padding-bottom: 8px;
    position: relative;
}

.modal-body h3::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #fcd535, transparent);
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    margin-bottom: 15px;
    font-size: 14px;
    color: #bbb;
}

.modal-body ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.modal-body li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #ccc;
    position: relative;
}

.modal-body li::marker {
    color: #fcd535;
}

.modal-body strong {
    color: #fcd535;
    text-shadow: 0 0 5px rgba(252, 213, 53, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .controls {
        width: 90vw;
        min-width: 280px;
        left: 5vw;
        top: 10px;
    }
    
    .info {
        width: 90vw;
        min-width: 280px;
        right: 5vw;
        bottom: 10px;
    }
    
    .turn-color-container {
        top: 10px;
    }
    
    .turn-color-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .controls {
        width: 95vw;
        left: 2.5vw;
        padding: 10px;
    }
    
    .info {
        width: 95vw;
        right: 2.5vw;
        padding: 15px;
    }
    
    .turn-color-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
}

