.daily-quote-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #2f1f10 0%,
            #5b3b18 55%,
            #2f1f10 100%
        );
}

.daily-quote-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(238, 192, 108, 0.15),
            transparent 35%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(255, 255, 255, 0.05),
            transparent 35%
        );
    pointer-events: none;
}

.daily-quote-card {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
    padding: 64px 70px;
    border: 1px solid rgba(239, 201, 132, 0.28);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    text-align: center;
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
}

.daily-quote-symbol {
    display: inline-flex;
    width: 72px;
    height: 72px;
    margin-bottom: 22px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(230, 181, 91, 0.15);
    color: #efc46f;
    font-size: 2rem;
}

.daily-quote-label {
    margin-bottom: 18px;
    color: #efc46f;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.daily-quote-text {
    max-width: 850px;
    margin: 0 auto;
    color: #ffffff;
    font-size: clamp(1.65rem, 3vw, 2.7rem);
    font-weight: 600;
    line-height: 1.55;
}

.daily-quote-divider {
    width: 70px;
    height: 2px;
    margin: 28px auto 20px;
    background: #d9a441;
}

.daily-quote-author {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
}

.daily-quote-actions {
    display: flex;
    justify-content: center;
}

.daily-quote-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0.85rem 1.5rem;
    border: 1px solid #d9a441;
    border-radius: 999px;
    background: #d9a441;
    color: #271909;
    font-weight: 600;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

.daily-quote-button:hover {
    background: #efc46f;
    color: #271909;
    transform: translateY(-2px);
}

.daily-quote-button i {
    transition: transform 0.2s ease;
}

.daily-quote-button:hover i {
    transform: translateX(4px);
}

@media (max-width: 767.98px) {
    .daily-quote-section {
        padding: 65px 0;
    }

    .daily-quote-card {
        padding: 45px 25px;
        border-radius: 22px;
    }

    .daily-quote-symbol {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .daily-quote-text {
        font-size: clamp(1.45rem, 7vw, 2.1rem);
    }
}