.daily-quote {
    text-align: center;
    font-family: 'Dancing Script', cursive; /* Elegant script style */
    font-size: 1.8em; /* Slightly larger for aesthetic impact */
    font-weight: 700; /* Bolder weight for stronger font style */
    color: #2d1b4e; /* Rich purple tone for elegance */
    background: linear-gradient(135deg, #f5e6cc 0%, #e0c3fc 100%); /* Soft gradient background */
    padding: 25px;
    margin: 15px 0;
    border-left: 6px solid #a78bfa; /* Matching purple border */
    border-radius: 10px; /* Rounded corners for a modern look */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); /* Deeper shadow for depth */
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.4s ease; /* Smoother transition */
    position: relative;
    overflow: hidden;
    background-color: rgba(255, 245, 230, 0.95); /* Warmer cream highlight background */
    text-shadow: 0 0 8px rgba(167, 139, 250, 0.7), 0 0 2px rgba(167, 139, 250, 0.5); /* Enhanced purple glow for highlight */
    border-bottom: 3px solid rgba(167, 139, 250, 0.6); /* Decorative bottom border for highlight */
}

.daily-quote p {
    margin: 0;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Subtle hover effect for interactivity */
.daily-quote:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Optional decorative element (e.g., a faint underline or overlay) */
.daily-quote::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: rgba(167, 139, 250, 0.3); /* Faint purple line */
    z-index: 0;
}

@media (max-width: 768px) {
    .daily-quote {
        font-size: 1.4em;
        padding: 20px;
        max-width: 90%;
    }
}