/* =========================================================
   SODA.LOL — OLD SCHOOL / MEME / BLOCKY THEME
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    color: #303030;

    font-family:
        Arial,
        Tahoma,
        Verdana,
        sans-serif;

    font-size: 15px;

    background-color: #79aeca;

    background-image:
        linear-gradient(
            rgba(255,255,255,.22),
            rgba(255,255,255,.22)
        ),
        url("assets/background/roblox-bg-1.jpg");

    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

body::after {
    content: "";

    position: fixed;

    inset: 0;

    pointer-events: none;

    z-index: 999;

    opacity: .08;

    background:
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 3px,
            #fff 4px
        );
}

a {
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
}

.container {
    width: 1080px;
    max-width: calc(100% - 30px);

    margin: 0 auto;
}


/* =========================================================
   TOP STRIPE
========================================================= */

.top-stripe {
    height: 8px;

    display: flex;

    overflow: hidden;

    border-bottom: 2px solid #333;
}

.stripe-block {
    flex: 1;
}

.block-1 {
    background: #67bd8b;
}

.block-2 {
    background: #5599c4;
}

.block-3 {
    background: #f2c85b;
}

.block-4 {
    background: #df7f9e;
}

.block-5 {
    background: #67bd8b;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    background: rgba(255,255,255,.97);

    border-bottom: 3px solid #333;

    box-shadow:
        0 3px 0 rgba(0,0,0,.12);
}

.header-inner {
    min-height: 78px;

    display: flex;

    align-items: center;

    gap: 22px;
}

.brand {
    display: flex;

    align-items: center;

    gap: 9px;

    text-decoration: none;
}

.brand-cube {
    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #245338;

    background: #9de4b6;

    border: 3px solid #333;

    box-shadow:
        4px 4px 0 #333;

    font-size: 25px;
    font-weight: 1000;

    transform: rotate(-3deg);
}

.brand-text {
    font-size: 30px;

    font-weight: 1000;

    letter-spacing: -2px;
}

.brand-text strong {
    color: #333;
}

.brand-text span {
    color: #62b985;
}

.main-nav {
    flex: 1;

    display: flex;

    align-self: stretch;

    align-items: center;

    gap: 4px;
}

.main-nav a {
    padding: 10px 11px;

    color: #555;

    text-decoration: none;

    font-size: 11px;
    font-weight: 1000;

    border: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
    color: white;

    background: #347eb6;

    border-color: #333;

    box-shadow:
        3px 3px 0 #333;

    transform: translate(-1px,-1px);
}

.header-badge {
    padding: 8px 10px;

    background: #e1f5e8;

    border: 2px solid #43895e;

    color: #36734d;

    font-size: 10px;
    font-weight: 1000;

    white-space: nowrap;
}

.green-dot {
    display: inline-block;

    width: 8px;
    height: 8px;

    margin-right: 5px;

    border-radius: 50%;

    background: #56b97b;
}


/* =========================================================
   ANNOUNCEMENT
========================================================= */

.announcement {
    color: white;

    background: #347fb6;

    border-bottom: 3px solid #333;

    box-shadow:
        inset 0 -2px rgba(0,0,0,.12);
}

.announcement-inner {
    min-height: 34px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    font-size: 11px;
    font-weight: 1000;
}

.announcement-right {
    opacity: .8;

    font-size: 10px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    overflow: hidden;

    padding: 70px 0 65px;

    background:
        rgba(239,242,238,.94);

    border-bottom: 4px solid #333;
}

.hero-grid {
    position: relative;

    display: grid;

    grid-template-columns: 43% 57%;

    gap: 25px;

    align-items: center;
}

.hero-copy {
    position: relative;

    z-index: 3;
}

.hero-sticker {
    display: inline-block;

    padding: 7px 10px;

    color: #684f16;

    background: #ffe58b;

    border: 3px solid #333;

    box-shadow:
        4px 4px 0 #333;

    font-size: 10px;
    font-weight: 1000;

    transform: rotate(-2deg);
}

.hero h1 {
    margin: 22px 0 12px;

    font-size: 68px;

    line-height: .82;

    letter-spacing: -5px;

    font-weight: 1000;

    text-shadow:
        4px 4px 0 white;
}

.hero h1 span {
    display: block;

    color: #56b985;

    text-shadow:
        4px 4px 0 #333;
}

.hero-subtitle {
    display: inline-block;

    margin-top: 13px;

    padding: 6px 9px;

    color: white;

    background: #df7d9b;

    border: 3px solid #333;

    box-shadow:
        4px 4px 0 #333;

    font-size: 15px;
    font-weight: 1000;

    transform: rotate(1deg);
}

.hero-description {
    max-width: 460px;

    margin: 20px 0;

    color: #5e5e5e;

    font-size: 15px;

    line-height: 1.65;
}

.hero-description strong {
    color: #347eb6;
}

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin: 25px 0;
}

.big-button {
    display: inline-block;

    padding: 14px 19px;

    text-decoration: none;

    border: 3px solid #333;

    box-shadow:
        5px 5px 0 #333;

    font-size: 13px;

    font-weight: 1000;

    transition:
        transform .08s,
        box-shadow .08s;
}

.big-button:hover {
    transform:
        translate(-2px,-2px);

    box-shadow:
        7px 7px 0 #333;
}

.big-button:active {
    transform:
        translate(4px,4px);

    box-shadow:
        1px 1px 0 #333;
}

.green-button {
    color: #245334;

    background:
        linear-gradient(
            #bff1cf,
            #83d5a1
        );
}

.blue-button {
    color: white;

    background:
        linear-gradient(
            #61a4d1,
            #3279ae
        );
}

.hero-mini-stats {
    display: flex;

    gap: 8px;

    margin-top: 24px;
}

.hero-mini-stats div {
    min-width: 85px;

    padding: 9px;

    text-align: center;

    background: white;

    border: 2px solid #333;

    box-shadow:
        3px 3px 0 #333;
}

.hero-mini-stats strong {
    display: block;

    font-size: 20px;

    color: #347fb6;
}

.hero-mini-stats span {
    display: block;

    margin-top: 2px;

    font-size: 8px;

    font-weight: 1000;

    color: #777;
}

.hero-status {
    margin-top: 17px;

    color: #777;

    font-size: 10px;
    font-weight: bold;
}

.status-dot {
    display: inline-block;

    width: 9px;
    height: 9px;

    margin-right: 5px;

    border-radius: 50%;

    background: #59b87b;

    box-shadow:
        0 0 0 3px #d5f1df;
}


/* =========================================================
   HERO DECORATIONS
========================================================= */

.hero-cloud {
    position: absolute;

    color: white;

    opacity: .55;

    font-size: 80px;
}

.cloud-one {
    top: 25px;
    left: 5%;
}

.cloud-two {
    bottom: 15px;
    right: 4%;
}

.hero-star {
    position: absolute;

    color: #efc653;

    font-size: 35px;

    text-shadow:
        2px 2px 0 #333;
}

.star-one {
    top: 90px;
    right: 4%;
}

.star-two {
    bottom: 45px;
    left: 48%;
}


/* =========================================================
   EXECUTOR MOCKUP
========================================================= */

.executor-scene {
    position: relative;

    padding: 12px;

    z-index: 4;
}

.executor-window {
    position: relative;

    overflow: hidden;

    background: #f3f3f3;

    border: 3px solid #333;

    box-shadow:
        7px 7px 0 #333;

    transform: rotate(.5deg);

    transition:
        transform .2s;
}

.executor-window:hover {
    transform:
        rotate(0deg)
        translateY(-4px);
}

.executor-titlebar {
    height: 39px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 8px;

    color: white;

    background:
        linear-gradient(
            #4c95c8,
            #286c9f
        );

    border-bottom: 3px solid #333;

    font-size: 12px;
    font-weight: 1000;
}

.window-brand {
    display: flex;

    align-items: center;

    gap: 8px;
}

.tiny-logo {
    width: 24px;
    height: 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #245334;

    background: #a2e6b9;

    border: 2px solid #333;

    font-weight: 1000;
}

.window-controls {
    display: flex;

    gap: 3px;
}

.window-controls button {
    width: 23px;
    height: 21px;

    color: white;

    background: #3d82b3;

    border: 2px solid #333;

    font-size: 10px;
    font-weight: bold;
}

.executor-menu {
    height: 30px;

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 0 10px;

    background:
        linear-gradient(
            #fff,
            #dedede
        );

    border-bottom: 2px solid #aaa;

    color: #555;

    font-size: 10px;
    font-weight: bold;
}

.executor-content {
    display: flex;

    min-height: 335px;
}

.executor-sidebar {
    width: 130px;

    flex-shrink: 0;

    display: flex;

    flex-direction: column;

    background: #e2e2e2;

    border-right: 2px solid #aaa;
}

.sidebar-logo {
    padding: 15px 12px;

    font-size: 20px;

    font-weight: 1000;

    letter-spacing: -1px;

    border-bottom: 2px solid #c1c1c1;
}

.sidebar-item {
    display: flex;

    align-items: center;

    gap: 9px;

    padding: 11px 10px;

    color: #555;

    background: transparent;

    border: 0;
    border-bottom: 1px solid #c7c7c7;

    text-align: left;

    font-size: 10px;
    font-weight: 1000;
}

.sidebar-item b {
    width: 16px;

    color: #347eb6;

    text-align: center;
}

.sidebar-item:hover,
.sidebar-item.active {
    color: #245675;

    background: #cce5f5;

    border-left: 4px solid #347eb6;

    padding-left: 6px;
}

.sidebar-status {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: auto;

    padding: 10px;

    background: #d4d4d4;

    border-top: 2px solid #bbb;
}

.sidebar-status > span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #55b97b;
}

.sidebar-status strong {
    display: block;

    color: #43845b;

    font-size: 8px;
}

.sidebar-status small {
    display: block;

    margin-top: 2px;

    color: #777;

    font-size: 7px;
}

.executor-main {
    flex: 1;

    min-width: 0;

    display: flex;

    flex-direction: column;

    background: white;
}

.editor-tabs {
    height: 32px;

    display: flex;

    align-items: stretch;

    background: #d9d9d9;

    border-bottom: 2px solid #aaa;
}

.editor-tab {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 0 12px;

    background: #cecece;

    border-right: 1px solid #aaa;

    color: #777;

    font-size: 9px;
}

.editor-tab.active {
    background: white;

    border-top: 3px solid #66bf8b;

    color: #333;

    font-weight: bold;
}

.editor-tab span {
    color: #aaa;
}

.new-tab {
    padding: 8px 12px;

    font-size: 14px;
}

.code-area {
    min-height: 170px;

    display: flex;

    background: #fbfbfb;

    font-family:
        "Courier New",
        monospace;

    font-size: 10px;

    line-height: 1.9;
}

.line-numbers {
    width: 38px;

    flex-shrink: 0;

    padding: 8px;

    text-align: right;

    color: #aaa;

    background: #eeeeee;

    border-right: 1px solid #d0d0d0;
}

.code {
    padding: 8px 10px;

    white-space: nowrap;
}

.purple {
    color: #975bb4;
}

.blue {
    color: #347bb2;
}

.yellow {
    color: #ae7921;
}

.green {
    color: #43a46a;
}

.comment {
    color: #82958a;
}

.executor-buttons {
    display: flex;

    gap: 5px;

    padding: 7px;

    background: #e2e2e2;

    border-top: 2px solid #aaa;

    border-bottom: 2px solid #aaa;
}

.execute-button,
.small-button {
    padding: 8px 12px;

    border: 2px solid #333;

    font-size: 9px;
    font-weight: 1000;
}

.execute-button {
    color: #1d4f31;

    background:
        linear-gradient(
            #c2f3d1,
            #7fd09c
        );

    box-shadow:
        2px 2px 0 #333;
}

.small-button {
    color: #555;

    background:
        linear-gradient(
            #fff,
            #d2d2d2
        );
}

.console {
    flex: 1;

    min-height: 90px;

    color: #c3c3c3;

    background: #222;

    font-family:
        "Courier New",
        monospace;

    font-size: 9px;
}

.console-title {
    padding: 6px 8px;

    color: white;

    background: #353535;

    border-bottom: 1px solid #555;

    font-family: Arial, sans-serif;

    font-size: 8px;
    font-weight: 1000;
}

.console-line {
    padding: 3px 8px;
}

.console-line span {
    color: #6dc18e;
}

.console-line.success {
    color: #a6dbb9;
}

.executor-statusbar {
    height: 23px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 8px;

    background: #d5d5d5;

    border-top: 2px solid #aaa;

    color: #666;

    font-size: 8px;
    font-weight: bold;
}


/* =========================================================
   FLOATING STICKERS
========================================================= */

.floating-sticker {
    position: absolute;

    z-index: 20;

    padding: 8px 10px;

    color: #333;

    background: #ffe57d;

    border: 3px solid #333;

    box-shadow:
        4px 4px 0 #333;

    font-size: 11px;
    font-weight: 1000;
}

.sticker-top {
    top: -5px;
    right: -100px;

    transform: rotate(7deg);
}

.sticker-right {
    right: -370px;
    top: 90%;

    color: white;

    background: #df7e9c;

    transform: rotate(8deg);
}

.sticker-bottom {
    bottom: -12px;
    left: 10px;

    background: #9ee2b6;

    transform: rotate(-5deg);
}


/* =========================================================
   MEME BANNER
========================================================= */

.meme-banner {
    background: #ffe37d;

    border-bottom: 4px solid #333;
}

.meme-banner-inner {
    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.meme-big {
    font-size: 20px;

    font-weight: 1000;

    text-shadow:
        2px 2px white;
}

.meme-small {
    font-size: 11px;

    font-weight: bold;

    color: #775f24;
}


/* =========================================================
   SECTION TITLE
========================================================= */

.section-title {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 25px;
}

.section-number {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: white;

    background: #347fb6;

    border: 3px solid #333;

    box-shadow:
        4px 4px 0 #333;

    font-size: 16px;
    font-weight: 1000;
}

.section-title h2 {
    margin: 0;

    font-size: 31px;

    line-height: 1;

    letter-spacing: -1px;

    font-weight: 1000;
}

.section-title p {
    margin: 5px 0 0;

    color: #777;

    font-size: 11px;
    font-weight: 1000;
}


/* =========================================================
   FEATURES
========================================================= */

.features-section {
    padding: 58px 0;

    background: rgba(244,244,244,.95);

    border-bottom: 4px solid #333;
}

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 13px;
}

.feature-card {
    position: relative;

    min-height: 255px;

    padding: 20px;

    overflow: hidden;

    background: white;

    border: 3px solid #333;

    box-shadow:
        6px 6px 0 #333;

    transition:
        transform .12s;
}

.feature-card:hover {
    transform:
        translateY(-7px)
        rotate(1deg);
}

.card-green {
    background: #effcf3;
}

.card-blue {
    background: #eef7fd;
}

.card-yellow {
    background: #fff9df;
}

.card-pink {
    background: #fff0f5;
}

.feature-top {
    display: flex;

    align-items: center;

    justify-content: space-between;
}

.feature-icon {
    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: white;

    border: 3px solid #333;

    font-size: 25px;
}

.feature-badge {
    padding: 5px 7px;

    background: white;

    border: 2px solid #333;

    font-size: 8px;
    font-weight: 1000;
}

.feature-card h3 {
    margin: 18px 0 8px;

    font-size: 18px;

    font-weight: 1000;
}

.feature-card p {
    margin: 0;

    color: #666;

    font-size: 13px;

    line-height: 1.55;
}

.feature-number {
    position: absolute;

    right: -5px;
    bottom: -15px;

    color: rgba(0,0,0,.06);

    font-size: 100px;

    font-weight: 1000;
}


/* =========================================================
   FUN ZONE
========================================================= */

.fun-zone {
    padding: 58px 0;

    background: #ffeaa7;

    border-bottom: 4px solid #333;
}

.fun-title {
    margin-bottom: 28px;

    text-align: center;

    font-size: 31px;

    font-weight: 1000;

    letter-spacing: -1px;

    text-shadow:
        3px 3px white;
}

.fun-title span {
    display: inline-block;

    transform: rotate(-8deg);
}

.fun-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 13px;
}

.fun-card {
    min-height: 190px;

    padding: 22px;

    background: white;

    border: 3px solid #333;

    box-shadow:
        6px 6px 0 #333;

    transition:
        transform .12s;
}

.fun-card:nth-child(2) {
    transform: rotate(1deg);
}

.fun-card:nth-child(3) {
    transform: rotate(-1deg);
}

.fun-card:nth-child(4) {
    transform: rotate(2deg);
}

.fun-card:hover {
    transform:
        translateY(-8px)
        rotate(0);
}

.fun-emoji {
    font-size: 45px;

    margin-bottom: 9px;
}

.fun-card h3 {
    margin: 0 0 7px;

    font-size: 17px;

    font-weight: 1000;
}

.fun-card p {
    margin: 0;

    color: #666;

    font-size: 13px;

    line-height: 1.5;
}


/* =========================================================
   RESOURCES
========================================================= */

.resources-section {
    padding: 58px 0;

    background: rgba(232,232,232,.95);

    border-bottom: 4px solid #333;
}

.resource-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 15px;
}

.resource-card {
    padding: 22px;

    background: white;

    border: 3px solid #333;

    box-shadow:
        6px 6px 0 #333;
}

.resource-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: white;

    border: 3px solid #333;

    font-size: 26px;

    font-weight: 1000;
}

.resource-icon.api {
    background: #4c94c2;
}

.resource-icon.docs {
    background: #64b785;
}

.resource-icon.sunc {
    background: #d69c51;
}

.resource-label {
    margin-top: 15px;

    color: #888;

    font-size: 9px;
    font-weight: 1000;
}

.resource-card h3 {
    margin: 4px 0 8px;

    font-size: 22px;

    font-weight: 1000;
}

.resource-card p {
    min-height: 65px;

    margin: 0;

    color: #666;

    font-size: 13px;

    line-height: 1.55;
}

.code-box {
    margin: 15px 0;

    padding: 10px;

    color: #ddd;

    background: #252525;

    border: 3px solid #333;

    font-family:
        "Courier New",
        monospace;

    font-size: 10px;
}

.test-box {
    margin: 15px 0;

    padding: 7px;

    background: #eeeeee;

    border: 2px solid #aaa;
}

.test-box div {
    display: flex;

    justify-content: space-between;

    padding: 5px;

    border-bottom: 1px solid #d0d0d0;

    font-size: 10px;
}

.test-box div:last-child {
    border-bottom: 0;
}

.test-box strong {
    color: #49a66d;
}

.resource-button {
    width: 100%;

    padding: 11px;

    color: white;

    border: 3px solid #333;

    box-shadow:
        3px 3px 0 #333;

    font-size: 11px;
    font-weight: 1000;
}

.blue-resource {
    background: #438dbb;
}

.green-resource {
    background: #64b684;
}

.orange-resource {
    background: #d49b51;
}

.resource-button:active {
    transform:
        translate(3px,3px);

    box-shadow:
        0 0 0 #333;
}


/* =========================================================
   STATS
========================================================= */

.stats-section {
    padding: 50px 0;

    background: #347fb6;

    border-bottom: 4px solid #333;
}

.stats-title {
    margin-bottom: 22px;

    color: white;

    text-align: center;

    font-size: 27px;

    font-weight: 1000;

    text-shadow:
        3px 3px #245c83;
}

.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 12px;
}

.stat-box {
    padding: 22px 12px;

    text-align: center;

    background: white;

    border: 3px solid #333;

    box-shadow:
        5px 5px 0 #333;
}

.stat-box strong {
    display: block;

    color: #55b580;

    font-size: 32px;

    font-weight: 1000;
}

.stat-box span {
    display: block;

    margin-top: 4px;

    color: #777;

    font-size: 9px;

    font-weight: 1000;
}


/* =========================================================
   STATUS
========================================================= */

.status-section {
    padding: 40px 0;

    background: rgba(244,244,244,.95);

    border-bottom: 4px solid #333;
}

.status-card {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 20px;

    background: white;

    border: 3px solid #333;

    box-shadow:
        5px 5px 0 #333;
}

.status-main {
    display: flex;

    align-items: center;

    gap: 13px;
}

.status-check {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: white;

    background: #64b986;

    border: 3px solid #333;

    font-size: 30px;
    font-weight: 1000;
}

.status-label {
    color: #62a478;

    font-size: 9px;
    font-weight: 1000;
}

.status-main h2 {
    margin: 4px 0;

    font-size: 22px;

    font-weight: 1000;
}

.status-main p {
    margin: 0;

    color: #777;

    font-size: 11px;
}

.status-services {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}

.status-services div {
    font-size: 9px;

    font-weight: 1000;

    color: #666;
}

.status-services span {
    display: inline-block;

    width: 8px;
    height: 8px;

    margin-right: 4px;

    border-radius: 50%;

    background: #55b97a;
}


/* =========================================================
   CHANGELOG
========================================================= */

.changelog-section {
    padding: 58px 0;

    background: rgba(232,232,232,.95);

    border-bottom: 4px solid #333;
}

.changelog {
    background: white;

    border: 3px solid #333;

    box-shadow:
        6px 6px 0 #333;
}

.change {
    display: grid;

    grid-template-columns:
        70px 1fr 90px;

    gap: 15px;

    align-items: center;

    padding: 18px;

    border-bottom: 2px solid #ddd;
}

.change:last-child {
    border-bottom: 0;
}

.change-version {
    padding: 8px;

    color: white;

    background: #347fb6;

    border: 2px solid #333;

    text-align: center;

    font-size: 12px;
    font-weight: 1000;
}

.change-content h3 {
    margin: 0 0 4px;

    font-size: 15px;

    font-weight: 1000;
}

.change-content p {
    margin: 0;

    color: #777;

    font-size: 11px;

    line-height: 1.5;
}

.change-date {
    color: #999;

    text-align: right;

    font-size: 9px;
    font-weight: 1000;
}


/* =========================================================
   DOWNLOAD
========================================================= */

.download-section {
    padding: 55px 0;

    color: white;

    background:
        linear-gradient(
            135deg,
            #347fb6,
            #286995
        );

    border-bottom: 4px solid #333;
}

.download-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;
}

.download-sticker {
    display: inline-block;

    padding: 6px 8px;

    color: #5d4c1e;

    background: #ffe27c;

    border: 3px solid #333;

    font-size: 9px;
    font-weight: 1000;

    transform: rotate(-2deg);
}

.download-copy h2 {
    margin: 17px 0 6px;

    font-size: 37px;

    letter-spacing: -2px;

    font-weight: 1000;
}

.download-copy p {
    margin: 0;

    color: #d6e7f3;

    font-size: 14px;
}

.download-action {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 9px;
}

.download-button {
    color: #245334;

    background:
        linear-gradient(
            #c7f3d4,
            #7ed09c
        );
}

.download-action span {
    color: #cce2ef;

    font-size: 9px;
    font-weight: 1000;
}


/* =========================================================
   COMMUNITY
========================================================= */

.community-section {
    padding: 58px 0;

    background: rgba(255,234,169,.94);

    border-bottom: 4px solid #333;
}

.community-card {
    display: flex;

    align-items: center;

    gap: 25px;

    padding: 25px;

    background: white;

    border: 3px solid #333;

    box-shadow:
        7px 7px 0 #333;
}

.roblox-character {
    width: 105px;

    flex-shrink: 0;

    display: flex;

    flex-direction: column;

    align-items: center;
}

.character-head {
    width: 66px;
    height: 66px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #654d25;

    background: #e8bd68;

    border: 3px solid #333;

    font-size: 20px;
    font-weight: 1000;
}

.character-torso {
    width: 52px;
    height: 48px;

    background: #5597c2;

    border: 3px solid #333;

    border-top: 0;
}

.character-legs {
    display: flex;

    gap: 3px;
}

.character-legs div {
    width: 24px;
    height: 35px;

    background: #555;

    border: 3px solid #333;

    border-top: 0;
}

.community-copy {
    flex: 1;
}

.community-label {
    color: #6ba078;

    font-size: 9px;
    font-weight: 1000;
}

.community-copy h2 {
    margin: 7px 0;

    font-size: 30px;

    letter-spacing: -1px;

    font-weight: 1000;
}

.community-copy p {
    max-width: 550px;

    margin: 0;

    color: #666;

    font-size: 13px;

    line-height: 1.5;
}

.discord-button {
    color: white;

    background:
        linear-gradient(
            #8e83d4,
            #6d61ad
        );

    white-space: nowrap;
}


/* =========================================================
   FINAL MEME
========================================================= */

.final-meme {
    padding: 50px 0;

    background:
        rgba(238,238,238,.95);

    border-bottom: 4px solid #333;
}

.final-meme-box {
    padding: 35px;

    text-align: center;

    background: #9de3b6;

    border: 4px solid #333;

    box-shadow:
        8px 8px 0 #333;

    transform: rotate(-.5deg);
}

.final-big {
    font-size: 30px;

    font-weight: 1000;

    text-shadow:
        3px 3px white;
}

.final-small {
    margin-top: 9px;

    color: #376b4c;

    font-size: 14px;
    font-weight: 1000;
}

.final-soda {
    margin-top: 20px;

    color: white;

    font-size: 38px;

    font-weight: 1000;

    letter-spacing: 10px;

    text-shadow:
        3px 3px 0 #333;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    background: #d3d3d3;

    border-bottom: 0;
}

.footer-inner {
    min-height: 80px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #777;

    font-size: 9px;
    font-weight: bold;
}

.footer-logo {
    color: #333;

    font-size: 20px;

    font-weight: 1000;

    letter-spacing: -1px;
}

.footer-logo span {
    color: #61b583;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .header-inner {
        flex-wrap: wrap;

        padding: 12px 0;
    }

    .main-nav {
        order: 3;

        width: 100%;

        min-height: 40px;

        overflow-x: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-mini-stats {
        justify-content: center;
    }

    .feature-grid,
    .fun-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .resource-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 650px) {

    .hero {
        padding: 45px 0;
    }

    .hero h1 {
        font-size: 48px;

        letter-spacing: -3px;
    }

    .hero-cloud {
        display: none;
    }

    .feature-grid,
    .fun-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .status-card,
    .download-inner,
    .community-card {
        flex-direction: column;

        align-items: flex-start;
    }

    .status-services {
        margin-top: 10px;
    }

    .change {
        grid-template-columns:
            60px 1fr;
    }

    .change-date {
        display: none;
    }

    .footer-inner {
        flex-direction: column;

        justify-content: center;

        gap: 8px;

        padding: 15px 0;
    }
}


@media (max-width: 450px) {

    .brand-text {
        font-size: 24px;
    }

    .brand-cube {
        width: 37px;
        height: 37px;
    }

    .header-badge {
        display: none;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-mini-stats {
        flex-wrap: wrap;
    }

    .hero-mini-stats div {
        flex: 1;
    }

    .executor-sidebar {
        width: 90px;
    }

    .executor-menu {
        gap: 8px;
    }

    .executor-menu span:nth-child(n+4) {
        display: none;
    }

    .sticker-right {
        display: none;
    }

    .section-title h2 {
        font-size: 25px;
    }
}