/* Reset e base styles */
* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
}

/* Container principale centrato */
.main-container {
    margin: 0 auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/* ===== BARRA DI COMPLETAMENTO ===== */
.progress-bar-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.progress-header {
    display: none !important;
}

.progress-title {
    margin: 0;
    font-weight: 600;
    color: #495057;
    font-size: 1rem;
}

.progress-percentage {
    font-weight: 700;
    color: #667eea;
    font-size: 1.1rem;
}

.progress-wrapper {
    margin-bottom: 0;
}

.progress {
    height: 8px;
    border-radius: 10px;
    background: rgba(102, 126, 234, 0.1);
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    transition: width 0.6s ease-in-out, background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.progress-bar.insufficient {
    background: linear-gradient(90deg, #e74c3c 0%, #c0392b 100%);
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Steps del progresso rimossi - solo barra pulita */

/* Chat wrapper e content */
.chat-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 0;
}

/* Nascondi il container della chat */
.chat-content {
    display: none !important;
}

/* ===== BOX PERSONAGGI CON SPRITE 8-BIT ===== */
.characters-container {
    flex: 1;
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #2c3e50;
    background-image: 
        radial-gradient(circle at 25% 25%, #34495e 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, #34495e 2px, transparent 2px);
    background-size: 20px 20px;
}

.character-box {
    flex: 1;
    background: #ecf0f1;
    border: 4px solid #34495e;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    min-height: 350px;
    position: relative;
}

.character-box.active {
    background: #fff;
    border-color: #3498db;
    box-shadow: 0 0 20px rgba(52, 152, 219, 0.5);
    transform: scale(1.02);
}

.character-header {
    padding: 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.character-sprite-container {
    position: relative;
    margin-bottom: 15px;
}

/* ===== SPRITE 8-BIT BASE ===== */
.character-sprite {
    width: 80px;
    height: 100px;
    position: relative;
    margin: 0 auto;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* Elementi comuni sprite */
.sprite-face {
    width: 32px;
    height: 32px;
    background: #fdbcb4;
    position: absolute;
    left: 24px;
    top: 20px;
    border: 2px solid #2c3e50;
}

.sprite-eyes {
    position: absolute;
    top: 8px;
    left: 4px;
    right: 4px;
}

.sprite-eye {
    width: 4px;
    height: 4px;
    background: #2c3e50;
    position: absolute;
    top: 0;
}

.sprite-eye.left { left: 4px; }
.sprite-eye.right { right: 4px; }

.sprite-nose {
    width: 2px;
    height: 2px;
    background: #e74c3c;
    position: absolute;
    left: 15px;
    top: 16px;
}

.sprite-mouth {
    width: 8px;
    height: 2px;
    background: #2c3e50;
    position: absolute;
    left: 12px;
    top: 22px;
    border-radius: 0 0 4px 4px;
}

.sprite-body {
    width: 40px;
    height: 40px;
    background: #3498db;
    position: absolute;
    left: 20px;
    top: 60px;
    border: 2px solid #2c3e50;
}

/* ===== WIZARD SPRITE ===== */
.wizard-sprite .sprite-hat {
    width: 36px;
    height: 24px;
    background: #9b59b6;
    position: absolute;
    left: 22px;
    top: 0;
    border: 2px solid #2c3e50;
}

.wizard-sprite .sprite-hat::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #f1c40f;
    position: absolute;
    top: 8px;
    left: 14px;
    border: 1px solid #2c3e50;
}

.wizard-sprite .sprite-beard {
    width: 20px;
    height: 16px;
    background: #95a5a6;
    position: absolute;
    left: 30px;
    top: 44px;
    border: 2px solid #2c3e50;
}

.wizard-sprite .sprite-body {
    background: #9b59b6;
}

/* ===== POLITE SPRITE ===== */
.polite-sprite .sprite-hair {
    width: 32px;
    height: 12px;
    background: #8b4513;
    position: absolute;
    left: 24px;
    top: 8px;
    border: 2px solid #2c3e50;
}

.polite-sprite .sprite-tie {
    width: 8px;
    height: 20px;
    background: #e74c3c;
    position: absolute;
    left: 36px;
    top: 52px;
    border: 2px solid #2c3e50;
}

.polite-sprite .sprite-body {
    background: #2c3e50;
}

/* ===== RANT SPRITE ===== */
.rant-sprite .sprite-messy-hair {
    width: 36px;
    height: 16px;
    background: #8b4513;
    position: absolute;
    left: 22px;
    top: 4px;
    border: 2px solid #2c3e50;
}

.rant-sprite .sprite-messy-hair::after {
    content: '';
    width: 4px;
    height: 8px;
    background: #8b4513;
    position: absolute;
    top: -4px;
    left: 8px;
    border: 1px solid #2c3e50;
}

.rant-sprite .sprite-eyebrows {
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
}

.rant-sprite .sprite-eyebrow {
    width: 8px;
    height: 2px;
    background: #2c3e50;
    position: absolute;
}

.rant-sprite .sprite-eyebrow.left.angry {
    left: 2px;
    transform: rotate(15deg);
}

.rant-sprite .sprite-eyebrow.right.angry {
    right: 2px;
    transform: rotate(-15deg);
}

.rant-sprite .sprite-eye.angry {
    background: #e74c3c;
}

.rant-sprite .sprite-mouth.angry {
    width: 12px;
    background: #e74c3c;
    border-radius: 4px 4px 0 0;
}

.rant-sprite .sprite-body {
    background: #e67e22;
}

/* ===== FUMETTI 8-BIT ===== */
.speech-bubble {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 3px solid #2c3e50;
    border-radius: 8px;
    padding: 10px 15px;
    min-width: 150px;
    max-width: 300px;
    width: max-content;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    overflow: visible;
}

/* Fumetto con angolo al centro (default) */
.speech-bubble.bubble-center::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.speech-bubble.bubble-center::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 11px solid #2c3e50;
    z-index: -1;
}

/* Fumetto con angolo a sinistra */
.speech-bubble.bubble-left::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 20%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.speech-bubble.bubble-left::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 20%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 11px solid #2c3e50;
    z-index: -1;
}

/* Fumetto con angolo a destra */
.speech-bubble.bubble-right::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 80%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.speech-bubble.bubble-right::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 80%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 11px solid #2c3e50;
    z-index: -1;
}

.character-box.active .speech-bubble {
    opacity: 1;
    visibility: visible;
    animation: bubbleAppear 0.3s ease-out;
}

@keyframes bubbleAppear {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

.bubble-text {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    font-weight: bold;
    color: #2c3e50;
    line-height: 1.4;
    text-align: center;
    word-wrap: break-word;
    white-space: normal;
    max-width: 280px;
}

.character-name {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 14px;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.character-box.active .character-name {
    color: #3498db;
    text-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}

/* .chat-content nascosto sopra */

.chat-container {
    background: #f8f9fa;
    position: relative;
    flex: 1;
    overflow-y: auto;
}

/* Message styles */
.message-wrapper {
    max-width: 100%;
    margin-bottom: 1.5rem;
}

.message-content {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

/* User messages (right side) */
.user-message .message-content {
    justify-content: flex-end;
}

.user-message .message-bubble {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 18px 18px 4px 18px;
    box-shadow: 0 2px 12px rgba(0, 123, 255, 0.3);
    max-width: 70%;
    order: 1;
}

.user-message .message-avatar {
    background: linear-gradient(135deg, #007bff, #0056b3);
    order: 2;
}

/* AI messages (left side) */
.ai-message .message-content {
    justify-content: flex-start;
}

.ai-message .message-bubble {
    background: white;
    color: #333;
    border-radius: 18px 18px 18px 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    max-width: 70%;
    order: 2;
}

.ai-message .message-avatar {
    background: linear-gradient(135deg, #28a745, #20c997);
    order: 1;
}

/* Message bubble */
.message-bubble {
    padding: 12px 16px;
    position: relative;
    animation: messageSlideIn 0.3s ease-out;
}

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

.message-text {
    line-height: 1.5;
    word-wrap: break-word;
    margin-bottom: 4px;
}

.message-time {
    font-size: 0.75rem;
    opacity: 0.7;
    text-align: right;
}

.ai-message .message-time {
    text-align: left;
}

/* Avatar styles */
.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.message-avatar svg {
    width: 100%;
    height: 100%;
}

.user-avatar {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

/* Empty states - mantengono lo spazio ma sono vuoti */
.empty-avatar {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
}

.empty-name {
    height: 18px; /* Mantiene l'altezza per il nome */
    margin-bottom: 4px;
}

/* Stili per il bottone sito web */
.website-button-container {
    margin: 10px 0;
    text-align: center;
}

.website-no-button {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.website-no-button:hover {
    background: linear-gradient(135deg, #c82333, #bd2130);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

.website-no-button:active {
    transform: translateY(0);
}

/* Website confirmation buttons */
.website-confirmation-container {
    margin: 10px 0;
    text-align: center;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.website-confirm-button {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.website-confirm-button:hover {
    background: linear-gradient(135deg, #20c997, #1e7e34);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

.website-confirm-button:active {
    transform: translateY(0);
}

.website-change-button {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: #212529;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.website-change-button:hover {
    background: linear-gradient(135deg, #e0a800, #d39e00);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.website-change-button:active {
    transform: translateY(0);
}

/* Character name styles */
.character-name {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.8;
    margin-bottom: 4px;
    color: #666;
}

.ai-message .character-name {
    color: #666;
}

/* Character-specific bubble styles */
.message-bubble.wizard {
    border-left: 3px solid #667eea;
}

.message-bubble.polite {
    border-left: 3px solid #28a745;
}

.message-bubble.rant {
    border-left: 3px solid #dc3545;
}

/* Code blocks */
pre {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px;
    margin: 12px 0;
    overflow-x: auto;
    font-size: 0.875rem;
}

.ai-message pre {
    background: #f8f9fa;
}

.user-message pre {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

code {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

/* Input section migliorata */
.input-section {
    padding: 0 20px 20px;
}

.input-container {
    background: white;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border: 1px solid #e9ecef;
}

.input-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin-bottom: 15px;
}

.chat-input {
    flex: 1;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 15px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    resize: none;
    min-height: 60px;
    max-height: 150px;
    font-family: inherit;
    line-height: 1.5;
    background: #f8f9fa;
    color: #333;
}

.chat-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
    background: white;
    color: #333;
}

.chat-input::placeholder {
    color: #6c757d;
}

.send-button {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    border: none;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    font-size: 18px;
    flex-shrink: 0;
}

.send-button:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.send-button:active {
    transform: translateY(0);
}

.clear-button {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
    font-size: 14px;
    flex-shrink: 0;
    margin-right: 10px;
    cursor: pointer;
}

.clear-button:hover {
    background: rgba(220, 53, 69, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

.clear-button:active {
    transform: translateY(0);
}

.input-footer {
    text-align: center;
    margin-top: 10px;
}

.input-footer small {
    color: white !important;
    font-size: 0.85rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.input-footer small i {
    color: white !important;
}

/* Responsive design */
@media (max-width: 768px) {
    .main-container {
        padding: 0;
    }
    
    .progress-bar-container {
        padding: 15px;
    }
    
    /* Box personaggi responsive */
    .characters-container {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }
    
    .character-box {
        min-height: 200px;
    }
    
    .character-header {
        padding: 15px;
    }
    
    .character-sprite {
        width: 60px;
        height: 75px;
        transform: scale(0.8);
    }
    
    .character-name {
        font-size: 12px;
    }
    
    .speech-bubble {
        min-width: 120px;
        max-width: 250px;
        bottom: 90px;
        padding: 8px 12px;
    }
    
    .bubble-text {
        font-size: 10px;
        max-width: 230px;
    }
    
    .chat-wrapper {
        margin-bottom: 0;
    }
    
    .input-section {
        padding: 0 15px 15px;
    }
    
    .input-container {
        padding: 15px;
    }
    
    .send-button {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .clear-button {
        width: 35px;
        height: 35px;
        font-size: 12px;
        margin-right: 8px;
    }
    
    .chat-input {
        min-height: 50px;
        padding: 12px 16px;
    }
    
    .message-bubble {
        max-width: 85%;
        padding: 10px 14px;
    }
    
    .message-avatar {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

/* Scrollbar styling */
.chat-container::-webkit-scrollbar {
    width: 6px;
}

.chat-container::-webkit-scrollbar-track {
    background: transparent;
}

.chat-container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.chat-container::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* Loading animation */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6c757d;
    animation: typingAnimation 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }
.typing-dot:nth-child(3) { animation-delay: 0s; }

@keyframes typingAnimation {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Hover effects */
.message-wrapper:hover .message-bubble {
    transform: translateY(-1px);
    transition: transform 0.2s ease;
}

/* Focus states */
.btn:focus,
.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .chat-container::before {
        background: rgba(33, 37, 41, 0.95);
    }
    
    .ai-message .message-bubble {
        background: #495057;
        color: #f8f9fa;
        border-color: #6c757d;
    }
    
    .input-container {
        background: #343a40;
        border-color: #495057;
    }
    
    .chat-input {
        background: #495057;
        border-color: #6c757d;
        color: #f8f9fa;
    }
    
    .chat-input::placeholder {
        color: #adb5bd;
    }
}

/* Modale Screenshot Analysis */
#screenshotModal .modal-content {
    border-radius: 15px;
}

#screenshotModal .modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom: none;
    border-radius: 15px 15px 0 0;
}

#screenshotModal .modal-body {
    padding: 20px;
    background: #f8f9fa;
}

.screenshot-question-container h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.screenshot-container {
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

#screenshotImage {
    max-height: 70vh;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    max-width: 100%;
    position: relative;
}

/* Zoom lens per screenshot */
.zoom-lens {
    position: absolute;
    width: 180px;
    height: 100px;
    border: 3px solid #007bff;
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.3);
    overflow: hidden;
    background: white;
}

.zoom-lens.active {
    opacity: 1;
}

.zoom-lens img {
    position: absolute;
    max-width: none;
    max-height: none;
    transform-origin: 0 0;
}

/* Indicatori click */
.click-indicator {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #e74c3c;
    border: 3px solid white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    animation: clickPulse 1s ease-out;
}

@keyframes clickPulse {
    0% { transform: translate(-50%, -50%) scale(0); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

.screenshot-progress {
    font-weight: 500;
    color: #666;
}

#skipQuestionBtn {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

#skipQuestionBtn:hover {
    background: linear-gradient(135deg, #7f8c8d, #6c7b7d);
    transform: translateY(-2px);
}
