.quiz-counter-live {
    display: inline-block;
    width: 14px;
    height: 14px;
    min-width: 14px;
    min-height: 14px;
    flex-shrink: 0;
    flex-grow: 0;
    margin-right: 8px;
    border-radius: 50%;
    background: #ff2d2d;
    box-shadow: 0 0 0 0 rgba(255,45,45, 0.7);
    animation: quiz-sonar-pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
    vertical-align: middle;
}

.quiz-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    text-align: center;
}

.quiz-counter-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.quiz-counter-value {
    display: inline-block;
    font-weight: bold;
    font-size: 1.15em;
    text-align: center;
}

.quiz-counter-value-bottom {
    display: inline-block;
    font-weight: bold;
    font-size: 1.15em;
    text-align: center;
}

@keyframes quiz-sonar-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255,45,45, 0.7);
        opacity: 1;
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255,45,45, 0);
        opacity: 0.7;
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255,45,45, 0);
        opacity: 1;
    }
}

.quiz-side-by-side-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 20px;
    gap: 2%;
}

.quiz-option {
    flex: 0 0 49%;
    max-width: 49%;
    box-sizing: border-box;
    margin-bottom: 18px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    background: #fff;
}

.quiz-option:nth-child(2n) {
    margin-right: 0;
}

.quiz-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.quiz-option-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
}

.quiz-option-image img {
    width: 100%;
    min-width: 100%;
    min-height: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    display: block;
}

.quiz-option-title { 
    padding: 10px; 
    font-weight: bold; 
    text-align: center; 
}

.quiz-option-rating { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    padding-bottom: 10px; 
}

.quiz-option-rating-text { 
    font-size: 14px; 
    color: #666; 
    margin-bottom: 5px; 
}

.quiz-option-stars { 
    color: #f1c40f; 
    font-size: 16px; 
}

.quiz-option-stars .quiz-star.empty { 
    color: #e0e0e0; 
}

.quiz-action-button { 
    display: block; 
    width: 100%; 
    padding: 15px; 
    border: none; 
    border-radius: 4px; 
    font-size: 16px; 
    font-weight: bold; 
    cursor: pointer; 
    text-align: center; 
    margin-top: 20px; 
}

.quiz-privacy a { 
    color: #999; 
}

.quiz-container {
    background-color: #ffffff;
    color: #333333;
    font-family: Arial, sans-serif;
    max-width: 450px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 20px;
}

.quiz-logo img,
.quiz-central-image img,
.quiz-option-image img {
    max-width: 100%;
    height: auto;
}

.quiz-logo img {
    max-height: 150px;
    display: block;
    margin: 0 auto 20px auto;
}

.quiz-progress-bar {
    height: 4px;
    background-color: #e0e0e0;
    margin-bottom: 20px;
    border-radius: 2px;
    overflow: hidden;
}

.quiz-progress-bar-inner {
    height: 100%;
    background-color: #000000;
    width: 0%;
    transition: width 0.3s ease;
}

.quiz-counter {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.quiz-counter-bottom {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.quiz-counter-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    background-color: #3498db;
    border-radius: 50%;
    display: inline-block;
}

.quiz-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.quiz-question {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}

.quiz-button {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
    transition: background-color 0.3s;
}

.quiz-button:hover {
    opacity: 0.9;
}

.quiz-footer {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 30px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quiz-copyright {
    /* Existing styles for copyright */
}

.quiz-privacy a {
    color: #999;
    text-decoration: none;
}

.quiz-privacy a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {    
    .quiz-title {
        font-size: 18px;
    }
    
    .quiz-question {
        font-size: 16px;
    }
    
    .quiz-container {
        padding: 15px;
    }
    
    .quiz-footer {
        flex-direction: column;
        gap: 10px;
    }
}

.quiz-counter-value {
    color: #444;
    background: #f7f7f9;
    padding: 0.6rem 0.75rem;
    border-radius: 12px;
}