/* Quiz Flow Diagram Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 0 0 1px rgba(255,255,255,0.1);
    border-radius: 24px;
    margin-top: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(221, 180, 68, 0.1);
}

.quiz-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(221, 180, 68, 0.3);
    position: relative;
}

.quiz-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: #ddb444;
    border-radius: 1px;
}

.quiz-header img {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    width: auto;
    margin-bottom: 20px;
}

.quiz-header h1 {
    color: #ddb444;
    font-size: clamp(2em, 5vw, 3em);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 10px;
}

.quiz-content {
    padding: 20px 0;
}

/* Background Image */
.background-image {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

/* Facebook Share Section */
.facebook-share {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid rgba(221, 180, 68, 0.2);
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.facebook-share::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ddb444, #c4a03a, #ddb444);
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
}

.facebook-share p {
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 500;
}

.facebook-share .fb-share-wrapper {
    text-align: center;
    width: 100%;
    margin: 15px 0;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Subscription Section Styling */
.subscription-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid rgba(221, 180, 68, 0.2);
    border-radius: 8px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.subscription-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ddb444, #c4a03a, #ddb444);
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.subscription-header h3 {
    color: #2c3e50;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.subscription-header p {
    color: #6c757d;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.subscription-form-wrapper {
    max-width: 500px;
    margin: 0 auto 25px auto;
}

.mailerlite-form {
    max-width: 500px;
    margin: 0 auto 25px;
}

.form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 16px 20px;
    border: 2px solid rgba(221, 180, 68, 0.3);
    border-radius: 12px;
    font-size: 1em;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    background: white;
    color: #2c3e50;
}

.email-input:focus {
    border-color: #ddb444;
    box-shadow: 0 0 0 3px rgba(221, 180, 68, 0.1);
}

.subscribe-button {
    padding: 16px 24px;
    background: linear-gradient(135deg, #ddb444 0%, #c4a03a 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.01em;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.subscribe-button::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;
}

.subscribe-button:hover::before {
    left: 100%;
}

.subscribe-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(221, 180, 68, 0.4);
    background: linear-gradient(135deg, #c4a03a 0%, #ddb444 100%);
}

.privacy-note {
    font-size: 0.85em;
    color: #6c757d;
    margin: 0 0 25px 0;
    font-style: italic;
    opacity: 0.8;
}

.no-thanks-section {
    margin-top: 25px;
    text-align: center;
}

.no-thanks-link {
    color: #6c757d;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding: 15px 30px;
    border: 2px solid rgba(221, 180, 68, 0.3);
    border-radius: 6px;
    background: #ffffff;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.no-thanks-link:hover {
    color: #495057;
    border-color: #ddb444;
    background: linear-gradient(135deg, #fff9e6 0%, #fff5d6 100%);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(221, 180, 68, 0.25);
}

.no-thanks-section p {
    color: #6c757d;
    margin-bottom: 15px;
    font-size: 0.9em;
    font-weight: 500;
}

.no-thanks-button {
    display: inline-block;
    padding: 12px 20px;
    background: transparent;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9em;
}

.no-thanks-button:hover {
    background: rgba(221, 180, 68, 0.1);
    border-color: #ddb444;
    color: #2c3e50;
    transform: translateY(-1px);
}

.background-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.background-image img:hover {
    transform: scale(1.02);
}

.content-text {
    text-align: center;
    margin-bottom: 30px;
}

.content-text p {
    font-size: 1.1em;
    color: #2c3e50;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.7;
    font-weight: 400;
    opacity: 0.9;
}

.content-image {
    text-align: center;
    margin: 30px 0;
}

.content-image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.content-image img:hover {
    transform: scale(1.05);
}

.quiz-options {
    margin: 40px 0;
}

.external-links {
    text-align: center;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.external-link-button {
    display: inline-block;
    padding: 14px 24px;
    margin: 0;
    font-size: 0.95em;
    background: white;
    color: #2c3e50;
    text-decoration: none;
    border: 2px solid rgba(221, 180, 68, 0.6);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.external-link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #ddb444;
    transition: width 0.3s ease;
    z-index: -1;
}

.external-link-button:hover::before {
    width: 100%;
}

.external-link-button:hover {
    color: white;
    border-color: #ddb444;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(221, 180, 68, 0.3);
}

.options-form {
    display: flex;
    flex-direction: row;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.option-button {
    padding: 16px 32px;
    font-size: 1em;
    background: linear-gradient(135deg, #ddb444 0%, #c4a03a 100%);
    color: white;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(221, 180, 68, 0.3);
    font-weight: 600;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.option-button::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;
}

.option-button:hover::before {
    left: 100%;
}

.option-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(221, 180, 68, 0.4);
    background: linear-gradient(135deg, #c4a03a 0%, #ddb444 100%);
}

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

.navigation-controls {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
}

.reset-button {
    padding: 10px 20px;
    font-size: 1em;
    background: white;
    color: #000;
    border: 2px solid #ddb444;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reset-button:hover {
    background: #ddb444;
    border-color: #ddb444;
    color: white;
}

.quiz-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #6c757d;
    font-size: 0.9em;
}

.social-share {
    margin-bottom: 30px;
    text-align: center;
}

.social-share p {
    font-size: .9em;
    color: #ddb444;
    margin: 0 auto;
    line-height: 1.8;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    text-decoration: none;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    background: #000;
}

.social-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    background: #333;
}

.social-button svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 15px;
    }
    
    .quiz-header img {
        max-height: 80px;
    }
    
    .content-text p {
        font-size: 1.1em;
    }
    
    .option-button {
        padding: 12px 20px;
        font-size: 1em;
    }
    
    .options-form {
        flex-direction: column;
        gap: 15px;
        max-width: 400px;
    }
    
    .external-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-buttons {
        gap: 8px;
    }
    
    .social-button {
        width: 40px;
        height: 40px;
        padding: 10px;
    }
    
    .social-button svg {
        width: 18px;
        height: 18px;
    }
    
    /* Facebook share mobile styles */
    .facebook-share {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
}

/* Animation for page transitions */
.quiz-content {
    animation: fadeIn 0.5s ease-in;
}

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

/* Success and Error Messages */
.success-message, .error-message {
    background: #f8f9fa;
    border: 2px solid;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.success-message {
    border-color: #28a745;
    background: #d4edda;
}

.error-message {
    border-color: #dc3545;
    background: #f8d7da;
}

.success-message p, .error-message p {
    margin: 0 0 15px 0;
    font-size: 1.1em;
    font-weight: 600;
}

.reveal-button {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.reveal-button:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
} 

/* Custom MailerLite Form Styling */
#mlb2-6102269.ml-form-embedContainer {
    max-width: 100%;
    margin: 0;
}

#mlb2-6102269.ml-form-embedContainer .ml-form-embedWrapper {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

#mlb2-6102269.ml-form-embedContainer .ml-form-embedBody {
    padding: 0;
}

#mlb2-6102269.ml-form-embedContainer .ml-form-embedContent h4 {
    display: none;
}

#mlb2-6102269.ml-form-embedContainer .ml-form-embedContent p {
    display: none;
}

#mlb2-6102269.ml-form-embedContainer .ml-form-fieldRow {
    margin-bottom: 20px;
}

#mlb2-6102269.ml-form-embedContainer .ml-form-fieldRow input {
    background: #ffffff !important;
    border: 2px solid rgba(221, 180, 68, 0.3) !important;
    border-radius: 6px !important;
    color: #2c3e50 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    padding: 20px 25px !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: center;
}

#mlb2-6102269.ml-form-embedContainer .ml-form-fieldRow input:focus {
    border-color: #ddb444 !important;
    box-shadow: 0 0 0 3px rgba(221, 180, 68, 0.1), 0 4px 15px rgba(0,0,0,0.05);
    outline: none;
    transform: translateY(-2px);
}

#mlb2-6102269.ml-form-embedContainer .ml-form-fieldRow input::placeholder {
    color: #adb5bd !important;
    font-weight: 400;
    text-align: center;
}

#mlb2-6102269.ml-form-embedContainer .ml-form-embedSubmit {
    margin: 25px 0 0 0;
}

#mlb2-6102269.ml-form-embedContainer .ml-form-embedSubmit button {
    background: linear-gradient(135deg, #ddb444 0%, #c4a03a 100%) !important;
    border: none !important;
    border-radius: 6px !important;
    color: #ffffff !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    padding: 18px 32px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(221, 180, 68, 0.3);
    width: 100% !important;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

#mlb2-6102269.ml-form-embedContainer .ml-form-embedSubmit button::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;
}

#mlb2-6102269.ml-form-embedContainer .ml-form-embedSubmit button:hover {
    background: linear-gradient(135deg, #c4a03a 0%, #b08f35 100%) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(221, 180, 68, 0.4);
}

#mlb2-6102269.ml-form-embedContainer .ml-form-embedSubmit button:hover::before {
    left: 100%;
}

#mlb2-6102269.ml-form-embedContainer .ml-form-embedSubmit button:active {
    transform: translateY(-1px);
}

#mlb2-6102269.ml-form-embedContainer .ml-form-successBody {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    border-radius: 6px;
    padding: 30px;
    text-align: center;
    margin-top: 20px;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.2);
}

#mlb2-6102269.ml-form-embedContainer .ml-form-successContent h4 {
    color: #155724;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

#mlb2-6102269.ml-form-embedContainer .ml-form-successContent p {
    color: #155724;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .subscription-section {
        padding: 30px 20px;
        margin: 30px 15px;
        border-radius: 6px;
    }
    
    .subscription-header h3 {
        font-size: 26px;
    }
    
    .subscription-header p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    #mlb2-6102269.ml-form-embedContainer .ml-form-fieldRow input {
        padding: 18px 20px !important;
        font-size: 16px !important;
        border-radius: 4px !important;
    }
    
    #mlb2-6102269.ml-form-embedContainer .ml-form-embedSubmit button {
        padding: 16px 24px !important;
        font-size: 16px !important;
        border-radius: 4px !important;
    }
    
    .no-thanks-link {
        font-size: 15px;
        padding: 12px 24px;
        border-radius: 4px;
    }
}

/* Custom animation for form appearance */
@keyframes formSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subscription-section {
    animation: formSlideIn 0.6s ease-out;
}

/* Custom focus states */
#mlb2-6102269.ml-form-embedContainer .ml-form-fieldRow input:focus {
    border-color: #ddb444 !important;
    box-shadow: 0 0 0 3px rgba(221, 180, 68, 0.1), 0 4px 15px rgba(0,0,0,0.05);
}

/* Loading state styling */
#mlb2-6102269.ml-form-embedContainer .ml-form-embedSubmit button.loading {
    background: #6c757d !important;
    cursor: not-allowed;
    transform: none;
}

/* Error state styling */
#mlb2-6102269.ml-form-embedContainer .ml-error input {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220,53,69,0.1);
}

#mlb2-6102269.ml-form-embedContainer .ml-error .label-description {
    color: #dc3545 !important;
    font-size: 14px;
    margin-top: 8px;
    font-weight: 500;
} 