/* --- MOBILE CREATOR CSS (ONLY FOR PHONES) --- */

:root {
    --bg-dark: #0a0b10;
    --cyan-talis: #22d3ee;
    --matrix-green: #00FF41;
}

body {
    background-color: var(--bg-dark);
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

.main-content {
    padding: 4rem 1rem;
}

/* LA CARTE : On réduit tout pour que ça rentre */
.creator-card {
    background: rgba(17, 24, 39, 0.9);
    padding: 1.25rem !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 1rem;
    box-sizing: border-box; /* Crucial pour Decimals */
}

/* LE SECRET : On transforme TOUT en Flex vertical */
.grid-layout, .input-group {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 1rem;
}

input, textarea, .upload-area {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important; /* L'input ne sortira plus jamais */
    font-size: 16px !important; /* Évite le zoom automatique sur iPhone */
}

/* TERMINAL VERSION MOBILE */
.terminal-wrapper { margin-top: 2rem; padding: 0; }
.terminal-content {
    padding: 1rem !important;
    font-size: 0.75rem;
    color: var(--matrix-green);
    height: 150px;
}
.timestamp { display: none; }
