:root {
    --ratio: 1.6;
    --baseline: calc(var(--ratio) * 1rem);
    --negative-gap: calc((var(--baseline) * -1) + 0.25rem);
    --baseline-x2: calc(var(--baseline) * 2);
    --baseline-x3: calc(var(--baseline) * 3);
    --grid: calc(var(--baseline) / 2);
    --grid-quarter: calc(var(--baseline) / 4);
    --radius: 22px;
    --max-width: 56rem;
    --page-gutter: calc(50vw - (var(--max-width) / 2));
    --color-bkgd: #6D6DC3;
    --color-text: #fff;
    --color-accent: #8b28cd;
    --color-mickey-gold: #ffd217;
    --color-dark-blue: #3387a1;
}
.mando { position: absolute; top:0; left:0; z-index: 0; max-width: 470px;}
.r2d2 { position: absolute; top:0; right:0; z-index: 0; max-width: 443px; }
.characters { height: 235px; }

@media screen and (max-width: 1200px) {
	.mando { width: 320px; }
	.r2d2 { width: 320px; }
	.sw_characters { height: 175px; }
}

@media screen and (max-width: 799px) {
    :root {
        --typescale: 1.333;
    }
}
@media screen and (min-width: 800px) {
    :root {
        --typescale: 1.414;
    }

}
*,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    background-repeat: no-repeat;
}
html {
    font-size: calc(100% + 0.133vw);
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
    height: 100%;
}
:focus:not(:focus-visible) {
    outline: none;
}
img {
    max-width: 100%;
    display: block;
}
@font-face {
    font-family: "Satoshi";
    font-weight: 400 900;
    font-style: normal;
    src:
        url("../fonts/Satoshi-Variable.woff2") format("woff2"),
        url("../fonts/Satoshi-Variable.woff") format("woff");
}
@font-face {
    font-family: "Satoshi";
    font-weight: 400 900;
    font-style: italic;
    src:
        url("../fonts/Satoshi-Variable.woff2") format("woff2"),
        url("../fonts/Satoshi-Variable.woff") format("woff");
}
body {
    font-family: "Satoshi", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-text);
    line-height: var(--ratio);
}
a {
    transition: all 0.2s ease-in-out;
    color: var(--color-mickey-gold);
    text-decoration: none;
}

a:hover {
    transition: all 0.2s ease-in-out;
    color: #ffffff;
    text-decoration: none;
}

h1 {
    font-weight: 800;
    font-size: calc(1rem * var(--typescale) * var(--typescale) * var(--typescale));
    letter-spacing: -0.02rem;
    line-height: 1.2;
    text-wrap: balance;
    text-align: center;
    text-shadow:
        0 1px 0 #7e50b9,
        0 2px 0 #7e50b9;
}
h2 {
    text-shadow:
        0 1px 0 #7e50b9,
        0 2px 0 #7e50b9;
    font-weight: 800;
    font-size: calc(1rem * var(--typescale) * var(--typescale));
    letter-spacing: -0.02rem;
    line-height: 1.2;
    text-wrap: balance;
    text-align: center;
}
h2.summary {
    max-width: 40ch;
    margin-block: var(--baseline);
}
h3 {
    font-weight: 800;
    font-size: calc(1rem * var(--typescale));
    line-height: 1.3;
    text-wrap: balance;
}
* + h3 {
    margin-top: calc(var(--baseline) * 1.5);
}
h3 + * {
    margin-top: var(--grid);
}
h4 + * {
    margin-top: 0;
}
blockquote p {
    font-size: calc(1rem * var(--typescale));
    font-weight: 700;
    line-height: 1.333;
}
blockquote cite {
    font-style: normal;
    display: block;
    margin-top: var(--grid);
    text-align: right;
    font-weight: 900;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700;
}
.fw-800 {
    font-weight: 800;
}
* + * {
    margin-top: var(--baseline);
}
:target {
    scroll-margin-top: var(--baseline-x2);
}
.sr-only {
    left: -9999rem;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    position: absolute;
}
.tm-0 {
    margin-top: 0;
}
.flex {
    display: flex;
    gap: var(--baseline);
}
.flex > * + * {
    margin-top: 0;
}
.grid {
    display: grid;
    gap: var(--baseline);
}
.grid > * + * {
    margin-top: 0;
}
body {
    background-color: var(--color-bkgd);
    background-image: url(/assets/img/Starfield.svg), linear-gradient(180deg, #121436 0, #090D29 60px, var(--color-bkgd) 600px);
}
body.home {
    background-image:  url(/assets/img/Starfield.svg), linear-gradient(180deg, #121436 60px, #4E4E97 400px, var(--color-bkgd) 600px);
    background-attachment: fixed;
    background-position: top center;
    background-repeat: repeat-x;
    background-size: 150%;
}
body.home header h2, body.home header h3, body.home main h2, body.home main h3  { color: #FFF91A; text-shadow: 0 1px 0 #7E50B9, 0 2px 0 #7E50B9 }


nav,
header,
main,
footer {
    margin-top: 0;
    padding-inline: max(var(--baseline), 50vw - var(--max-width) / 2);
}
nav {
    justify-content: space-between;
    padding-block: var(--grid);
    background-color: #282964;
    position: sticky;
    top: 0;
    z-index: 100;
}
nav .logo-desktop {
    display: none;
    margin: 0;
}
nav ul {
    list-style-type: none;
}
nav ul a {
    display: block;
    text-decoration: none;
    font-weight: 700;
    color: var(--color-mickey-gold);
    text-shadow:
        0 1px 0 rgba(0, 0, 0, 0.4),
        0 2px 0 rgba(0, 0, 0, 0.4);
}
nav ul a:hover,
nav ul a :focus {
    color: #fff;
}
.logo {
    width: 100%;
    max-width: 450px;
    display: block;
    margin-bottom: var(--baseline);
}
main {
    padding-block: var(--baseline) var(--baseline-x2);
    background-image: linear-gradient(180deg, rgba(244, 118, 255, 0) 0%, var(--color-bkgd) 30%);
}
header {
    text-align: center;
    position: relative;
    padding-top: var(--baseline);
}
header img {
    display: block;
    margin: auto;
}
header .characters {
    display: grid;
    gap: var(--baseline);
    grid-template-columns: 1fr 3.5fr 1fr;
    height: 100px;
}
header .characters + h1 {
    margin-top: -1.25rem;
}
video {
    display: block;
    width: 100%;
    max-width: 100%;
}
hr {
    border: 0;
    margin-block: var(--baseline-x2);
    position: relative;
    height: 1px;
    background: #fff;
    z-index: 1;
    overflow: visible;
}
hr:before,
hr:after {
    content: "";
    background: #fff;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    top: -2px;
    z-index: 2;
}
hr:before {
    left: -2px;
}
hr:after {
    right: -2px;
}
figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
figure.tile {
    overflow: hidden;
}
.tile {
    background: #fff;
    box-shadow: 0 9px 0 #cecece;
    border: var(--grid) solid #fff;
    border-radius: var(--radius);
}
figure.panel {
    overflow: hidden;
}
.panel {
    background: #fff;
    box-shadow: 0 9px 0 #cecece;
    border: 1px solid #fff;
    border-radius: var(--radius);
}

.group {
    display: block;
    margin-inline: auto;
    margin-top: 0 !important;
}
#about {
    text-shadow:
        0 1px 0 #7e50b9,
        0 2px 0 #7e50b9;
	background-image: url(/assets/img/Starfield.svg),linear-gradient(180deg, #f476ff 60px, var(--color-bkgd) 600px);
	spadding: var(--baseline-x2) 0;
	position: relative;
	margin-top: 0 !important;
}
#about > * + * {
    margin-top: var(--baseline-x2);
}
.stack {
    margin-block: var(--baseline-x2);
}
.stack ul {
    list-style-type: none;
}
.quotes {
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}
.quotes blockquote {
    height: 100%;
    color: var(--color-dark-blue);
    padding: var(--baseline);
}
.logos-icons a {
    color: #fff;
}
.logos-icons .logo-icon figure {
    background-color: rgba(250, 250, 250, 0.3);
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 5/3;
}
.logos-icons .logo-icon figure.logo-item img {
    object-fit: cover;
}
.logos-icons .logo-icon figure.icon-item {
    padding: var(--grid);
}
.logos-icons .logo-icon figure.icon-item img {
    object-fit: contain;
}
.logos-icons .logo-icon figure img {
    object-position: center center;
}
.logos-icons .logo-icon .flex {
    margin-top: 0.5rem;
    justify-content: space-between;
}
footer {
    background: linear-gradient(180deg, #282964 0%, #3F4097 100%);
    padding-block: var(--baseline-x2);
    text-align: center;
    text-shadow:
        0 1px 0 rgba(0, 0, 0, 0.4),
        0 2px 0 rgba(0, 0, 0, 0.4);
    font-weight: 700;
    font-size: 0.875rem;
}
footer svg {
    margin-inline: var(--baseline);
}
@media screen and (max-width: 699px) {
.mando, .r2d2 { display: none; }
	.grid div { text-align: center; }
	img { display: inline; }

	.characters { display: none; }
    .stage, .tinkerbell, .lackeys, .buzz {
        display: none;
    }
    .main-nav {
        flex-wrap: wrap;
        gap: 0;
    }
    .main-nav #menu-toggle {
        display: none;
    }
    .main-nav .menu-icon {
        width: 32px;
        height: 51px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }
    .main-nav .menu-icon svg {
        width: 40px;
        height: 40px;
    }
    .main-nav .menu-icon svg path {
        stroke: #fff;
        stroke-width: 3;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: all 0.3s ease-in-out;
    }
    .main-nav .menu-icon svg .top {
        stroke-dasharray: 12 6;
        stroke-dashoffset: 6;
    }
    .main-nav .menu-icon svg .middle {
        stroke-dasharray: 24 6;
        stroke-dashoffset: 0;
    }
    .main-nav .menu-icon svg .bottom {
        stroke-dasharray: 16 6;
        stroke-dashoffset: 4;
    }
    .main-nav .menu-icon:hover svg .top {
        stroke-dasharray: 14 6;
        stroke-dashoffset: 0;
    }
    .main-nav .menu-icon:hover svg .middle {
        stroke-dashoffset: 22;
    }
    .main-nav .menu-icon:hover svg .bottom {
        stroke-dasharray: 24 6;
        stroke-dashoffset: 0;
    }
    .main-nav ul {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: var(--grid);
        font-size: calc(1rem * var(--typescale));
        width: 100%;
        max-height: 0;
        height: 0;
        overflow: hidden;
        transition: all 0.2s ease-in-out;
    }
    .main-nav #menu-toggle:checked ~ ul {
        height: auto;
        max-height: 400px;
        overflow: visible;
        padding-bottom: var(--baseline);
    }
    .arcade-badge {
        max-width: 40vw;
        margin-inline: auto;
    }
}
@media screen and (min-width: 700px) {
    .main-nav {
        align-items: center;
    }
    .main-nav .logo-desktop {
        display: block;
    }
    .main-nav .logo-mobile {
        display: none;
    }
    .main-nav .menu-icon,
    .main-nav #menu-toggle {
        display: none;
    }
    .arcade-badge {
        max-width: 10rem;
        margin-inline: auto;
    }
    header {
        position: relative;
        padding-block: var(--baseline) var(--baseline-x2);
        overflow-x: hidden;
        margin-inline: -8rem;
        transition: margin-inline 0.2s ease-in-out;
    }
    #about .characters {
        display: block;
        height: auto;
    }
    #about .lackeys {
        width: 350px;
        height: auto;
        margin-inline: auto;
    }
    #about .buzz,
    #about .tinkerbell {
        position: absolute;
        display: block;
        top: 10%;
        left: 50%;
        height: 100px;
        transition: 0.2s ease-in-out;
        z-index: 2;
    }
    #about .tinkerbell {
        margin-left: -320px;
    }
    #about .buzz {
        margin-left: 250px;
    }
    header h1,
    header .arcade-badge {
        z-index: 10;
    }
    .grid.col-2 {
        grid-template-columns: 1fr 1fr;
        gap: var(--baseline-x3);
    }
    .grid.col-3 {
        grid-template-columns: 1fr 1fr 1fr;
        gap: var(--baseline-x3);
    }
    .grid.press {
        grid-template-columns: 1fr 3fr;
        gap: var(--baseline-x3);
    }
    .grid.press .side {
        order: -1;
    }
}
@media screen and (min-width: 900px) {
    header {
        margin-inline: -4rem;
    }
}
@media screen and (min-width: 1000px) {
    header {
        margin-inline: 0;
    }
    header .tinkerbell {
        margin-left: -380px;
    }
    header .buzz {
        margin-left: 290px;
    }
}
:root {
    --rotateY-start: 20deg;
    --rotateY-end: 30deg;
    --rotateX-start: 60deg;
    --rotateX-end: 30deg;
    --tile-size: 48px;
}
.stage {
    -webkit-perspective: 900px;
    -webkit-perspective-origin: 50% -340px;
    width: var(--tile-size);
    height: var(--tile-size);
    z-index: 1;
    position: absolute;
}
.stage * {
    margin: 0;
}
.stage .tile-3d {
    animation: rotate 12s infinite ease-in-out;
    transform-style: preserve-3d;
}
.stage .tile-3d.purple > div {
    background-color: #262262;
}
.stage .tile-3d.purple > div.front {
    background-color: #6c0b95;
    background-image: url(../img/Tile_Starfield.svg),
        radial-gradient(45% 45% at 4% 100%, #ba05cd 0%, rgba(186, 5, 205, 0) 100%),
        radial-gradient(62% 45% at 100% -4%, #ba05cd 0%, rgba(186, 5, 205, 0) 100%);
    background-position: center center;
}
.stage .tile-3d.red > div {
    background: #7f1713;
}
.stage .tile-3d.red > div.front {
    background: #fe625f;
}
.stage .tile-3d.blue > div {
    background: #01638d;
}
.stage .tile-3d.blue > div.front {
    background: #56befd;
}
.stage .tile-3d > div {
    display: block;
    position: absolute;
    width: var(--tile-size);
    height: var(--tile-size);
    transform-origin: 50% 50% 0;
    border-radius: calc(var(--tile-size) / 6);
}
.stage .tile-3d > div.front {
    transform: translateZ(0);
    color: #fff;
}
.stage .tile-3d > div.front .letter {
    line-height: var(--tile-size);
    position: absolute;
    inset: 0;
    height: 100%;
    text-align: center;
    z-index: 1;
    font-weight: 800;
    font-size: calc(var(--tile-size) / 1.5);
}
.stage .tile-3d > div.front .points {
    position: absolute;
    top: calc(var(--tile-size) / 12);
    right: calc(var(--tile-size) / 12);
    z-index: 2;
    font-weight: 600;
    font-size: calc(var(--tile-size) / 5);
}
.stage .tile-3d > div.l5 {
    transform: rotateY(180deg) translateZ(calc(var(--tile-size) / 6));
}
.stage .tile-3d > div.l4 {
    transform: rotateY(180deg) translateZ(calc(var(--tile-size) / 8));
}
.stage .tile-3d > div.l3 {
    transform: rotateY(180deg) translateZ(calc(var(--tile-size) / 12));
}
.stage .tile-3d > div.l2 {
    transform: rotateY(180deg) translateZ(calc(var(--tile-size) / 24));
}
.stage .tile-3d > div.l1 {
    transform: rotateY(180deg) translateZ(0px);
}
.stack {
    position: relative;
}
.stack button {
    -webkit-appearance: none;
    background-color: #9509b1;
    box-shadow: 0 5px 0 #262263;
    border-radius: 8px;
    color: #fff;
    border: 0;
    width: var(--tile-size);
    height: var(--tile-size);
    cursor: pointer;
    position: absolute;
    top: 145px;
    z-index: 20;
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-in-out;
}
.stack button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 0 #262263,
        0 0 30px rgba(255, 255, 255, 0.6);
}
.stack button:active {
    transform: translateY(4px);
    box-shadow:
        0 2px 0 #262263,
        0 0 30px rgba(255, 255, 255, 0.8);
}
.stack button.button_left {
    left: 0;
    margin-left: -50px;
}
.stack button.button_left svg {
    margin-left: -2px;
}
.stack button.button_right {
    right: 0;
    margin-right: -50px;
}
.stack button.button_right svg {
    margin-right: -2px;
}
.stack ul {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 0;
    list-style-type: none;
}
.stack ul li {
    margin-top: 0;
    cursor: pointer;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: #fff;
    box-shadow:
        0 9px 0 #cecece,
        0 2px 8px 0px rgba(0, 0, 0, 0.3),
        0 6px 18px 0px rgba(0, 0, 0, 0.15);
    list-style: none;
    border: var(--grid) solid #fff;
    position: absolute;
    left: 50%;
    transition: 0.5s ease transform;
}
.stack ul li img {
    position: relative;
    display: block;
    max-width: 100%;
    height: auto;
    z-index: 4;
}
.stack ul li:after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.stack ul li.active {
    cursor: default;
    box-shadow:
        0 9px 0 #cecece,
        0 2px 14px 0px rgba(0, 0, 0, 0.5),
        0 40px 40px 0px rgba(0, 0, 0, 0.2);
    transition: 0.5s ease transform;
}
.stack ul li.active:after {
    display: none;
} /*# sourceMappingURL=styles.css.map */

@media screen and (min-width: 700px) {
	.grid.col-3 {
	grid-template-columns: 1fr 1fr 1fr;
	}
	.grid.col-3 .tile {
		margin-top: 3em;
	}
}
.caption {
margin-top: 0;
font-style: italic;
text-align: center;
}
