/* ═══════════════════════════════════════════════════════════════
   WALLPAPER GRIMOIRE - FRIEREN-INSPIRED THEME
   A magical, mystical design for a mage's collection
   ═══════════════════════════════════════════════════════════════ */

/* ROOT VARIABLES */
:root {
    /* Primary mystical colors */
    --midnight-purple: #2d1b3d;
    --deep-violet: #3d2952;
    --mystic-blue: #4a5f7f;
    --ethereal-lavender: #9d8fb8;
    --moonlight: #d4c5e2;

    /* Accent colors */
    --spell-gold: #e8c170;
    --magic-glow: #b8a9d4;
    --frost-white: #f5f3f7;

    /* Functional colors */
    --shadow-deep: rgba(29, 17, 41, 0.6);
    --shadow-soft: rgba(61, 41, 82, 0.3);
    --glow-effect: rgba(184, 169, 212, 0.4);

    /* Spacing scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
}

/* default STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Palatino', serif;
    background: linear-gradient(135deg, var(--midnight-purple) 0%, var(--deep-violet) 50%, var(--mystic-blue) 100%);
    color: var(--moonlight);
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* BACKGROUND PARTICLES */

.magic-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image:
            radial-gradient(circle at 20% 30%, var(--glow-effect) 1px, transparent 1px),
            radial-gradient(circle at 80% 70%, var(--glow-effect) 1px, transparent 1px),
            radial-gradient(circle at 50% 50%, var(--glow-effect) 1px, transparent 1px),
            radial-gradient(circle at 90% 20%, var(--glow-effect) 1px, transparent 1px),
            radial-gradient(circle at 10% 80%, var(--glow-effect) 1px, transparent 1px);
    background-size: 400px 400px, 350px 350px, 450px 450px, 500px 500px, 300px 300px;
    animation: drift 20s ease-in-out infinite;
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0); opacity: 0.6; }
    50% { transform: translate(30px, -30px); opacity: 0.8; }
}

/* ─────────────────────────────────────────────────────────────── */
/* HEADER - GRIMOIRE STYLE */
/* ─────────────────────────────────────────────────────────────── */
.grimoire-header {
    position: relative;
    z-index: 10;
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    background: rgba(45, 27, 61, 0.6);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--ethereal-lavender);
    box-shadow: 0 4px 20px var(--shadow-deep);
}

.header-ornament {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--spell-gold), transparent);
}

.header-ornament.left { left: var(--space-md); }
.header-ornament.right { right: var(--space-md); }

.site-title {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--moonlight);
    margin-bottom: var(--space-md);
    text-shadow: 0 0 20px var(--glow-effect);
}

.title-rune {
    color: var(--spell-gold);
    font-size: 1rem;
    vertical-align: middle;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* ─────────────────────────────────────────────────────────────── */
/* NAVIGATION - SPELL TABS */
/* ─────────────────────────────────────────────────────────────── */
.spell-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-md);
}

.nav-spell {
    color: var(--ethereal-lavender);
    text-decoration: none;
    font-size: 1.1rem;
    padding: var(--space-xs) var(--space-md);
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    position: relative;
}

.nav-spell::before {
    content: '✦';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--spell-gold);
}

.nav-spell:hover,
.nav-spell.active {
    color: var(--spell-gold);
    border-bottom-color: var(--spell-gold);
}

.nav-spell:hover::before,
.nav-spell.active::before {
    opacity: 1;
    transform: translateX(-15px);
}

/* ─────────────────────────────────────────────────────────────── */
/* MAIN CONTENT CONTAINER */
/* ─────────────────────────────────────────────────────────────── */
.tome-content {
    position: relative;
    z-index: 5;
    max-width: 2200px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
}

/* ─────────────────────────────────────────────────────────────── */
/* HERO SECTION - MAGICAL CIRCLE */
/* ─────────────────────────────────────────────────────────────── */
.hero-spell {
    text-align: center;
    padding: var(--space-xl) 0;
    position: relative;
}

.spell-circle {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto var(--space-lg);
}

.circle-outer,
.circle-middle,
.circle-inner {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--spell-gold);
    opacity: 0.6;
}

.circle-outer {
    width: 200px;
    height: 200px;
    top: 0;
    left: 0;
    animation: rotate-slow 20s linear infinite;
    box-shadow: 0 0 20px var(--glow-effect);
}

.circle-middle {
    width: 140px;
    height: 140px;
    top: 30px;
    left: 30px;
    animation: rotate-slow 15s linear infinite reverse;
}

.circle-inner {
    width: 80px;
    height: 80px;
    top: 60px;
    left: 60px;
    animation: rotate-slow 10s linear infinite;
    background: radial-gradient(circle, var(--glow-effect), transparent);
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-text {
    font-size: 2rem;
    font-weight: 300;
    color: var(--frost-white);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.1em;
}

.hero-subtext {
    font-size: 1.2rem;
    color: var(--ethereal-lavender);
    font-style: italic;
}

/* ─────────────────────────────────────────────────────────────── */
/* SPELL CARDS GRID */
/* ─────────────────────────────────────────────────────────────── */
.spell-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.spell-card {
    background: rgba(61, 41, 82, 0.4);
    /* backdrop-filter: blur(10px); */ /* Comment this out */
    border: 2px solid var(--ethereal-lavender);
    border-radius: 12px;
    padding: var(--space-lg);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}



.spell-card:hover {
    transform: translateY(-8px);
    border-color: var(--spell-gold);
    box-shadow: 0 12px 40px var(--shadow-deep), 0 0 30px var(--glow-effect);
}

.spell-card:hover::before {
    opacity: 0.1;
}

.card-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.card-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 8px var(--glow-effect));
}

.card-header h3 {
    color: var(--frost-white);
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.card-body p {
    color: var(--ethereal-lavender);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.card-stats {
    display: flex;
    gap: var(--space-md);
    font-size: 0.9rem;
    color: var(--magic-glow);
}

.stat {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

/* ─────────────────────────────────────────────────────────────── */
/* SECTION TITLES */
/* ─────────────────────────────────────────────────────────────── */
.section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--frost-white);
    margin: var(--space-xl) 0 var(--space-lg);
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.title-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ethereal-lavender), transparent);
    max-width: 200px;
}

/* ─────────────────────────────────────────────────────────────── */
/* FEATURED WALLPAPER SECTION */
/* ─────────────────────────────────────────────────────────────── */
.featured-tome {
    margin: var(--space-xl) 0;
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    background: rgba(61, 41, 82, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid var(--ethereal-lavender);
    border-radius: 12px;
    padding: var(--space-lg);
    align-items: center;
}

.featured-image {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--spell-gold);
}

.image-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--deep-violet), var(--mystic-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--glow-effect), transparent);
    animation: pulse-glow 3s ease-in-out infinite;
}

.placeholder-text {
    position: relative;
    z-index: 1;
    color: var(--spell-gold);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

.featured-info h3 {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--frost-white);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.05em;
}

.featured-meta {
    color: var(--magic-glow);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
}

.mage-name {
    color: var(--spell-gold);
    font-weight: 600;
}

.featured-description {
    color: var(--ethereal-lavender);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.featured-tags {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.tag {
    padding: var(--space-xs) var(--space-sm);
    background: rgba(184, 169, 212, 0.2);
    border: 1px solid var(--magic-glow);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--moonlight);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(184, 169, 212, 0.3);
    border-color: var(--spell-gold);
    color: var(--spell-gold);
}

/* ─────────────────────────────────────────────────────────────── */
/* FOOTER - GRIMOIRE CLOSING */
/* ─────────────────────────────────────────────────────────────── */
.grimoire-footer {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    background: rgba(45, 27, 61, 0.6);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--ethereal-lavender);
    margin-top: var(--space-xl);
}

.footer-ornament {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--spell-gold), transparent);
    margin: 0 auto var(--space-md);
}

.footer-text {
    color: var(--moonlight);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.footer-rune {
    color: var(--spell-gold);
    font-size: 0.9rem;
}

.footer-small {
    color: var(--magic-glow);
    font-size: 0.85rem;
    font-style: italic;
}

/* ─────────────────────────────────────────────────────────────── */
/* RESPONSIVE DESIGN */
/* ─────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .site-title {
        font-size: 1.8rem;
    }

    .header-ornament {
        display: none;
    }

    .spell-nav {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .nav-spell::before {
        display: none;
    }

    .hero-text {
        font-size: 1.5rem;
    }

    .spell-grid {
        grid-template-columns: 1fr;
    }

    .featured-card {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .title-line {
        max-width: 80px;
    }
}

/* ─────────────────────────────────────────────────────────────── */
/* UTILITY CLASSES */
/* ─────────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-glow { text-shadow: 0 0 20px var(--glow-effect); }
.mt-lg { margin-top: var(--space-lg); }
.mb-lg { margin-bottom: var(--space-lg); }


/* ─────────────────────────────────────────────────────────────── */
/* PROFILE PAGE STYLES */
/* ─────────────────────────────────────────────────────────────── */
.profile-section {
    margin-bottom: var(--space-xl);
}

.profile-card {
    background: rgba(61, 41, 82, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid var(--ethereal-lavender);
    border-radius: 12px;
    padding: var(--space-lg);
    max-width: 600px;
    margin: var(--space-lg) auto;
    transition: all 0.4s ease;
}

.profile-card:hover {
    border-color: var(--spell-gold);
    box-shadow: 0 12px 40px var(--shadow-deep), 0 0 30px var(--glow-effect);
}

.profile-card h3 {
    color: var(--frost-white);
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: var(--space-lg);
    letter-spacing: 0.1em;
    text-align: center;
    border-bottom: 2px solid var(--ethereal-lavender);
    padding-bottom: var(--space-md);
}

.profile-card ul {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.profile-card li {
    color: var(--ethereal-lavender);
    padding: var(--space-md) var(--space-sm);
    border-bottom: 1px solid rgba(157, 143, 184, 0.1);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.profile-card li:hover {
    background: rgba(184, 169, 212, 0.1);
    padding-left: var(--space-md);
}

.profile-card li:last-child {
    border-bottom: none;
}

.profile-card li strong {
    color: var(--spell-gold);
    margin-right: var(--space-sm);
    min-width: 120px;
    font-weight: 400;
}

.profile-card .cast-button {
    display: block;
    text-decoration: none;
    text-align: center;
    margin-top: var(--space-lg);
    padding: 1rem;
    background: linear-gradient(135deg, #8b2e3d, #c44569);
    border: 2px solid #ff6b81;
    border-radius: 8px;
    color: var(--frost-white);
    font-size: 1.1rem;
    font-family: 'Georgia', serif;
    letter-spacing: 0.1em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.profile-card .cast-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 107, 129, 0.6), transparent);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    border-radius: 50%;
}

.profile-card .cast-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #c44569, #ff6b81);
    box-shadow:
            0 8px 25px rgba(255, 107, 129, 0.5),
            0 0 30px rgba(255, 107, 129, 0.3);
}

.profile-card .cast-button:hover::before {
    width: 300px;
    height: 300px;
}

.profile-card .cast-button:active {
    transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════════════
   ADMIN PANEL – USER TABLE ENHANCEMENTS
   ═══════════════════════════════════════════════════════════════ */

/* TABLE CONTAINER */
.users-table-container {
    background: rgba(45, 27, 61, 0.45);
    backdrop-filter: blur(12px);
    border: 2px solid var(--ethereal-lavender);
    border-radius: 14px;
    padding: var(--space-md);
    box-shadow:
            0 10px 35px var(--shadow-deep),
            0 0 25px var(--glow-effect);
    overflow-x: auto;
}

/* TABLE BASE */
.users-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.6rem;
    font-size: 0.95rem;
}

/* HEADER */
.users-table thead th {
    text-align: left;
    padding: 0.9rem 1rem;
    color: var(--spell-gold);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(232, 193, 112, 0.4);
}

/* ROW BASE */
.users-table tbody tr {
    background: rgba(61, 41, 82, 0.45);
    transition: all 0.35s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* ROW HOVER */
.users-table tbody tr:hover {
    background: rgba(74, 95, 127, 0.45);
    transform: translateY(-3px) scale(1.01);
    box-shadow:
            0 12px 35px var(--shadow-deep),
            0 0 20px var(--glow-effect);
}

/* CELLS */
.users-table td {
    padding: 1rem;
    color: var(--moonlight);
    vertical-align: middle;
}

/* ROUNDED ROW EDGES */
.users-table tbody tr td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.users-table tbody tr td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* USERNAME HIGHLIGHT */
.users-table td:first-child {
    font-weight: 600;
    color: var(--frost-white);
    text-shadow: 0 0 8px var(--glow-effect);
}

/* EMAIL STYLE */
.users-table td:nth-child(4) {
    font-style: italic;
    color: var(--magic-glow);
}

/* ADMIN / USER BADGES */
.admin-badge,
.user-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.7rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: 1px solid;
}

/* ADMIN BADGE */
.admin-badge {
    background: rgba(40, 167, 69, 0.25);
    color: #7fff9a;
    border-color: #28a745;
    box-shadow: 0 0 12px rgba(40, 167, 69, 0.4);
}

/* USER BADGE */
.user-badge {
    background: rgba(157, 143, 184, 0.25);
    color: var(--ethereal-lavender);
    border-color: var(--magic-glow);
    box-shadow: 0 0 10px rgba(184, 169, 212, 0.4);
}

/* ACTION COLUMN ALIGNMENT BOOST */
.actions-cell {
    background: rgba(29, 17, 41, 0.4);
}

/* ACTION BUTTON GROUP – FLOAT EFFECT */
.action-buttons {
    gap: 0.6rem;
}

.action-btn {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.action-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

/* MOBILE FRIENDLINESS */
@media (max-width: 768px) {
    .users-table thead {
        display: none;
    }

    .users-table tbody tr {
        display: block;
        padding: 0.75rem;
    }

    .users-table td {
        display: flex;
        justify-content: space-between;
        padding: 0.6rem 0.4rem;
        font-size: 0.85rem;
    }

    .users-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--spell-gold);
        margin-right: 0.5rem;
    }
}
/* Notification Bell Container */
.notification-container {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

/* Notification Bell Button */
.notification-bell {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-bell:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.bell-icon {
    font-size: 24px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

/* Notification Badge */
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    border: 2px solid #2a1a4a;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Notification Dropdown */
.notification-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 350px;
    background: linear-gradient(135deg, #2a1a4a 0%, #1a1030 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-height: 500px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.notification-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Arrow */
.notification-dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(255, 255, 255, 0.2);
}

/* Notification Header */
.notification-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-header h3 {
    margin: 0;
    color: #fff;
    font-size: 16px;
}

.mark-all-read {
    background: none;
    border: none;
    color: #9b87f5;
    font-size: 12px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.2s;
}

.mark-all-read:hover {
    background: rgba(155, 135, 245, 0.2);
}

/* Notification List */
.notification-list {
    max-height: 350px;
    overflow-y: auto;
}

.notification-list::-webkit-scrollbar {
    width: 6px;
}

.notification-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.notification-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

/* Notification Item */
.notification-item {
    display: flex;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
    cursor: pointer;
}

.notification-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.notification-item.unread {
    background: rgba(155, 135, 245, 0.1);
}

.notification-icon {
    font-size: 24px;
    margin-right: 12px;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-text {
    margin: 0 0 5px 0;
    color: #fff;
    font-size: 14px;
}

.notification-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

/* Notification Footer */
.notification-footer {
    padding: 12px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.view-all-link {
    color: #9b87f5;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.view-all-link:hover {
    color: #b8a4ff;
}