body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #f5f7fa;
}

.blurred-background {
    background-image: url('img/antarctica.jpg');
    height: 100%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(8px);
    position: fixed;
    z-index: -1;
}

.foreground-image {
    display: block;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.info-link {
    position: fixed;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.55);
    color: #f5f7fa;
    text-decoration: none;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background 0.2s ease, transform 0.2s ease;
    font-size: 22px;
}

.info-link:hover,
.info-link:focus-visible {
    background: rgba(0, 0, 0, 0.75);
    transform: translateY(-2px);
}

.external-links {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.external-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 10px;
    padding: 10px 12px;
    height: 56px;
    width: 150px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.external-link img {
    max-height: 100%;
    max-width: 100%;
}

.external-link:hover,
.external-link:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);
}

.crunchyroll {
    background: #f47521;
}

.myanimelist {
    background: #2c539e;
}

.crunchyroll img{
    filter: brightness(0) invert(1);
}

.myanimelist img {
}
