/* Quote Display Styles */
.quote-display {
    position: fixed;
    left: 50%;
    top: calc(50% + 180px); /* Position below the Start button with more spacing */
    transform: translateX(-50%) translateY(0);
    max-width: 400px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: none; /* Ẩn hoàn toàn quote display */
}

.quote-display.show {
    opacity: 1;
    display: block !important;
}

.quote-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quote-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    position: relative;
    padding-left: 25px;
}

.quote-text::before {
    content: '"';
    position: absolute;
    left: -5px;
    top: -10px;
    font-size: 50px;
    color: rgba(255, 255, 255, 0.2);
    font-family: serif;
}

.quote-author {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-align: right;
}

.quote-author::before {
    content: '— ';
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive for quote */
@media (max-width: 768px) {
    .quote-display {
        left: 50%;
        right: auto;
        top: calc(50% + 150px); /* Position below button on mobile */
        transform: translateX(-50%);
        max-width: calc(100% - 30px);
        padding: 15px 20px;
        max-height: 200px;
        overflow: hidden;
    }
    
    .quote-text {
        font-size: 13px;
        line-height: 1.5;
        padding-left: 20px;
    }
    
    .quote-text::before {
        font-size: 40px;
        left: -8px;
        top: -8px;
    }
    
    .quote-author {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .quote-display {
        top: calc(50% + 120px); /* Position below button on small screens */
        transform: translateX(-50%);
        padding: 12px 15px;
        max-height: 150px;
        max-width: calc(100% - 20px);
    }
    
    .quote-text {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .quote-author {
        font-size: 10px;
    }
}

