/* Non-critical CSS - loaded asynchronously */

h2 {
    font-size: 1rem;
    margin: 25px 0 15px;
    color: #FFD700;
}

h3 {
    font-size: 1.5rem;
    margin: 20px 0 10px;
    color: #4ECDC4;
}

.earnings-message, .completion-message {
    text-align: center;
}

.elementor-button {
    display: block;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #FF0000 0%, #FF8C00 100%);
    color: white !important;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.elementor-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.5);
}

.elementor-button:active {
    transform: translateY(1px);
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0;
}

.feature {
    flex-basis: 48%;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.feature i {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 15px;
}

.footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
}

.footer-links a {
    color: #4ECDC4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
    text-decoration: underline;
}

/* Question sections */
.question-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin: 20px 0;
    text-align: center;
}

.question-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.answer-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.answer-button {
    flex: 1;
    min-width: 200px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.answer-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #FFD700;
    transform: translateY(-2px);
}

.answer-button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Color coding for evaluations */
.answer-button.positive-answer {
    background: rgba(40, 167, 69, 0.2);
    border-color: rgba(40, 167, 69, 0.5);
    color: #28a745;
}

.answer-button.positive-answer:hover {
    background: rgba(40, 167, 69, 0.3);
    border-color: #28a745;
    color: #fff;
}

.answer-button.negative-answer {
    background: rgba(220, 53, 69, 0.2);
    border-color: rgba(220, 53, 69, 0.5);
    color: #dc3545;
}

.answer-button.negative-answer:hover {
    background: rgba(220, 53, 69, 0.3);
    border-color: #dc3545;
    color: #fff;
}

.answer-button.neutral-answer {
    background: rgba(255, 193, 7, 0.2);
    border-color: rgba(255, 193, 7, 0.5);
    color: #ffc107;
}

.answer-button.neutral-answer:hover {
    background: rgba(255, 193, 7, 0.3);
    border-color: #ffc107;
    color: #fff;
}

/* Animations */
.zoom-in {
    animation: zoomIn 0.5s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    h2 {
        font-size: 1rem;
    }
    
    .feature {
        flex-basis: 100%;
    }
    
    .answer-buttons {
        flex-direction: column;
    }
    
    .answer-button {
        min-width: auto;
    }
}

/* Remove Elementor default styles that we don't need */
.elementor-element {
    margin: 0 !important;
}

.elementor-widget-container {
    margin: 0 !important;
}

.elementor-heading-title {
    margin: 0 !important;
}

.elementor-image-box-wrapper {
    text-align: center;
}

.elementor-image-box-title {
    color: #FFD700 !important;
    font-size: 1.8rem !important;
    margin: 15px 0 !important;
}

.elementor-image-box-description {
    color: #fff !important;
    font-size: 1.1rem !important;
}