/*==========================
      QUOTES PAGE
==========================*/

.quotes-window {
    left: 30px;
    top: 170px;
    width: 450px;
    max-height: 70vh;
    overflow-y: auto;
    background: rgba(10, 10, 15, 0.92) !important;
    border: 2px solid #6b5b7a !important;
    box-shadow: 0 0 50px rgba(100, 70, 150, 0.6) !important;
    z-index: 12 !important;
}

.quotes-content {
    padding: 24px 20px !important;
    color: #f0e8f0 !important;
    font-size: 13px;
    line-height: 1.6;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.95) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* ----- رابط العودة ----- */
.quotes-window .back-home {
    display: inline-block;
    margin-bottom: 4px;
    color: #b8a8c8;
    text-decoration: none;
    font-family: monospace;
    font-size: 12px;
    transition: 0.3s;
    border-bottom: 1px solid transparent;
    align-self: flex-start;
}

.quotes-window .back-home:hover {
    color: #e8d8f0;
    border-bottom-color: #6b5b7a;
    padding-left: 4px;
}

/* ----- GIF ----- */
.quotes-gif-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.quotes-gif {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    border: 1px solid rgba(180, 160, 200, 0.15);
    box-shadow: 0 0 30px rgba(100, 70, 150, 0.2);
    image-rendering: pixelated;
}

/* ----- النص ----- */
.quotes-message {
    font-size: 18px;
    color: #d8d0e0;
    text-align: center;
    font-style: italic;
    letter-spacing: 1px;
    line-height: 1.8;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.9);
    margin: 0;
    padding: 10px 0;
    border-top: 1px solid rgba(180, 160, 200, 0.08);
    border-bottom: 1px solid rgba(180, 160, 200, 0.08);
}

/* ----- سكرول ----- */
.quotes-window::-webkit-scrollbar {
    width: 5px;
}

.quotes-window::-webkit-scrollbar-thumb {
    background: #6b5b7a;
    border-radius: 10px;
}

.quotes-window::-webkit-scrollbar-track {
    background: transparent;
}

/*==========================
      MOBILE
==========================*/

@media (max-width: 900px) {

    .quotes-window {
        left: 15px;
        top: 140px;
        width: 280px;
        max-height: 70vh;
    }

    .quotes-content {
        padding: 16px !important;
    }

    .quotes-gif {
        max-width: 150px;
    }

    .quotes-message {
        font-size: 14px;
        padding: 8px 0;
    }

}