@charset "utf-8";

/* ==========================================================================
   Main Visual (Hero Section) Styles
   ========================================================================== */

.hero-parallax-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    height: calc(var(--hero-vh, 1vh) * 100);
    min-height: 100dvh;
    background-color: var(--hero-bg, #ffffff);
    background-image: none;
    /* 初期描画の白フラッシュ防止：JS適用前はライトテーマを既定に */
    --hero-text-color: #0b0b0b;
    --hero-stroke-color: #0b0b0b;
    --hero-muted-color: rgba(0,0,0,0.55);
    --hero-rail-color: rgba(0,0,0,0.22);
    --hero-hint-color: rgba(0,0,0,0.7);
    --hero-text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    --hero-menu-bg: rgba(255, 255, 255, 0.75);
    --hero-menu-border: rgba(0, 0, 0, 0.12);
    --hero-menu-bg-hover: rgba(255, 255, 255, 0.9);
    --hero-menu-border-hover: rgba(0, 0, 0, 0.22);
    --hero-era-bg-opacity: 0;
    --hero-era-bg-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hero-text-color, #ffffff);
    z-index: 10;
    overflow: hidden;
    padding: 0;
    touch-action: pan-y;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.hero-parallax-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-era-bg-image, none);
    background-size: cover;
    background-position: center;
    opacity: var(--hero-era-bg-opacity, 0);
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.hero-parallax-container.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hero-parallax-container.is-warp .hero-story,
.hero-parallax-container.is-warp .memory-windows,
.hero-parallax-container.is-warp .hero-chat {
    opacity: 0;
    pointer-events: none;
}

/* 画像の選択/ハイライトを抑制 */
.hero-parallax-container,
.hero-parallax-container * {
    -webkit-tap-highlight-color: transparent;
}

.hero-parallax-container,
.hero-parallax-container img {
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    user-select: none;
}

.hero-parallax-container img {
    pointer-events: none;
    width: 85%;
    margin: 0 auto;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 70% 50%,
        rgba(var(--hero-accent-rgb, 255, 0, 51), 0.1) 0%,
        rgba(0,0,0,0) 60%
    );
    opacity: var(--hero-overlay-opacity, 0);
    z-index: 2;
}

/* Lens effect */
#hero-lens {
    position: fixed;
    width: clamp(220px, 22vw, 320px);
    height: clamp(220px, 22vw, 320px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 6;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.25s ease;
    border: var(--hero-lens-border, 0.35px) solid var(--hero-lens-edge, rgba(255,255,255,0.25));
    background: radial-gradient(
        circle,
        var(--hero-lens-core, rgba(255,255,255,0.3)) 0%,
        rgba(255,255,255,0.08) 45%,
        rgba(255,255,255,0) 70%
    );
    box-shadow:
        0 0 var(--hero-lens-glow-size, 28px) var(--hero-lens-glow, rgba(255,255,255,0.18)),
        inset 0 0 var(--hero-lens-inner-size, 16px) var(--hero-lens-inner, rgba(255,255,255,0.16));
    mix-blend-mode: var(--hero-lens-blend, screen);
    backdrop-filter: brightness(var(--hero-lens-brightness, 2.6))
        contrast(var(--hero-lens-contrast, 1.9))
        saturate(var(--hero-lens-saturate, 1.5));
    -webkit-backdrop-filter: brightness(var(--hero-lens-brightness, 2.6))
        contrast(var(--hero-lens-contrast, 1.9))
        saturate(var(--hero-lens-saturate, 1.5));
}

#hero-lens::before {
    content: "";
    position: absolute;
    inset: 7px;
    border-radius: 50%;
    border: var(--hero-lens-ring-width, 0.25px) solid var(--hero-lens-ring, rgba(255,255,255,0.28));
    box-shadow: 0 0 var(--hero-lens-ring-glow-size, 10px) var(--hero-lens-ring-glow, rgba(255,255,255,0.18));
    opacity: 0.9;
    pointer-events: none;
}

#hero-lens::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: inset 0 0 var(--hero-lens-ring-inset, 12px) var(--hero-lens-ring-glow, rgba(255,255,255,0.18));
    pointer-events: none;
}

#hero-lens.is-visible {
    opacity: 1;
}

.hero-parallax-container.is-hidden #hero-lens {
    opacity: 0;
}

@media (hover: none) and (pointer: coarse) {
    .hero-parallax-container.lens-on-intro #hero-lens {
        mix-blend-mode: normal;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* メニューボタン */
#hero-menu-btn {
    position: fixed;
    top: 15px;
    right: 10px;
    z-index: 120;
    background: var(--hero-menu-bg, rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--hero-menu-border, rgba(255, 255, 255, 0.2));
    color: var(--hero-text-color, #ffffff);
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

body.is-quiz-overlay-active #hero-menu-btn {
    z-index: 1302;
}

#hero-menu-btn.is-after-hero {
    background: rgba(255, 255, 255, 0.7) !important;
    border-color: rgba(0, 0, 0, 0.12) !important;
    color: #111111 !important;
    text-shadow: none !important;
}

#hero-menu-btn .menu-toggle-inner {
    gap: 0;
}

#hero-menu-btn .menu-btn-label {
    font-size: 14px;
    font-weight: 700;
}

#hero-menu-btn.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#hero-menu-btn.is-hidden + .hero-menu-panel {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#hero-menu-btn:hover {
    background: var(--hero-menu-bg-hover, rgba(255, 255, 255, 0.25));
    border-color: var(--hero-menu-border-hover, rgba(255, 255, 255, 0.4));
    transform: translateY(-2px);
}

#hero-menu-btn.is-after-hero:hover {
    background: rgba(255, 255, 255, 0.88) !important;
    border-color: rgba(0, 0, 0, 0.16) !important;
}

/* コンテンツコンテナ（950px制限） */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
}

.hero-inner-container {
    max-width: 950px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.hero-panel {
    position: absolute;
    top: 45%;
    left: 24px;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    width: calc(100% - 48px);
    max-width: 950px;
    pointer-events: none;
}

.hero-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
    pointer-events: auto;
}

.hero-panel:not(.active) {
    transform: translateY(-50%) scale(1.02);
}

.hero-story {
    position: relative;
    z-index: 20;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

.hero-story * {
    pointer-events: none;
}

.hero-panel:not([data-era="intro"]) .hero-story {
    max-width: 70%;
    padding: 0 15px;
}

.hero-label {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.15em;
    color: var(--hero-accent, #ff0033);
    margin-bottom: 12px;
}

.hero-title {
    margin: 0 auto 10px; 
}

.hero-title-era,
.hero-subtitle,
.hero-description {
    color: var(--hero-text-color, #ffffff);
    text-shadow: var(--hero-text-shadow, 0 2px 14px rgba(0, 0, 0, 0.45));
}

/* --- Intro Panel --- */
.hero-panel[data-era="intro"] {
    max-width: 950px;
    width: 100%;
    left: 0;
}

.hero-panel[data-era="intro"] .hero-story {
    position: relative;
    width: clamp(300px, 64vw, 590px);
    z-index: 2;

}
.hero-panel[data-era="intro"] .intro-m-window {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%) scale(1);
    width: clamp(190px, 32vw, 340px);
    aspect-ratio: 1 / 1;
    z-index: 1;
    opacity: 0;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: none;
    background: none;
    border: none;
    --intro-lens-x: 50%;
    --intro-lens-y: 50%;
    --intro-lens-radius: 80px;
}

.hero-panel[data-era="intro"] .intro-m-window::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    mask-image: radial-gradient(
        circle var(--intro-lens-radius) at var(--intro-lens-x) var(--intro-lens-y),
        #000 0%,
        #000 98%,
        transparent 100%
    );
    -webkit-mask-image: radial-gradient(
        circle var(--intro-lens-radius) at var(--intro-lens-x) var(--intro-lens-y),
        #000 0%,
        #000 98%,
        transparent 100%
    );
    z-index: 1;
}

.hero-panel[data-era="intro"] .intro-m-window .intro-base-image {
    position: relative;
    z-index: 0;
    filter: none;
    object-fit: contain;
    opacity: 1;
}

.hero-panel[data-era="intro"] .intro-m-window .intro-lens-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    z-index: 2;
    transition: opacity 0.2s ease;
    pointer-events: none;
    mask-image: radial-gradient(
        circle var(--intro-lens-radius) at var(--intro-lens-x) var(--intro-lens-y),
        #000 0%,
        #000 98%,
        transparent 100%
    );
    -webkit-mask-image: radial-gradient(
        circle var(--intro-lens-radius) at var(--intro-lens-x) var(--intro-lens-y),
        #000 0%,
        #000 98%,
        transparent 100%
    );
}

.hero-panel[data-era="intro"] .intro-m-window.is-lensed .intro-lens-image {
    opacity: 1;
}

.hero-panel[data-era="intro"] .intro-m-window.is-lensed::before {
    opacity: 1;
}

.hero-panel.active[data-era="intro"] .intro-m-window {
    transform: translateY(-50%) scale(1);
    box-shadow: none;
}

.hero-panel[data-era="intro"] .intro-m-window:focus,
.hero-panel[data-era="intro"] .intro-m-window:focus-visible,
.hero-panel[data-era="intro"] .intro-m-window:active {
    border: none;
    outline: none;
}

.hero-title-era {
    font-size: clamp(34px, 7vw, 56px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -1px;
    font-family: "Noto Sans JP", sans-serif;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.3vw, 1.7rem);
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--hero-text-color, #ffffff);
}

.hero-description {
    font-size: clamp(13px, 1.6vw, 16px);
    line-height: 1.5;
    opacity: 0.8;
    margin: 0 auto;
}

#history-spacer {
    height: 1000vh;
    background: transparent;
    pointer-events: none;
}

.hero-bottom-nav {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.5s;
    pointer-events: none;
}

/* --- チャット --- */
.hero-chat {
    width: 100%;
    max-width: 800px;
    margin-bottom: 6px;
    display: flex;
    justify-content: center;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

.hero-bubble {
    font-family: "Zen Kurenaido";
    font-size: 14px;
    font-weight: 700;
    color: var(--hero-text-color, #ffffff);
    text-align: center;
    line-height: 1.6;
    letter-spacing: 0.05em;
    padding: 0 10px;
    position: relative;
    min-height: 1.6em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: var(--hero-text-shadow, 0 0 15px rgba(255, 255, 255, 0.3));
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.hero-bubble.is-empty {
    opacity: 0;
}

.hero-scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.6;
}

.hero-hint-text {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.3em;
    color: var(--hero-text-color, #ffffff);
}

.hero-hint-arrow {
    width: 1px;
    height: 25px;
    background: linear-gradient(to bottom, var(--hero-hint-color, rgba(255,255,255,0.9)), transparent);
    animation: hintArrow 2s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes hintArrow {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-nav-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 500px;
    pointer-events: auto;
}

.hero-nav-items {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin-bottom: 6px;
    pointer-events: auto;
}

.hero-nav-item {
    background: none;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--hero-muted-color, rgba(255,255,255,0.4));
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), text-shadow 0.3s ease;
    padding: 8px 10px;
    margin: -4px -10px;
    font-family: inherit;
    position: relative;
    white-space: nowrap;
    transform-origin: bottom center;
    pointer-events: auto;
}

.hero-nav-item.active {
    color: #ff0033;
    transform: scale(1.25);
    text-shadow: 0 0 8px rgba(255, 0, 51, 0.6);
}

.hero-nav-rail {
    width: 90%;
    height: 1px;
    background: var(--hero-rail-color, rgba(255,255,255,0.15));
    position: relative;
    pointer-events: auto;
}

.hero-nav-active-line {
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #ff0033;
    box-shadow: 0 0 8px rgba(255, 0, 51, 0.5);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* メモリーウィンドウ演出 */
.memory-windows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 15;
    transition: opacity 0.8s ease;
}

.m-window {
    position: absolute;
    background: #222;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(var(--hero-accent-rgb, 0, 0, 0), 0.24);
    border: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    transform: scale(0.9) translateY(10px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

.m-window:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 50px rgba(var(--hero-accent-rgb, 255, 0, 51), 0.45);
    border-color: rgba(var(--hero-accent-rgb, 255, 0, 51), 0.5);
    z-index: 50 !important;
}

.hero-panel[data-era="intro"] .intro-m-window:hover {
    transform: translateY(-50%) scale(1);
    box-shadow: none;
    border: none;
    z-index: 1 !important;
}

.hero-panel[data-era="intro"] .intro-m-window.is-lensed {
    z-index: 1;
}

.hero-panel[data-era="intro"] .intro-m-window:hover img {
    filter: none;
}

.m-window img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.35;
    filter: brightness(0.75) contrast(0.9) saturate(0.7);
    transition: filter 0.3s ease, opacity 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

.m-window:hover img {
    filter: brightness(0.9) contrast(1.05) saturate(0.85);
    opacity: 0.5;
}

.m-window.is-lensed img {
    filter: brightness(1.15) contrast(1.25) saturate(1.05);
    opacity: 0.95;
}

.hero-panel[data-era="intro"] .intro-m-window.is-lensed .intro-base-image {
    filter: none;
    opacity: 1;
}

.hero-panel[data-era="intro"] .intro-m-window.is-lensed .intro-lens-image {
    filter: none;
}

.hero-panel.active .m-window {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.win1 { top: -40px; right: 0%; width: clamp(280px, 30vw, 320px); aspect-ratio: 3 / 2; transition-delay: 0.1s; }
.win2 { top: -140px; right: 25%; width: clamp(140px, 16vw, 200px); aspect-ratio: 3 / 2; transition-delay: 0.3s; }
.win3 { top: 240px; right: 20%; width: clamp(170px, 20vw, 260px); aspect-ratio: 3 / 2; transition-delay: 0.5s; }
.win4 { top: 280px; left: 5%; width: clamp(160px, 18vw, 240px); aspect-ratio: 3 / 2; transition-delay: 0.7s; }
.win5 { top: -80px; left: 0; width: clamp(140px, 12vw, 180px); aspect-ratio: 3 / 2; transition-delay: 0.9s; }
.win6 { top: 190px; right: 0; width: clamp(130px, 14vw, 190px); aspect-ratio: 3 / 2; transition-delay: 1.1s; }

@media (max-width: 640px) {
    .hero-inner-container {
        justify-content: center;
    }

    .hero-panel {
        text-align: center;
        width: 100%;
        left: 0;
        top: 45%;
    }

    .hero-panel[data-era="intro"] {
        top: 49%;
    }

    .hero-panel[data-era="intro"] .hero-story {
        width: clamp(320px, 90vw, 600px);
        margin: 0 auto;
    }

    .hero-title img {
        width: 98%;
    }

    .hero-subtitle {
        font-size: clamp(0.8rem, 3.9vw, 1.5rem);
    }
    
    .hero-panel[data-era="intro"] .intro-m-window {
        position: relative;
        top: auto;
        right: auto;
        transform: translateY(20px) scale(0.9);
        margin: 10px auto 0;
        width: clamp(180px, 58vw, 230px);
        z-index: 1;
    }
    
    .hero-panel.active[data-era="intro"] .intro-m-window {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }

    .hero-scroll-hint {
        display: none;
    }

    .hero-nav-inner {
        max-width: 100%;
    }
    .hero-bubble {
        font-size: 12px;
        width: 95%;
    }

    .hero-parallax-container[data-era-current="2026"]::before {
        background-repeat: no-repeat;
        background-size: 140%;
    }

    .hero-nav-item {
        font-size: 13px;
    }
}

@media (max-width: 540px) { 
    #hero-lens {
        width: clamp(150px, 44vw, 190px);
        height: clamp(150px, 44vw, 190px);
    }
    
    #hero-menu-btn {
        width: 42px;
        height: 42px;
        font-size: 13px;
    }
    .hero-panel:not([data-era="intro"]) .hero-story {
        max-width: none;
    }
    .win1 { top: -50px; right: 0; width: 170px; }
    .win2 { top: -170px; width: 110px; }
    .win3 { top: auto; bottom: -150px; right: 29%; }
    .win4 { top: auto; bottom: -20px; left: 0; }
    .win5 { top: -100px; left: 3%; right: auto; }
    .win6 { top: auto; bottom: -40px; right: 5px; } 
    .hero-scroll-hint { display: none; }
}

@media (max-width: 949px) and (max-height: 500px) and (orientation: landscape) {
    .hero-parallax-container[data-era-current="2026"]::before {
        background-size: auto 100%;
        background-position: center top;
    }

    .header-logo {
        width: 60px;
        height: 60px;
    }

    #hero-menu-btn {
        top: 15px;
    }
    
    .hero-panel {
        top: 41%;
    }

    .hero-panel[data-era="intro"] .hero-story {
        margin-left: 10px;
    }

    .hero-title {
        margin: 0 auto 5px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin: 0 0 5px;
    }

    .hero-description {
        line-height: 1.38;
        margin: 0;
    }

    .hero-panel[data-era="intro"] .hero-description {
        margin: 0;
    }

    .hero-panel[data-era="intro"] .intro-m-window {
        position: absolute;
        top: 50%;
        right: 12px;
        transform: translateY(-50%) scale(1);
        margin: 0 20px 0 0;
        width: clamp(140px, 24vw, 220px);
    }

    .hero-panel.active[data-era="intro"] .intro-m-window {
        width: clamp(150px, 28vw, 240px);
        height: auto;
        opacity: 0.95;
        transform: translateY(-50%) scale(1);
    }

    .hero-label {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .hero-title-era {
        font-size: clamp(24px, 5vw, 34px);
        line-height: 1.16;
        margin-bottom: 8px;
    }

    .hero-panel:not([data-era="intro"]) .hero-story {
        max-width: 56%;
        padding: 0 10px 0 12px;
        text-align: left;
    }

    .memory-windows {
        inset: 0;
    }

    .m-window {
        border-radius: 5px;
    }

    .win1 { top: 3%; left: 35%; right: auto; width: clamp(120px, 17vw, 192px); }
    .win2 { top: 30%; left: 62%; right: auto; width: clamp(70px, 9.2vw, 102px); }
    .win3 { top: 5%; left: 75%; right: auto; width: clamp(98px, 13.5vw, 152px); }
    .win4 { top: 56%; left: 83%; right: auto; width: clamp(86px, 12.2vw, 136px); }
    .win5 { top: 88%; left: 65%; right: auto; width: clamp(62px, 8.3vw, 94px); }
    .win6 { top: 85%; left: 40%; right: auto; width: clamp(112px, 15.2vw, 176px); }

    .hero-scroll-hint {
        display: none;
    }

    .hero-bottom-nav {
        bottom: calc(8px + env(safe-area-inset-bottom));
    }

    .hero-chat {
        margin-bottom: 4px;
    }

    .hero-bubble {
        font-size: 10px;
        line-height: 1.3;
    }

    .hero-nav-items {
        margin-bottom: 6px;
    }

    .hero-nav-item {
        font-size: 11px;
        padding: 5px 7px;
        margin: -3px -8px;
    }
}

@media (max-width: 375px) {
    .hero-panel[data-era="intro"] .hero-description {
        margin: 0 25px;
    }
    .win1 { top: -20px; right: 0; width: 150px; }
    .win2 { top: -140px; width: 120px; }
    .win3 { top: auto; bottom: -170px; right: 29%; width: 160px; }
    .win4 { top: auto; bottom: -32px; left: 0; width: 140px; }
    .win5 { top: -30%; left: 3%; right: auto; width: 110px; }
    .win6 { top: auto; bottom: -65px; right: 0; width: 100px; } 
}

@media (prefers-reduced-motion: reduce) {
    #hero-section,
    #hero-section * {
        transition: none !important;
        animation: none !important;
    }

    #hero-canvas {
        display: none;
    }
}

@media (max-width: 374px) {
    .hero-description br {
        display: none;
    }
}