body {
    background-color: #121212;
    color: #E0E0E0;
    font-family: 'Inter', sans-serif;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #1E1E1E; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #555; }

img {
    transition: transform 0.4s ease;
}

main:hover img {
    transform: scale(1.03);
}

/* Link cards */
.link-card {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 18px;
    background: #1E1E1E;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    color: #A0A0A0;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.link-card:hover {
    border-color: rgba(255, 255, 255, 0.18);
    background: #252525;
    color: #E0E0E0;
}

.link-card .icon-left {
    font-size: 1.15rem;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.link-card .icon-right {
    font-size: 0.65rem;
    color: #555;
    margin-left: auto;
    transition: all 0.25s ease;
}

.link-card:hover .icon-right {
    color: #888;
}

#msg-chevron {
    transition: transform 0.3s ease;
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #252525;
    color: #E0E0E0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    pointer-events: none;
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
