.choicemate-initial-loading {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 24px;
    margin: 20px 0;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.loading-trigger {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.trigger-icon {
    font-size: 3em;
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.trigger-content {
    flex: 1;
    color: white;
}

.trigger-content h3 {
    margin: 0 0 8px 0;
    font-size: 1.4em;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.trigger-content p {
    margin: 0;
    opacity: 0.9;
    font-size: 1em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.trigger-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
}

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

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

.choicemate-no-js {
    background: #fff;
    border: 1px solid #c3c4c7;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
}

.choicemate-no-js h3 {
    margin: 0 0 10px 0;
    color: #1d2327;
}

.choicemate-no-js p {
    margin: 0 0 10px 0;
    color: #646970;
}

@media (max-width: 768px) {
    .choicemate-trigger-placeholder {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .placeholder-text {
        text-align: center;
    }
}