        :root {
            --card-width: 440px;
        }
        body {
            font-family: 'Barosaurus Normal', "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            min-height: 100vh;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            background-color: #10141c;
            background-image: url("img/barosaurus.jpg");
            background-size: cover;
            background-position: top center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            color: white;
            position: relative;
        }
        a,
        a:visited {
            color: peachpuff;
            text-decoration: none;
        }
        a:hover,
        a:focus-visible {
            color: peachpuff;
            text-decoration: none;
        }
        body.intro-active {
            overflow: hidden;
            height: 100vh;
        }
        .back-home {
            position: absolute;
            top: 1.25rem;
            left: 1.25rem;
            width: 3.25rem;
            height: 3.25rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            background: rgba(0, 0, 0, 0.65);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.45);
            transition: background 0.2s ease, transform 0.2s ease;
        }
        .back-home img {
            width: 2rem;
            height: 2rem;
        }
        .back-home:hover,
        .back-home:focus-visible {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        .back-home:focus-visible {
            outline: 2px solid peachpuff;
            outline-offset: 2px;
        }
        main {
            text-align: center;
            margin: 0 auto;
            padding-top: 10vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }
        p {
            line-height: 1.2;
        }
        h1 {
            margin: 0;
            font-family: 'Barosaurus Normal', "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
            font-weight: normal;
            font-style: normal;
            font-size: 10vh;
            line-height: 1.2;
            width: 100%;
        }
        nav.site-menu {
            width: 80vw;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            font-family: 'Barosaurus Normal', "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
            font-size: 3vh;
            text-align: center;
        }
        .site-menu-item {
            flex: 1 1 var(--card-width);
            max-width: var(--card-width);
            display: flex;
            align-items: stretch;
            background: rgba(0, 0, 0, 0.5);
            color: #f5f5f5;
        }
        .site-link,
        .info-link {
            display: flex;
            padding: 1.25rem 1rem;
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease, background 0.25s ease;
        }
        .site-link,
        .site-link:visited,
        .site-link:hover,
        .site-link:focus-visible {
            color: #ffffff;
        }
        .site-link {
            flex: 1 1 auto;
        }
        .info-link {
            flex: 0 0 auto;
            min-width: 3rem;
            font-weight: bold;
        }
        .info-link:hover,
        .info-link:visited,
        .info-link:hover,
        .info-link:focus-visible {
            background: rgba(255, 255, 255, 0.1);
        }
        .history-card {
            display: flex;
            padding: 1.25rem 1rem;
            color: #f5f5f5;
            background: rgba(0, 0, 0, 0.5);
            transition: color 0.25s ease;
            width: 90vw;
            max-width: 90vw;
            flex-direction: column;
            gap: 1rem;
            font-family: 'Barosaurus Normal', "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
            font-size: 3vh;
            text-align: left;
        }
        .history-card .image-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }
        .history-card .image-row img {
            display: block;
            width: min(100%, 640px);
            height: auto;
        }
        .history-card a {
            color: peachpuff;
            text-decoration: none;
        }
        img {
            width: min(100%, 640px);
            margin: auto;
        }
        @media (max-width: 900px) {
            h1 {
                font-size: 10vh;
                line-height: 1.2;
            }
        }

        @media (max-width: 560px) {
            h1 {
                font-size: clamp(2.5rem, 12vw, 5rem);
                line-height: 1.2;
            }
            nav.site-menu {
                justify-content: center;
            }
        }

        .welcome-overlay {
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: #000000;
            animation: welcome-overlay-hide 4.8s ease forwards;
        }

        .welcome-overlay__svg {
            width: 100%;
            height: 100%;
        }

        .welcome-overlay__backdrop {
            width: 100%;
            height: 100%;
        }

        .welcome-overlay__text,
        .welcome-overlay__mask-text {
            font-family: 'Barosaurus Normal', "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
            font-weight: 900;
            font-size: clamp(4rem, 18vw, 28rem);
            letter-spacing: 0.08em;
            text-anchor: middle;
            transform-origin: 50% 50%;
            transform-box: fill-box;
            animation: welcome-zoom 4.8s ease forwards;
        }

        .welcome-overlay__text {
            fill: #a40f1f;
            animation: welcome-text-fill 4.8s ease forwards, welcome-zoom 4.8s ease forwards;
        }

        .welcome-overlay__mask-text {
            fill: #ffffff;
            animation: welcome-mask-cut 4.8s ease forwards, welcome-zoom 4.8s ease forwards;
        }

        @keyframes welcome-zoom {
            0% {
                transform: scale(0.55);
                letter-spacing: 0.05em;
            }
            60% {
                transform: scale(1.3);
                letter-spacing: 0.25em;
            }
            100% {
                transform: scale(2.3);
                letter-spacing: 0.6em;
                opacity: 0;
            }
        }

        @keyframes welcome-text-fill {
            0% {
                fill: #a40f1f;
            }
            45% {
                fill: #ffffff;
            }
            80% {
                fill: rgba(255, 255, 255, 0.4);
            }
            100% {
                fill: rgba(255, 255, 255, 0);
            }
        }

        @keyframes welcome-mask-cut {
            0% {
                fill: #ffffff;
            }
            70% {
                fill: #ffffff;
            }
            100% {
                fill: #000000;
            }
        }

        @keyframes welcome-overlay-hide {
            0% {
                opacity: 1;
                visibility: visible;
            }
            80% {
                opacity: 1;
                visibility: visible;
            }
            100% {
                opacity: 0;
                visibility: hidden;
            }
        }

.st {
    background: black;
    color: red;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -450%;
    right: -450%;
    bottom: -450%;
    left: -450%;
    padding-left: 15vmin;
    padding-top: 60vmin;
    font-size: 90vmin;
    line-height: 1;
    white-space: nowrap;
    opacity: 1;
    animation: fade-in 1.25s 0s 1 linear, scaler 6s 0s 1 cubic-bezier(0.3, 0, 0.9, 1), colors 6s 0s 1 linear, opacify 6s 0s 1 linear;
    animation-iteration-count: 1, 1, 1, 1;
    animation-duration: 1.25s, 6s, 6s, 6s;
    animation-delay: 0s, 1.25s, 1.25s, 1.25s;
    animation-fill-mode: forwards, forwards, forwards, forwards;
    transform-origin: 50% 50%;
    transform: scale(.2);
    will-change: transform, opacity;
}
.blend-it {
    mix-blend-mode: multiply;
    animation: fade-in 1.25s 0s 1 linear, scaler 6s 0s 1 cubic-bezier(0.3, 0, 0.9, 1), colors 6s 0s 1 linear, fade-out;
    animation-iteration-count: 1, 1, 1, 1;
    animation-duration: 1.25s, 6s, 6s, 1s;
    animation-delay: 0s, 1.25s, 1.25s, 6.25s;
    animation-fill-mode: forwards, forwards, forwards, forwards;
}
.initial {
    animation: fade-out .05s 1.25s 1 linear forwards;
    transform: scale(1);
}
@keyframes scaler {
    100% {
                transform: scale(10);
    }
}
@keyframes colors {
  0% {
    color: red;
  }
  10% {
    color: red;
  }
  20%, 100% {
    color: white;
  }
}
@keyframes opacify {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    70% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
}
@keyframes fade-out {
  100% {
    opacity: 0;
  }
}

.tp-video-gallery {
    width: 90vw;
    max-width: 1400px;
    margin: 2rem auto 4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.tp-video-card {
    width: 400px;
    max-width: 100%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-family: 'Barosaurus Normal', "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.tp-video-card h2 {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.2;
}

.tp-video-card video {
    width: 100%;
    border: none;
}

.tp-video-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
}
