/* Game Specific Styles - Quote Card */

/* ===== Quote Card ===== */
.quote-container {
    margin-bottom: 28px;
}

.quote-card {
    background: var(--surface);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    position: relative;
    border-left: 4px solid var(--primary-500);
}

body.dark-mode .quote-card {
    background: var(--neutral-100);
    border-color: rgba(255, 255, 255, 0.07);
    border-left-color: var(--primary-500);
}

.quote-mark-open,
.quote-mark-close {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-500);
    opacity: 0.15;
    line-height: 1;
    font-family: Georgia, serif;
}

.quote-mark-open {
    position: absolute;
    top: 8px;
    left: 14px;
}

.quote-mark-close {
    position: absolute;
    bottom: 8px;
    right: 14px;
}

.quote-content {
    font-size: 1.2rem;
    line-height: 1.75;
    color: var(--on-surface);
    font-style: italic;
    font-family: Georgia, "Times New Roman", serif;
    margin: 16px 0;
    padding: 0 16px;
    text-align: center;
    word-wrap: break-word;
}

.quote-source {
    font-size: var(--text-sm);
    color: var(--on-surface-muted);
    text-align: right;
    margin-top: 14px;
    font-weight: 600;
    font-family: inherit;
    font-style: normal;
    letter-spacing: 0.2px;
}

/* ===== Daily Complete Section ===== */
.daily-complete {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.daily-complete-text {
    text-align: center;
    width: 100%;
}

.view-results-btn {
    background: var(--primary-500);
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.30);
    width: auto;
    min-height: 48px;
    font-family: inherit;
}

.view-results-btn:hover {
    background: var(--primary-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.40);
}

.view-results-btn:active {
    transform: translateY(0) scale(0.98);
}

.view-results-btn .btn-icon {
    font-size: 1rem;
    display: inline-flex;
    transition: transform 0.25s ease;
}

.view-results-btn:hover .btn-icon {
    transform: scale(1.1);
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
    .quote-card {
        padding: 24px 16px;
    }

    .quote-mark-open,
    .quote-mark-close {
        font-size: 2.5rem;
    }

    .quote-content {
        font-size: 1.05rem;
        padding: 0 8px;
    }

    .quote-source {
        font-size: var(--text-xs);
    }

    .view-results-btn {
        padding: 13px 20px;
        width: 100%;
        justify-content: center;
    }
}
