:root {
    --bg-page: #FFF0E5;
    --accent-yellow: #FFDE00;
    --accent-blue: #00BAFF;
    --accent-red: #FF3B3F;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-page);
}

.manga-image {
    filter: contrast(1.1) saturate(1.2) sepia(0.1);
    position: relative;
}

.manga-card-container {
    border: 3px solid #000;
    box-shadow: 8px 8px 0px 0px #000;
    transition: all 0.2s ease;
    background: white;
}

.manga-card-container:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px 0px #000;
}

.pop-button {
    border: 3px solid #000;
    box-shadow: 4px 4px 0px 0px #000;
    transition: all 0.1s ease;
}

.pop-button:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px 0px #000;
}

.halftone {
    position: relative;
}

.halftone::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#000 10%, transparent 11%);
    background-size: 4px 4px;
    opacity: 0.15;
    pointer-events: none;
}

.search-bar-pop {
    border: 4px solid #000 !important;
    box-shadow: 8px 8px 0px 0px var(--accent-blue);
}

.avatar-emoji {
    font-size: 2rem;
    line-height: 1;
    filter: drop-shadow(2px 2px 0px #000);
}

/* Leaflet Overrides */
.leaflet-container {
    border: 4px solid #000;
    box-shadow: 8px 8px 0px 0px #000;
}