/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* CHATÍMETRO Palette */
    --primary-color: #ffb917; /* Laranja principal */
    --primary-hover: #e6a715; /* Laranja hover (mais escuro) */
    --secondary-color: #010101; /* Preto */
    --accent-color: #312783; /* Roxo Moodfy */
    --accent-pink: #e6007e; /* Rosa Moodfy */
    --accent-yellow: #ffcf00; /* Amarelo Moodfy */
    
    /* Cores funcionais */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    
    /* Backgrounds */
    --background: #f8fafc;
    --surface: #ffffff;
    
    /* Textos */
    --text-primary: #010101; /* Preto */
    --text-secondary: #64748b;
    
    /* Bordas e sombras */
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(1, 1, 1, 0.1), 0 2px 4px -1px rgba(1, 1, 1, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(1, 1, 1, 0.1), 0 4px 6px -2px rgba(1, 1, 1, 0.05);
    
    /* Layout */
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --transition: all 0.2s ease-in-out;
}

/* Figuras geométricas de fundo usando imagem real */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/figuras.png');
    background-size: 60% auto; /* Reduzindo o tamanho para 60% da largura */
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: -1;
}

/* Responsividade para as figuras geométricas */
@media (max-width: 1200px) {
    body::after {
        background-size: 70% auto;
    }
}

/* ✅ NOVO: Estilos específicos para box de liderança mobile */
@media (max-width: 768px) {
    .leadership-box {
        margin-top: 1rem !important;
        padding: 0.8rem !important;
        background: rgba(245, 158, 11, 0.15) !important;
        border-radius: 6px !important;
        font-size: 0.9rem !important;
    }
    
    .leadership-box h4 {
        font-size: 1rem !important;
        margin: 0 0 0.5rem 0 !important;
    }
    
    .leadership-box p {
        font-size: 0.9rem !important;
        margin: 0.5rem 0 !important;
    }
}

@media (max-width: 768px) {
    body::after {
        background-size: 80% auto;
    }
}

@media (max-width: 480px) {
    body::after {
        background-size: 90% auto;
    }
}

body {
    font-family: 'League Spartan', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 2rem;
    color: white;
}

.logo-container {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 300px;
    height: auto;
    /*filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));*/
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
    /*filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.4));*/
}

/* Título com fonte Irish Grover */
.title {
    font-family: 'Irish Grover', cursive;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: white;
}

.subtitle {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    color: white;
}

/* Screens */
.screen {
    background: var(--surface);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    display: none;
    animation: fadeIn 0.5s ease-in-out;
    flex: 1;
    position: relative;
    z-index: 1;
}

.screen.active {
    display: block;
}

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

/* Start Screen */
.intro-content {
    text-align: center;
}

.intro-text {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    font-family: 'League Spartan', sans-serif;
}

.intro-text p {
    margin-bottom: 1rem;
}

.highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1.5rem !important;
    font-family: 'League Spartan', sans-serif;
}

.name-input-section {
    margin: 2rem 0;
}

.name-input-section label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-family: 'League Spartan', sans-serif;
}

.name-input-section input {
    width: 100%;
    max-width: 400px;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'League Spartan', sans-serif;
}

.name-input-section input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Nova seção de liderança na tela inicial */
.leadership-input-section {
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(52, 152, 219, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.leadership-question {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-family: 'League Spartan', sans-serif;
}

.leadership-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-family: 'League Spartan', sans-serif;
}

.leadership-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.leadership-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    font-family: 'League Spartan', sans-serif;
}

.leadership-option:hover {
    border-color: var(--primary-color);
    background: rgba(255, 185, 23, 0.05);
    transform: translateY(-2px);
}

.leadership-option input[type="radio"] {
    margin-right: 1rem;
    transform: scale(1.2);
}

.leadership-option input[type="radio"]:checked + .leadership-option-text {
    color: var(--primary-color);
    font-weight: 600;
}

.leadership-option-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    font-family: 'League Spartan', sans-serif;
}

.leadership-note {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 0.9rem;
    font-family: 'League Spartan', sans-serif;
}

.leadership-note small {
    font-family: 'League Spartan', sans-serif;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'League Spartan', sans-serif;
    position: relative;
    overflow: hidden;
    min-height: 48px;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #9ca3af !important;
    color: #6b7280 !important;
    transform: none !important;
    box-shadow: none !important;
}

.btn:disabled:hover {
    background-color: #9ca3af !important;
    transform: none !important;
    box-shadow: none !important;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 600;
}

.btn-primary:hover:not(:disabled) {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary:hover:not(:disabled) {
    background: #333333;
    transform: translateY(-1px);
}

.btn-success {
    background: var(--success-color);
    color: white;
}

.btn-success:hover:not(:disabled) {
    background: #059669;
    transform: translateY(-1px);
}

.btn-share {
    background: #0077b5 !important; /* Azul do LinkedIn */
    color: white !important;
    border: 2px solid #0077b5 !important;
    transition: all 0.3s ease;
}

.btn-share:hover {
    background: #005885 !important; /* Azul mais escuro no hover */
    border-color: #005885 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

/* Garantir que o botão do LinkedIn seja sempre azul em mobile */
@media (max-width: 768px) {
    .btn-share {
        background: #0077b5 !important; /* Azul do LinkedIn */
        color: white !important;
        border: 2px solid #0077b5 !important;
    }
    
    .btn-share:hover,
    .btn-share:active,
    .btn-share:focus {
        background: #005885 !important; /* Azul mais escuro no hover */
        border-color: #005885 !important;
        color: white !important;
    }
}

/* Quiz Progress */
.quiz-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    margin-right: 1rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

.question-counter {
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    font-family: 'League Spartan', sans-serif;
}

/* Question Container */
.question-container {
    margin-bottom: 2rem;
}

.question-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.4;
    font-family: 'League Spartan', sans-serif;
}

.answers-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.answer-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    font-family: 'League Spartan', sans-serif;
}

.answer-option:hover {
    border-color: var(--primary-color);
    background: rgba(255, 185, 23, 0.05);
    transform: translateY(-2px);
}

.answer-option.selected {
    border-color: var(--primary-color);
    background: rgba(255, 185, 23, 0.1);
}

.answer-option input[type="radio"] {
    margin-right: 1rem;
    transform: scale(1.2);
}

.answer-option label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    font-family: 'League Spartan', sans-serif;
}

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Result Content */
.result-content {
    text-align: center;
}

.result-header {
    margin-bottom: 2rem;
}

.result-greeting {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: 'League Spartan', sans-serif;
}

.result-score {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-family: 'League Spartan', sans-serif;
}

.result-category {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    display: inline-block;
    font-family: 'League Spartan', sans-serif;
}

.category-estagiario {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.category-pleno {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
}

.category-senior {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.result-description,
.result-details,
.result-tips {
    margin-bottom: 2rem;
    text-align: left;
    font-family: 'League Spartan', sans-serif;
}

.result-description h3,
.result-details h3,
.result-tips h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: 'League Spartan', sans-serif;
}

.result-details ul,
.result-tips ul {
    list-style: none;
    padding: 0;
}

.result-details li,
.result-tips li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    font-family: 'League Spartan', sans-serif;
}

.result-details li:last-child,
.result-tips li:last-child {
    border-bottom: none;
}

.result-disclaimer {
    background: rgba(255, 185, 23, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    font-family: 'League Spartan', sans-serif;
}

.result-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: auto;
    padding: 2rem 0;
    color: white;
    font-family: 'League Spartan', sans-serif;
}

/* Register Content */
.register-content {
    text-align: center;
}

.register-header {
    margin-bottom: 2rem;
}

.register-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: 'League Spartan', sans-serif;
}

.register-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-family: 'League Spartan', sans-serif;
}

.playground-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    font-family: 'League Spartan', sans-serif;
}

.register-form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-family: 'League Spartan', sans-serif;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'League Spartan', sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input:invalid {
    border-color: var(--danger-color);
}

/* Estilos para validação de email */
.form-group input.email-error {
    border-color: var(--danger-color);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group input.email-error:focus {
    border-color: var(--danger-color);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

#email-match-message {
    color: var(--danger-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: 'League Spartan', sans-serif;
}

#email-match-message::before {
    content: "⚠️";
    font-size: 1rem;
}

.form-group select {
    background: white;
}

.field-help {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
    font-family: 'League Spartan', sans-serif;
}

.phone-input-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.phone-input-group:focus-within {
    border-color: var(--primary-color);
}

.country-select {
    flex-shrink: 0;
    width: auto;
    min-width: 80px; /* Reduzindo de 120px para 80px */
    max-width: 100px; /* Adicionando largura máxima */
    padding: 0.75rem 0.5rem; /* Reduzindo padding horizontal */
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    background: white;
    font-size: 0.85rem; /* Reduzindo um pouco o tamanho da fonte */
    font-weight: 500;
    transition: border-color 0.3s ease;
    font-family: 'League Spartan', sans-serif;
}

.country-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.phone-input-group input[type="tel"] {
    flex: 1;
    min-width: 0; /* Garantindo que o input possa encolher */
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'League Spartan', sans-serif;
}

.phone-input-group input[type="tel"]:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary);
    font-family: 'League Spartan', sans-serif;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.125rem;
    transform: scale(1.1);
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.checkbox-label input:checked ~ .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input:checked ~ .checkmark::after {
    opacity: 1;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'League Spartan', sans-serif;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.register-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.register-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--danger-color);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
    font-family: 'League Spartan', sans-serif;
}

.error-message {
    color: var(--danger-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'League Spartan', sans-serif;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .logo {
        max-width: 250px;
    }

    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }
    
    .screen {
        padding: 1.5rem;
    }
    
    .question-text {
        font-size: 1.3rem;
    }
    
    .quiz-navigation {
        flex-direction: column;
    }
    
    .quiz-navigation .btn {
        width: 100%;
    }
    
    .result-actions {
        flex-direction: column;
    }
    
    .result-actions .btn {
        width: 100%;
    }
    
    .quiz-progress {
        flex-direction: column;
        gap: 1rem;
    }
    
    .progress-bar {
        margin-right: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .register-actions {
        flex-direction: column;
    }
    
    .register-actions .btn {
        width: 100%;
    }
    
    .register-title {
        font-size: 1.8rem;
    }
    
    .leadership-options {
        flex-direction: column;
    }
    
    .leadership-btn {
        width: 100%;
    }
    
    .leadership-title {
        font-size: 1.2rem;
    }
    
    /* Responsividade para o campo de telefone */
    .country-select {
        min-width: 70px;
        max-width: 85px;
        font-size: 0.8rem;
        padding: 0.75rem 0.4rem;
    }
    
    .phone-input-group {
        gap: 0.3rem; /* Reduzindo o gap em telas menores */
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 200px;
    }

    .title {
        font-size: 2rem;
    }
    
    .screen {
        padding: 1rem;
    }
    
    .question-text {
        font-size: 1.2rem;
    }
    
    .result-score {
        font-size: 2.5rem;
    }
    
    .result-greeting {
        font-size: 1.5rem;
    }
    
    .register-form {
        padding: 0;
    }
    
    .form-group input,
    .form-group select {
        font-size: 16px; /* Evita zoom no iOS */
    }
    
    /* Responsividade para o campo de telefone em telas muito pequenas */
    .country-select {
        min-width: 65px;
        max-width: 75px;
        font-size: 0.75rem;
        padding: 0.75rem 0.3rem;
    }
    
    .phone-input-group input[type="tel"] {
        font-size: 0.9rem;
    }
}

/* Efeitos de brilho nos botões */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* ========================================
   MOODFY SECTION STYLES
======================================== */

.moodfy-result {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-pink) 100%);
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    color: white;
    box-shadow: 0 8px 32px rgba(49, 39, 131, 0.3);
}

.moodfy-info {
    margin-bottom: 20px;
}

.moodfy-info h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'League Spartan', sans-serif;
}

.user-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin: 10px 0;
    backdrop-filter: blur(10px);
}

.user-info p {
    margin: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'League Spartan', sans-serif;
}

.user-info strong {
    color: #ffd700;
}

.moodfy-access {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.moodfy-access h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #ffd700;
    font-family: 'League Spartan', sans-serif;
}

.login-auto-container {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 10px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.login-auto-container:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.login-auto-link {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.4);
    font-family: 'League Spartan', sans-serif;
}

.login-auto-link:hover {
    background: linear-gradient(135deg, #ee5a24, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 90, 36, 0.6);
    color: white;
    text-decoration: none;
}

.login-auto-link::before {
    content: "🚀 ";
    margin-right: 8px;
}

.register-status {
    text-align: center;
    padding: 30px;
}

.status-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.status-loading p {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin: 0;
    font-family: 'League Spartan', sans-serif;
}

/* Status indicators */
.status-checking {
    color: var(--warning-color);
}

.status-registering {
    color: var(--primary-color);
}

.status-fetching {
    color: var(--info-color);
}

.status-success {
    color: var(--success-color);
}

.status-error {
    color: var(--danger-color);
}

/* Progress steps */
.moodfy-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    padding: 0 20px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.step:last-child::after {
    display: none;
}

.step.active::after {
    background: var(--primary-color);
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #666;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    font-family: 'League Spartan', sans-serif;
}

.step.active .step-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.step.completed .step-icon {
    background: var(--success-color);
    color: white;
}

.step-label {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    font-family: 'League Spartan', sans-serif;
}

@media (max-width: 768px) {
    .moodfy-result {
        padding: 15px;
    }
    
    .user-info {
        padding: 10px;
    }
    
    .user-info p {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .login-auto-link {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .moodfy-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-icon {
        width: 35px;
        height: 35px;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .moodfy-info h3 {
        font-size: 1.3rem;
    }
    
    .moodfy-access h4 {
        font-size: 1.1rem;
    }
    
    .login-auto-container {
        padding: 15px;
    }
    
    .moodfy-steps {
        padding: 0 10px;
    }
    
    .step::after {
        display: none;
    }
}

.login-auto-result {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-pink) 100%);
    padding: 30px;
    border-radius: 20px;
    margin: 20px 0;
    color: white;
    text-align: center;
    box-shadow: 0 10px 40px rgba(49, 39, 131, 0.3);
}

.login-auto-result .login-auto-header h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
    font-family: 'League Spartan', sans-serif;
}

.login-auto-result .login-auto-header p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    font-family: 'League Spartan', sans-serif;
}

.login-auto-result .login-auto-container {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 15px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    margin: 20px 0;
}

.login-auto-result .login-auto-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(238, 90, 36, 0.4);
    font-family: 'League Spartan', sans-serif;
}

.login-auto-result .login-auto-btn:hover {
    background: linear-gradient(135deg, #ee5a24, #ff6b6b);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(238, 90, 36, 0.6);
    color: white;
    text-decoration: none;
}

.login-auto-result .login-auto-btn:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .login-auto-result {
        padding: 20px;
    }
    
    .login-auto-result .login-auto-btn {
        padding: 15px 25px;
        font-size: 1.1rem;
    }
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-message {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    backdrop-filter: blur(10px);
}

.loading-message p {
    color: white;
    font-size: 1.1rem;
    margin: 0;
    font-family: 'League Spartan', sans-serif;
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    color: #ef4444;
    font-family: 'League Spartan', sans-serif;
}

.error-message h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'League Spartan', sans-serif;
}

.error-message p {
    margin: 0;
    font-size: 1rem;
    font-family: 'League Spartan', sans-serif;
}

.login-auto-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    margin: 20px 0;
}

.login-auto-container:has(iframe) {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    padding: 0;
    overflow: hidden;
    border-radius: 10px;
}

.login-auto-container iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
}

.login-auto-container iframe:loaded {
    animation: fadeIn 0.5s ease-in-out;
}

.login-auto-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.4);
    font-family: 'League Spartan', sans-serif;
}

.login-auto-btn:hover {
    background: linear-gradient(135deg, #ee5a24, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 90, 36, 0.6);
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .login-auto-container iframe {
        height: 400px;
    }
    
    .loading-message {
        padding: 15px;
    }
    
    .error-message {
        padding: 15px;
    }
} 