/* =================================
   FishOp Mobile - Styles principaux
   ================================= */

/* Reset et base */
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #ffffff;
    min-height: 100vh;
}

#app {
    width: 100%;
    min-height: 100vh;
}

textarea {
    font-family: inherit;
}

/* =================================
   Animations
   ================================= */

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* =================================
   Backgrounds
   ================================= */

.gradient-bg {
    background: linear-gradient(180deg, #0d9488 0%, #0f766e 100%);
}

.camera-view {
    background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
}

/* =================================
   Boutons
   ================================= */

.btn-primary {
    background: white;
    color: #0f766e;
    font-weight: bold;
    padding: 16px;
    border-radius: 9999px;
    width: 100%;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #f0fdfa;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.btn-danger {
    background: #ef4444;
    color: white;
    font-weight: bold;
    padding: 16px;
    border-radius: 9999px;
    width: 100%;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
    background: #dc2626;
}

.btn-secondary {
    background: #e5e7eb;
    color: #374151;
    font-weight: bold;
    padding: 16px;
    border-radius: 9999px;
    width: 100%;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #d1d5db;
}

/* =================================
   Composants
   ================================= */

.feedback-emoji {
    font-size: 32px;
    margin-bottom: 8px;
}