.analysis-container {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 4px solid #28a745;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.analysis-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(40, 167, 69, 0) 100%);
    z-index: 0;
}

.analysis-container:hover {
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.1);
    transform: translateY(-3px) scale(1.01);
}

/* Style for the suggested changes section */
.suggested-changes-section {
    position: relative;
    z-index: 1;
}

/* AI Changes Section - Prevent horizontal overflow */
.ai-changes-section {
    max-width: 100%;
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.changes-content {
    max-width: 100%;
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.changes-list {
    max-width: 100%;
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Modern styling for the Changes We Made to Your CV section */
.changes-header {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.changes-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.changes-title i {
    color: #ffc107;
    font-size: 1.8rem;
}

.changes-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-left: 28px;
}

.changes-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.suggestion-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid #28a745;
    max-width: 100%;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.suggestion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #f0f7f2;
}

.suggestion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #28a745;
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.suggestion-icon i {
    font-size: 1rem;
}

.suggestion-content {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
    max-width: 100%;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.no-changes-message .suggestion-item {
    border-left: 4px solid #17a2b8;
}

.no-changes-message .suggestion-icon {
    background-color: #17a2b8;
}

/* Pulse animation for the title */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.suggestions-list {
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 15px;
    margin-right: -15px;
    scrollbar-width: thin;
    scrollbar-color: #28a745 #f8f9fa;
    position: relative;
    z-index: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.suggestions-list::-webkit-scrollbar {
    width: 5px;
}

.suggestions-list::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 10px;
}

.suggestions-list::-webkit-scrollbar-thumb {
    background-color: #28a745;
    border-radius: 10px;
    border: 2px solid #f8f9fa;
}

.suggestion-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #28a745, #34ce57);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.suggestion-item:hover::after {
    opacity: 1;
}

.suggestion-item i {
    color: #28a745;
    font-size: 1.1rem;
    margin-top: 2px;
    background: rgba(40, 167, 69, 0.1);
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.1);
    transition: all 0.3s ease;
}

.suggestion-item:hover i {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(40, 167, 69, 0.2);
}

.suggestion-item span {
    color: #2c3e50;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: -0.01em;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.suggestion-item {
    animation: fadeInUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    opacity: 0;
}

.suggestion-item:nth-child(1) { animation-delay: 0.1s; }
.suggestion-item:nth-child(2) { animation-delay: 0.2s; }
.suggestion-item:nth-child(3) { animation-delay: 0.3s; }
.suggestion-item:nth-child(4) { animation-delay: 0.4s; }
.suggestion-item:nth-child(5) { animation-delay: 0.5s; }

.cover-letter-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.cover-letter-content .header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.cover-letter-content .contact-info {
    text-align: left;
}

.cover-letter-content .contact-info p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.cover-letter-content .date {
    text-align: right;
}

.cover-letter-content .date p {
    margin: 0;
    font-size: 0.9rem;
}

.cover-letter-content .recipient {
    margin-bottom: 2rem;
}

.cover-letter-content .recipient p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.cover-letter-content .body {
    margin-bottom: 2rem;
}

.cover-letter-content .body p {
    margin-bottom: 1rem;
    text-align: justify;
}

.cover-letter-content .closing {
    margin-top: 2rem;
}

.cover-letter-content .closing p {
    margin: 0.25rem 0;
}

.cover-letter-content .closing p:first-child {
    margin-bottom: 2rem;
}

.cover-letter-preview {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-top: 1rem;
}

.cover-letter-preview .loading-state {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.cover-letter-preview .preview-content {
    display: none;
}

.cover-letter-preview .preview-content.visible {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cover-letter-container p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cover-letter-container p.contact-info {
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.cover-letter-container p:last-child {
    margin-bottom: 0;
}

.change-section {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ddd;
}

.section-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

/* Add more specific styles for the changes display */
.change-label {
    font-weight: 600;
    margin-bottom: 4px;
}

.change-before .change-label {
    color: #e53e3e;
}

.change-after .change-label {
    color: #38a169;
}

.change-item {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.change-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.change-details {
    margin: 10px 0;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 6px;
}

.change-before, .change-after {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.change-before {
    background-color: #fee2e2;
    border-left: 3px solid #ef4444;
}

.change-after {
    background-color: #dcfce7;
    border-left: 3px solid #10b981;
}

.change-label {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.change-before .change-label {
    color: #dc2626;
}

.change-after .change-label {
    color: #059669;
}

.benefit {
    margin-top: 10px;
    padding: 8px;
    background-color: #eff6ff;
    border-radius: 4px;
    color: #1e40af;
    font-size: 0.9rem;
}

.prompt-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.prompt-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #475569;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
}

.prompt-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.prompt-btn i {
    font-size: 1rem;
    color: #3b82f6;
    background: #eff6ff;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.prompt-btn:hover i {
    transform: scale(1.1);
    background: #dbeafe;
}

@media (max-width: 768px) {
    .prompt-buttons {
        grid-template-columns: 1fr;
    }
}

/* Notifications */
.notifications-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    background: white;
    border-radius: 8px;
    padding: 12px 20px;
    min-width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: slideIn 0.3s ease-out;
}

.notification.fade-out {
    animation: slideOut 0.3s ease-out forwards;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.notification-icon {
    font-size: 1.2em;
    font-weight: bold;
    min-width: 20px;
    text-align: center;
}

.notification.success {
    border-left: 4px solid #10B981;
}

.notification.error {
    border-left: 4px solid #EF4444;
}

.notification.warning {
    border-left: 4px solid #F59E0B;
}

.notification.info {
    border-left: 4px solid #3B82F6;
}

.notification.success .notification-icon {
    color: #10B981;
}

.notification.error .notification-icon {
    color: #EF4444;
}

.notification.warning .notification-icon {
    color: #F59E0B;
}

.notification.info .notification-icon {
    color: #3B82F6;
}

.notification i {
    font-size: 1.2em;
}

.notification.success i {
    color: #10B981;
}

.notification.error i {
    color: #EF4444;
}

.notification.warning i {
    color: #F59E0B;
}

.notification.info i {
    color: #3B82F6;
}

.close-notification {
    background: none;
    border: none;
    color: #6B7280;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.close-notification:hover {
    background-color: #F3F4F6;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.5em;
    height: 1.5em;
    margin: -0.75em 0 0 -0.75em;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

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

/* Button Loading State */
button:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

button .fa-spinner {
    margin-right: 8px;
    animation: spin 1s infinite linear;
}

/* Results Section Loading */
.results-section.loading {
    position: relative;
    min-height: 200px;
}

.results-section.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1;
}

.results-section.loading::after {
    z-index: 2;
    border-width: 4px;
    width: 3em;
    height: 3em;
    margin: -1.5em 0 0 -1.5em;
}

/* Match Score Loading */
.match-score-card.loading .score-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2em;
    height: 2em;
    margin: -1em 0 0 -1em;
    border: 3px solid rgba(59, 130, 246, 0.2);
    border-top-color: #3B82F6;
    border-radius: 50%;
    animation: spin 1s infinite linear;
} 

/* Free Account Limitations Styles */
.upgrade-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    animation: slideInFromTop 0.5s ease-out;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
}

.banner-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

.banner-info i {
    font-size: 1.1rem;
    opacity: 0.9;
}

.banner-upgrade-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.banner-upgrade-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Premium Chat Overlay */
.premium-chat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 12px;
}

.premium-overlay-content {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
    max-width: 300px;
}

.premium-overlay-content i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 15px;
    display: block;
}

.premium-overlay-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.premium-overlay-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.upgrade-btn-overlay {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.upgrade-btn-overlay:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Upgrade Modal Styles */
.upgrade-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
}

.upgrade-modal {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInFromBottom 0.4s ease-out;
}

.modal-header {
    padding: 24px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.modal-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header i {
    color: #ffd700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #666;
}

.modal-content {
    padding: 0 24px 20px;
}

.feature-highlight {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    margin-bottom: 20px;
}

.feature-highlight i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 10px;
    display: block;
}

.feature-highlight h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.feature-highlight p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.pro-features h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.pro-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pro-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 0.95rem;
}

.pro-features li:last-child {
    border-bottom: none;
}

.pro-features li i {
    color: #28a745;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.modal-actions {
    padding: 20px 24px 24px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    border-top: 1px solid #eee;
}

.btn-secondary {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #ddd;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: #e9ecef;
    color: #555;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Animations */
@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Pro Badge Styles for Free Users */
.chat-input-wrapper-pro {
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
}

.pro-badge-input {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #8b5a00;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: bold;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pro-badge-prompt {
    color: #ffd700;
    margin-left: 4px;
    font-size: 12px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.pro-chat-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.pro-banner-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pro-banner-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Section Styles */
.cv-optimizer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #f8fafc;
}

.hero-section {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 24px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    border-bottom: none;
}

.hero-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    text-align: center;
}

.hero-content p {
    font-size: 1.25rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
}

.cv-animation {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.what-you-get-header {
    text-align: center;
    margin-bottom: 0.5rem;
}

.what-you-get-label {
    font-size: 1rem;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.output-visualization {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
}

.output-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.output-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    text-align: center;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.output-item:hover .output-label {
    opacity: 1;
    color: #1e293b;
}

.cv-icon, .analysis-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    border: 3px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    opacity: 1;
    transform: scale(1);
}

.cv-icon {
    border-color: rgba(59, 130, 246, 0.2);
}

.analysis-icon {
    border-color: rgba(16, 185, 129, 0.2);
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.cv-icon i, .analysis-icon i {
    font-size: 2rem;
    color: #3b82f6;
}

.analysis-icon i {
    color: #10b981;
}

.plus-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transform: scale(1);
}

.plus-connector i {
    font-size: 1.2rem;
    font-weight: bold;
}

@keyframes pulse-plus {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
    }
}

.glow-icon {
    /* animation: glow 2s ease-in-out infinite; */
}

/* Responsive Design */
@media (max-width: 768px) {
    .cv-optimizer-container {
        padding: 1rem;
    }
    
    .hero-section {
        padding: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .cv-animation {
        max-width: 300px;
        margin: 0 auto 1.5rem;
    }
    
    .what-you-get-label {
        font-size: 0.875rem;
    }
    
    .output-visualization {
        gap: 1rem;
    }
    
    .output-label {
        font-size: 0.75rem;
    }
    
    .cv-icon, .analysis-icon {
        width: 70px;
        height: 70px;
    }
    
    .cv-icon i, .analysis-icon i {
        font-size: 1.5rem;
    }
    
    .plus-connector {
        width: 30px;
        height: 30px;
    }
    
    .plus-connector i {
        font-size: 1rem;
    }
    
    .banner-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .upgrade-modal {
        width: 95%;
        margin: 10px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .btn-secondary,
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
}