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

@font-face {
    font-family: 'vcr';
    src: url('fonts/vcr.woff2') format('woff2'),
         url('fonts/vcr.woff') format('woff'),
         url('fonts/vcr.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html {
    font-size: 12px;
}

body {
    font-family: 'vcr', sans-serif;
    background-color: #edff00;
    color: #000;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 10px;
    align-items: center;
    font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: normal;
}

strong, b {
    font-weight: normal;
}

a {
    color: #0032a0;
    text-decoration: none !important;
    transition: color 0.1s linear;
    font-size: inherit;
    font-weight: normal !important;
}

a:hover {
    color: #df1996;
    text-decoration: none !important;
}

button {
    font-family: 'vcr', sans-serif;
    font-size: inherit;
    color: #edff00;
    background-color: #000000;
    border: 0px;
    padding: 2px 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

button:hover {
    background-color: #0032a0;
    color: #edff00;
}

.cta-slide {
    position: relative;
    overflow: hidden;
    background: transparent;
    color: #0032a0;
    border: 2px solid #0032a0;
    padding: 2px 8px;
}
.cta-slide span { position: relative; z-index: 1; }
.cta-slide::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background: #0032a0;
    transition: width 0.25s ease-in-out;
    z-index: 0;
}
.cta-slide:hover,
.cta-slide:focus-visible {
    color: #edff00;
}
.cta-slide:hover::before,
.cta-slide:focus-visible::before {
    width: 100%;
}

input[type="email"] {
    font-family: 'vcr', sans-serif;
    font-size: inherit;
    text-transform: none;
    color: #0032a0;
    background-color: #ffffff;
    border: 2px solid #0032a0;
    padding: 2px 5px;
    border-radius: 5px;
    cursor: text;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

input::placeholder {
    font-size: inherit;
    color: #0032a0;
}

input[type="email"]:focus {
    background-color: #0032a0;
    color: #edff00;
    border-color: #0032a0;
}
input[type="email"]:focus::placeholder {
    color: #edff00;
    opacity: 0.85;
}

img {
    max-width: 100%;
    height: auto;
}

.header {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    position: relative;
    z-index: 10;
    margin-bottom: 0px;
    margin-top: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.header img {
    max-height: 125px;
    width: auto;
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

.page-content {
    transition: margin-top 0.5s ease;
}

.logo-link {
    position: relative;
    display: inline-block;
}

.bio-tooltip {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0032a0;
    color: #edff00;
    padding: 16px 10px;
    border-radius: 5px;
    font-size: inherit;
    font-family: 'vcr', sans-serif;
    width: 455px;
    max-width: calc(90vw - 20px);
    text-align: center;
    line-height: 1.4;
    text-transform: uppercase;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    margin-top: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    box-sizing: border-box;
}

.logo-link:hover .bio-tooltip {
    opacity: 1;
    visibility: visible;
}

.hover-effect {
    position: relative;
    display: inline-block;
}

.album-container:hover .album-title {
    opacity: 1;
    visibility: visible;
    max-height: 400px;
    padding: 10px 15px;
    margin: 16px auto 3px auto;
}

.album-title.album-title--active {
    opacity: 1;
    visibility: visible;
    max-height: 400px;
    padding: 10px 15px;
    margin: 16px auto 3px auto;
}

.page-content.shifted {
    margin-top: 0;
}

#bio-spacer {
    height: 0;
    transition: height 0.4s ease;
    overflow: hidden;
}

.album-container {
    position: relative;
    display: inline-block;
}

.album-title {
    display: block;
    background-color: #0032a0;
    color: #edff00;
    border-radius: 5px;
    font-size: inherit;
    font-family: 'vcr', sans-serif;
    width: 455px;
    max-width: calc(90vw - 20px);
    text-align: center;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0 auto;
    transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease, padding 0.3s ease, margin 0.2s ease;
}

.content {
    margin-top: 0px;
    text-align: center;
    margin-bottom: 0;
    text-align: center;
    color: #000;
    justify-content: center;
    font-size: inherit;
    transition: transform 0.5s ease;
}

.content img {
    max-width: min(90vw, 475px);
    width: 100%;
    height: auto;
}

.content p {
    margin: 8px 0;
}

form {
    margin: 10px 0 20px 0;
}

.section-title {
    display: inline-block;
    max-width: 100%;
    font-size: inherit;
    line-height: 1.1;
    word-break: break-word;
    hyphens: auto;
    margin: 10px 0 0 0;
}

.contact-links {
    margin-top: 8px;
}

.contact-links p {
    margin: 2px 0;
}

.contact-link {
    position: relative;
    display: inline-block;
    padding: 6px 10px;
    border-radius: 5px;
    color: #0032a0;
    z-index: 0;
}

.contact-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #0032a0;
    border-radius: 5px;
    transition: width 0.25s ease-in-out;
    z-index: -1;
}

.contact-link:hover,
.contact-link:focus-visible {
    color: #edff00;
}

.contact-link:hover::before,
.contact-link:focus-visible::before {
    width: 100%;
}

.newsletter-title {
    margin-top: 32px;
}

.privacy-title {
    margin-bottom: 15px;
}

.spacer-top {
    margin-top: 40px !important;
    display: block;
}

.soundcloud-player {
    max-width: 475px;
    max-height: 240px;
    width: 100%;
    margin: 0 auto;
}

.ikonki {
    text-align: center;
    margin-top: 25px;
}

.ikonki img {
    max-height: 60px;
    width: auto;
    margin: 5px;
}

.footer {
    width: 100%;
    text-align: center;
    padding: 33px 0;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer p {
    margin: 2px 0;
    font-size: inherit;
}

.footer img {
    max-height: 75px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.link-img {
    position: relative;
    display: inline-block;
}

.link-img img.default {
    display: block;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
}

.link-img img.hover {
    position: absolute;
    top: 0;
    left: 0;
    visibility: visible;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: block;
    pointer-events: none;
}

.link-img:hover img.hover {
    opacity: 1;
}

.link-img:hover img.default {
    opacity: 0;
}

.preload-images {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

.preload-images img {
    width: 1px;
    height: 1px;
}

a:focus-visible, button:focus-visible, input:focus-visible {
    outline: 2px dotted #0032a0;
    outline-offset: 2px;
}

.upper { text-transform: uppercase; }

@media screen and (max-width: 1024px) {
    body {
        font-size: 12px;
    }
    .ikonki {
        margin-top: 15px;
    }
    .header img {
        max-height: 90px;
    }
    .footer {
        padding: 30px 0;
    }
    .footer p {
        font-size: inherit;
    }
    .content {
        font-size: inherit;
    }
    .footer img {
        max-height: 50px;
    }
    .bio-tooltip {
        width: 330px;
        max-width: calc(80vw - 20px);
        padding: 14px 10px;
    }
    .album-title {
        width: 330px;
        max-width: calc(80vw - 20px);
        padding: 8px 12px;
    }
}

@media screen and (max-width: 600px) {
    body {
        font-size: 12px;
        padding-top: 5px;
    }
.soundcloud-player {
    max-width: 350px;
    max-height: 175px;
}
    .ikonki {
        margin-top: 15px;
    }
    .ikonki img {
        max-height: 40px;
    }
    .footer img {
        max-height: 50px;
    }
    .bio-tooltip {
        width: 260px;
        max-width: calc(85vw - 20px);
        padding: 10px 8px;
        font-size: 11px;
    }
    .album-title {
        width: 260px;
        max-width: calc(85vw - 20px);
        padding: 6px 10px;
        font-size: 11px;
    }
}
