:root {
    --sc-yellow: #fdf903;
    --sc-navy-1: #090192;
    --sc-navy-2: #090269;
    --sc-purple-1: #5f05a8;
    --sc-purple-2: #7875d0;
    --sc-lilac: #a176cf;
    --sc-cloud: #f4f1f5;
    --sc-cream: #f8ed93;
    --sc-black: #000;
    --shadow-sm: 4px 4px 0 rgba(0, 0, 0, .45);
    --shadow-md: 8px 8px 0 rgba(0, 0, 0, .45);
    --shadow-lg: 10px 10px 0 rgba(0, 0, 0, .45);
    --radius-lg: 24px;
    --radius-xl: 32px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: Inter, system-ui, sans-serif;
    color: var(--sc-cloud);
    background-color: var(--sc-navy-2);
    background-image:
        radial-gradient(circle at 15% 20%, rgba(253, 249, 3, .12), transparent 45%),
        radial-gradient(circle at 85% 15%, rgba(120, 117, 208, .18), transparent 40%),
        radial-gradient(circle at 60% 75%, rgba(161, 118, 207, .2), transparent 55%),
        repeating-radial-gradient(circle, rgba(244, 241, 245, .06) 0, transparent 2px),
        linear-gradient(180deg, var(--sc-navy-1), var(--sc-navy-2));
    background-attachment: fixed;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .25;
    background-image:
        radial-gradient(rgba(244, 241, 245, .8) 1px, transparent 1px),
        radial-gradient(rgba(253, 249, 3, .4) 1px, transparent 1px);
    background-size: 180px 180px, 220px 220px;
    animation: star-drift 60s linear infinite;
}

img,
svg,
iframe {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
    image-rendering: pixelated;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Press Start 2P", monospace;
    text-transform: uppercase;
    letter-spacing: .22em;
    line-height: 1.25;
}

p {
    margin: 0;
}

.container,
.section-wrapper {
    width: min(100% - 32px, 1152px);
    margin-inline: auto;
}

.site-shell {
    min-height: 100vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 4px solid var(--sc-black);
    background: rgba(244, 241, 245, .96);
    color: var(--sc-navy-2);
    box-shadow: 0 6px 0 rgba(0, 0, 0, .15);
    backdrop-filter: blur(10px);
}

.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-block: 14px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-logo {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    overflow: hidden;
    display: grid;
    place-items: center;
    border: 3px solid var(--sc-black);
    border-radius: 50%;
    background: var(--sc-yellow);
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.brand-kicker {
    color: var(--sc-purple-2);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .35em;
}

.brand-name {
    font-family: "Press Start 2P", monospace;
    font-size: clamp(.9rem, 2vw, 1.35rem);
    letter-spacing: .28em;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    font-size: .85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .16em;
}

.site-nav a,
.social-links a,
.copy-btn,
.btn-primary,
.btn-secondary {
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.site-nav a:hover,
.social-links a:hover,
.copy-btn:hover,
.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.social-links a {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 3px solid var(--sc-black);
    border-radius: 12px;
    background: var(--sc-cloud);
    color: var(--sc-navy-2);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, .45);
}

.social-links img,
.social-links svg {
    width: 24px;
    height: 24px;
}

.mobile-menu-btn {
    display: none;
    width: 46px;
    height: 42px;
    border: 3px solid var(--sc-black);
    border-radius: 12px;
    background: var(--sc-yellow);
    box-shadow: var(--shadow-sm);
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    margin: 4px 0;
    border-radius: 999px;
    background: var(--sc-navy-2);
}

.hero-section {
    border-bottom: 4px solid var(--sc-black);
    background-image:
        radial-gradient(circle at 20% 20%, rgba(253, 249, 3, .15), transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(120, 117, 208, .2), transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(161, 118, 207, .15), transparent 50%),
        linear-gradient(160deg, var(--sc-navy-1), var(--sc-navy-2));
}

.hero-inner {
    min-height: calc(100vh - 84px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding-block: clamp(48px, 8vw, 96px);
    text-align: center;
}

.eyebrow,
.card-kicker {
    color: var(--sc-cream);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.hero-inner h1 {
    font-size: clamp(2rem, 8vw, 4.8rem);
    color: var(--sc-cloud);
    text-shadow: 0 5px 0 rgba(0, 0, 0, .45);
}

.hero-copy {
    color: rgba(244, 241, 245, .82);
    font-size: clamp(1rem, 2vw, 1.18rem);
}

.media-card,
.video-card,
.content-card,
.gallery-card,
.contract-card {
    border: 4px solid var(--sc-black);
    box-shadow: var(--shadow-md);
}

.media-card,
.video-card,
.gallery-card {
    background: rgba(9, 2, 105, .55);
}

.hero-media {
    width: min(100%, 760px);
    border-radius: var(--radius-xl);
    padding: clamp(14px, 3vw, 24px);
}

.hero-media img {
    width: 100%;
    max-height: 540px;
    object-fit: contain;
}

.contract-card {
    width: min(100%, 680px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-radius: 999px;
    padding: 12px 14px 12px 18px;
    background: var(--sc-cloud);
    color: var(--sc-navy-2);
    text-align: left;
}

.contract-text {
    min-width: 0;
    overflow-wrap: anywhere;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-weight: 700;
    line-height: 1.35;
}

.copy-btn,
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--sc-black);
    border-radius: 999px;
    cursor: pointer;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    box-shadow: 0 6px 0 rgba(0, 0, 0, .45);
}

.copy-btn {
    flex: 0 0 auto;
    padding: 10px 16px;
    border-width: 3px;
    border-radius: 14px;
    background: var(--sc-lilac);
    color: var(--sc-navy-2);
    font-size: .8rem;
}

.copy-status {
    min-height: 20px;
    color: var(--sc-cream);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--sc-yellow);
    color: var(--sc-navy-2);
    padding: 14px 28px;
}

.btn-secondary {
    background: var(--sc-lilac);
    color: var(--sc-navy-2);
    padding: 14px 24px;
}

.section-wrapper {
    display: flex;
    flex-direction: column;
    gap: 34px;
    padding-block: clamp(48px, 8vw, 80px);
}

.video-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    padding: clamp(10px, 2vw, 18px);
}

.video-card iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border: 0;
    border-radius: 22px;
    background: #000;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .9fr);
    gap: 30px;
    align-items: stretch;
}

.content-card {
    border-radius: var(--radius-xl);
    background: var(--sc-cloud);
    color: var(--sc-navy-2);
    padding: clamp(22px, 4vw, 34px);
}

.content-card h2,
.section-heading h2 {
    margin-top: 12px;
    font-size: clamp(1.45rem, 4vw, 2.5rem);
}

.content-card p:not(.card-kicker) {
    margin-top: 22px;
    color: rgba(9, 2, 105, .9);
    font-size: 1rem;
    line-height: 1.75;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.about-image {
    overflow: hidden;
    border-radius: var(--radius-xl);
    padding: 12px;
    background: var(--sc-cloud);
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    border: 4px solid var(--sc-black);
    border-radius: 22px;
}

.section-heading {
    display: grid;
    gap: 14px;
}

.section-heading h2 {
    color: var(--sc-cloud);
}

.section-heading p:last-child {
    max-width: 680px;
    color: var(--sc-lilac);
    font-size: 1rem;
    line-height: 1.7;
}

.gallery-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: clamp(14px, 3vw, 22px);
}

.ticker-bar {
    overflow: hidden;
    border: 3px solid var(--sc-black);
    border-radius: 999px;
    background: var(--sc-cream);
    padding: 10px 0;
}

.ticker-track {
    display: flex;
    width: max-content;
    gap: 24px;
    animation: marquee 14s linear infinite;
    color: var(--sc-navy-2);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .32em;
    text-transform: uppercase;
    white-space: nowrap;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 4px solid var(--sc-black);
    border-radius: var(--radius-lg);
    background: var(--sc-cloud);
}

.site-footer {
    border-top: 4px solid var(--sc-black);
    background: var(--sc-cloud);
    color: var(--sc-navy-2);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-block: 22px;
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .22em;
    text-transform: uppercase;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes star-drift {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-200px, -100px, 0); }
}

@media (max-width: 900px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .mobile-menu-btn {
        display: block;
        order: 3;
    }

    .site-nav {
        order: 5;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding-top: 12px;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        border: 3px solid var(--sc-black);
        border-radius: 14px;
        background: var(--sc-yellow);
        padding: 12px 14px;
        box-shadow: var(--shadow-sm);
        text-align: center;
    }

    .social-links {
        margin-left: auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .container,
    .section-wrapper {
        width: min(100% - 22px, 1152px);
    }

    .header-inner {
        min-height: 76px;
        gap: 10px;
    }

    .brand-logo {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .brand-kicker {
        display: none;
    }

    .brand-name {
        font-size: .82rem;
        letter-spacing: .16em;
        max-width: 155px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        border-width: 2px;
    }

    .mobile-menu-btn {
        width: 42px;
        height: 40px;
        border-width: 2px;
        padding: 7px;
    }

    .hero-inner {
        min-height: auto;
        padding-block: 42px;
        gap: 18px;
    }

    h1,
    h2,
    h3 {
        letter-spacing: .12em;
    }

    .hero-inner h1 {
        font-size: clamp(1.85rem, 12vw, 3rem);
    }

    .media-card,
    .video-card,
    .content-card,
    .gallery-card,
    .contract-card {
        border-width: 3px;
        box-shadow: 5px 5px 0 rgba(0, 0, 0, .45);
    }

    .hero-media,
    .video-card,
    .content-card,
    .gallery-card,
    .about-image {
        border-radius: 20px;
    }

    .contract-card {
        align-items: stretch;
        flex-direction: column;
        border-radius: 22px;
        padding: 14px;
        text-align: center;
    }

    .contract-text {
        font-size: .8rem;
    }

    .copy-btn,
    .btn-primary,
    .btn-secondary {
        width: 100%;
        min-height: 48px;
        padding-inline: 18px;
    }

    .section-wrapper {
        gap: 24px;
        padding-block: 42px;
    }

    .content-card h2,
    .section-heading h2 {
        font-size: 1.35rem;
    }

    .content-card p:not(.card-kicker),
    .section-heading p:last-child {
        font-size: .95rem;
        line-height: 1.68;
    }

    .about-image img {
        min-height: auto;
        aspect-ratio: 1 / 1;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ticker-track {
        font-size: .68rem;
        letter-spacing: .22em;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        letter-spacing: .14em;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}


.sc-music-player {
	width: min(100%, 720px);
	display: flex;
	align-items: center;
	gap: 16px;
	border: 4px solid var(--sc-black);
	border-radius: var(--radius-lg);
	background: var(--sc-cloud);
	color: var(--sc-navy-2);
	padding: 16px;
	box-shadow: var(--shadow-md);
}

.sc-player-btn,
.sc-mute-btn {
	display: grid;
	place-items: center;
	border: 4px solid var(--sc-black);
	background: var(--sc-yellow);
	color: var(--sc-navy-2);
	box-shadow: var(--shadow-sm);
	cursor: pointer;
	transition: transform .15s ease, box-shadow .15s ease;
}

.sc-player-btn {
	width: 58px;
	height: 58px;
	flex: 0 0 58px;
	border-radius: 50%;
}

.sc-mute-btn {
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	border-radius: 14px;
	font-size: 1rem;
}

.sc-player-btn:hover,
.sc-mute-btn:hover {
	transform: translateY(-2px);
}

.sc-player-btn:active,
.sc-mute-btn:active {
	transform: translateY(2px);
	box-shadow: 2px 2px 0 rgba(0,0,0,.45);
}

.sc-play-icon {
	font-size: 1.35rem;
	font-weight: 900;
	margin-left: 3px;
}

.sc-player-main {
	flex: 1;
	min-width: 0;
	display: grid;
	gap: 12px;
}

.sc-player-info {
	min-width: 0;
	display: grid;
	gap: 6px;
}

.sc-player-kicker {
	color: var(--sc-purple-2);
	font-size: .72rem;
	font-weight: 900;
	letter-spacing: .24em;
	text-transform: uppercase;
}

.sc-player-title {
	font-family: "Press Start 2P", monospace;
	font-size: clamp(.82rem, 2vw, 1rem);
	letter-spacing: .12em;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.sc-seek-wrap {
	display: grid;
	grid-template-columns: 42px 1fr 42px;
	align-items: center;
	gap: 10px;
	font-size: .78rem;
	font-weight: 900;
	color: var(--sc-navy-2);
}

.sc-volume-wrap {
	width: 160px;
	display: flex;
	align-items: center;
	gap: 10px;
}

#scSeekBar,
#scVolumeSlider {
	width: 100%;
	height: 10px;
	appearance: none;
	-webkit-appearance: none;
	border: 3px solid var(--sc-black);
	border-radius: 999px;
	background: var(--sc-cream);
	cursor: pointer;
	box-shadow: 2px 2px 0 rgba(0,0,0,.35);
}

#scVolumeSlider {
	height: 9px;
}

#scSeekBar::-webkit-slider-thumb,
#scVolumeSlider::-webkit-slider-thumb {
	appearance: none;
	-webkit-appearance: none;
	width: 18px;
	height: 18px;
	border: 3px solid var(--sc-black);
	border-radius: 50%;
	background: var(--sc-lilac);
}

#scSeekBar::-moz-range-thumb,
#scVolumeSlider::-moz-range-thumb {
	width: 18px;
	height: 18px;
	border: 3px solid var(--sc-black);
	border-radius: 50%;
	background: var(--sc-lilac);
}

@media (max-width: 700px) {
	.sc-music-player {
		align-items: stretch;
		flex-direction: column;
		border-width: 3px;
		border-radius: 20px;
		padding: 14px;
		gap: 14px;
		box-shadow: 5px 5px 0 rgba(0,0,0,.45);
	}

	.sc-player-btn {
		width: 54px;
		height: 54px;
		flex-basis: 54px;
		border-width: 3px;
	}

	.sc-player-main {
		width: 100%;
	}

	.sc-player-title {
		font-size: .72rem;
		letter-spacing: .08em;
	}

	.sc-volume-wrap {
		width: 100%;
	}

	.sc-mute-btn {
		border-width: 3px;
	}

	.sc-seek-wrap {
		grid-template-columns: 38px 1fr 38px;
	}
}


#enterScreen {
	position: fixed;
	inset: 0;
	z-index: 99999;

	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 2rem;

	background:
		radial-gradient(circle at 15% 20%, rgba(253, 249, 3, .12), transparent 45%),
		radial-gradient(circle at 85% 15%, rgba(120, 117, 208, .18), transparent 40%),
		radial-gradient(circle at 60% 75%, rgba(161, 118, 207, .2), transparent 55%),
		repeating-radial-gradient(circle, rgba(244, 241, 245, .06) 0, transparent 2px),
		linear-gradient(180deg, var(--sc-navy-1), var(--sc-navy-2));

	color: var(--sc-cloud);

	transition: opacity .5s ease,
		visibility .5s ease;
}

#enterScreen.hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.enter-logo {
	width: min(280px, 70vw);

	animation: floatLogo 3s ease-in-out infinite;
}

.enter-logo img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.enter-title {
	font-family: "Press Start 2P", monospace;
	font-size: clamp(1.4rem, 5vw, 3rem);
	letter-spacing: .18em;
	text-transform: uppercase;
	text-align: center;
	text-shadow: 0 5px 0 rgba(0,0,0,.45);
}

.enter-subtitle {
	max-width: 500px;
	text-align: center;
	font-size: .95rem;
	line-height: 1.7;
	color: rgba(244,241,245,.8);
}

#enterBtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	padding: 16px 34px;

	border: 4px solid var(--sc-black);
	border-radius: 999px;

	background: var(--sc-yellow);
	color: var(--sc-navy-2);

	font-weight: 900;
	font-size: 1rem;
	letter-spacing: .12em;
	text-transform: uppercase;

	cursor: pointer;

	box-shadow: 0 8px 0 rgba(0,0,0,.45);

	transition:
		transform .15s ease,
		box-shadow .15s ease;
}

#enterBtn:hover {
	transform: translateY(-3px);
}

#enterBtn:active {
	transform: translateY(3px);
	box-shadow: 0 3px 0 rgba(0,0,0,.45);
}

.enter-hint {
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: var(--sc-cream);

	animation: pulseHint 1.5s infinite;
}

@keyframes floatLogo {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-12px);
	}
	100% {
		transform: translateY(0);
	}
}

@keyframes pulseHint {
	0% {
		opacity: .4;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: .4;
	}
}

@media (max-width: 640px) {

	.enter-title {
		font-size: 1.3rem;
		letter-spacing: .12em;
	}

	.enter-subtitle {
		font-size: .85rem;
		padding: 0 1rem;
	}

	#enterBtn {
		width: calc(100% - 2rem);
		max-width: 320px;

		padding: 14px 20px;

		border-width: 3px;

		font-size: .9rem;
	}

}