:root {
    --colorPrimary0: #eefcf6;
    --colorPrimary10: #dcf9ec;
    --colorPrimary20: #9e9263;
    --colorPrimary40: #3ea641;
    --colorSecondary0: #fffdf5;
    --colorSecondary10: #f7f0df;
    --colorSecondary20: #e4ddc4;
    --colorSecondary40: #d87513;
    --colorNeutral0: #ffffff;
    --colorNeutral10: #f3f4f6;
    --colorNeutral20: #dcdfe4;
    --colorNeutral30: #c5cad3;
    --colorNeutral40: #b4bbc5;
    --colorNeutral50: #a9b0bc;
    --colorNeutral60: #97a0b0;
    --colorNeutral70: #8c96a6;
    --colorNeutral80: #7a8699;
    --colorNeutral90: #505968;
    --colorNeutral100: #474748;
    --colorNeutral110: #31333f;
    --colorNeutral120: #24262e;
    --colorError0: #ffeded;
    --colorError40: #b00020;
    --colorWarning0: #fffaed;
    --colorWarning40: #ffca00;
    --colorSuccess0: #f0ffed;
    --colorSuccess40: #2ba817;
    --colorTextPrimary: #505968;
    --colorTextSecondary: #bf505968;
    --colorTextTertiary: #8c505968;
    --colorTextQuaternary: #73505968;
    --colorOnColorTextPrimary: #FFFFFF;
    --colorOnColorTextSecondary: #DEFFFFFF;
    --colorOnColorTextTertiary: #99FFFFFF;
    --colorOnColorTextQuaternary: #61FFFFFF;

    --buttonBackgroundRadius: 20;
    --buttonBorderRadius: 20;
    --buttonIconSize: 20;
    --buttonIconSizeAlternative: 16;
    --buttonHorizontalPadding: 16;
    --buttonHorizontalPaddingAlternative: 12;
    --buttonMinHeight: 40;
    --buttonMinHeightAlternative: 36;
    --buttonProgressBarPadding: 2.5;
    --buttonProgressBarPaddingAlternative: 2;
    --buttonProgressBarStrokeWidth: 2;
    --buttonProgressBarStrokeWidthAlternative: 1.6;
    --buttonVerticalPadding: 0;
    --buttonVerticalPaddingAlternative: 10;

    --isXSmallContentUppercase: true;
    --isSmallContentUppercase: true;
    --isMediumContentUppercase: true;
}

@media (prefers-color-scheme: dark) {
    :root {
      --colorPrimary0: #0b3d27;
      --colorPrimary10: #0f5737;
      --colorPrimary20: #9e9263;
      --colorPrimary40: #45b949;
      --colorSecondary0: #121212;
      --colorSecondary10: #34290d;
      --colorSecondary20: #4c4423;
      --colorSecondary40: #eb821a;
      --colorNeutral0: #23272e;
      --colorNeutral10: #353b45;
      --colorNeutral20: #474f5c;
      --colorNeutral30: #505968;
      --colorNeutral40: #5d6879;
      --colorNeutral50: #6a768a;
      --colorNeutral60: #7f8b9e;
      --colorNeutral70: #919bac;
      --colorNeutral80: #9ca6b4;
      --colorNeutral90: #d1d5dc;
      --colorNeutral100: #e8eaed;
      --colorNeutral110: #eeeff2;
      --colorNeutral120: #fafafa;
      --colorError0: #2e171c;
      --colorError40: #f04366;
      --colorWarning0: #302b16;
      --colorWarning40: #ffd119;
      --colorSuccess0: #0b2a06;
      --colorSuccess40: #30be1a;
      --colorTextPrimary: #ffffff;
      --colorTextSecondary: #bfffffff;
      --colorTextTertiary: #8cffffff;
      --colorTextQuaternary: #73ffffff;
      --colorOnColorTextPrimary: #23272e;
      --colorOnColorTextSecondary: #de23272e;
      --colorOnColorTextTertiary: #9923272e;
      --colorOnColorTextQuaternary: #6123272e;
    }
}

body{
    margin: 0;
    padding: 0;
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(11, 61, 39, 1) 0%, rgba(35, 39, 46, 1) 100%);
    background-size: cover;
    background-repeat: no-repeat;
    justify-content: center;
}

.browser-warning {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 99999;
    font-family: 'DM Sans', sans-serif;
    padding: 1rem;
    box-sizing: border-box;
}

.warning-content {
    max-width: 600px;
    border-radius: 1rem;
    width: 90%;
    text-align: left;
}

.warning-title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: bold;
    font-family: 'DM Sans', sans-serif;
    margin-top: 0;
}

.warning-text {
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.5rem;
    margin-top: 0;
}

.warning-image{
    width: 280px;
    height: 280px;
    border-radius: 32px;
    margin-left: 32px;
}

.browser-options {
    display: flex;
    justify-content: left;
    margin-top: 1rem;
    flex-wrap: wrap;
    gap: 48px;
}

.browser-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.2s;
    font-family: 'DM Sans', sans-serif;
    min-width: 76px;
}

.download-link {
    display: inline-flex;
    flex: 1 1 auto;
    max-width: 160px;
}

img.download-icon {
    width: 100%;
}


.browser-link:hover {
    transform: translateY(-5px);
}

.browser-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 0.8rem;
}

.browser-name {
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.2rem;
}


@media (max-width: 980px) {

    .warning-image{
        width: 180px;
        height: 180px;
        border-radius: 24px;
        margin-left: 24px;
    }


    .warning-content {
        max-width: 420px;
    }

    .warning-title {
        font-size: 1.5rem;
    }

    .warning-text {
        color: #ffffff;
        margin-bottom: 2rem;
        line-height: 1.6;
        font-family: 'DM Sans', sans-serif;
        font-size: 1.25rem;
        margin-top: 0;
    }

    .browser-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 0.8rem;

    }

    .browser-options {
            gap: 24px;

        }
}


@media (max-width: 720px) {

    .warning-image {
        width: 180px;
        height: 180px;
        border-radius: 24px;
        margin-bottom: 24px;
        margin-left: 0;
    }

    .warning-content {
        max-width: none;
    }

    .browser-options {
        flex-direction: row;
        align-items: center;
        gap: 24px;
    }

    .browser-link {
        min-width: 76px;
    }

    .browser-warning{
        flex-direction: column-reverse;
        justify-content: flex-start;
        padding: 24px;
    }

    .warning-image{
        width: 160px;
        height: 160px;
    }
}

.desktop-browsers,
.mobile-stores,
.desktop-content,
.mobile-content {
    display: none;
}

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #EEFCF6;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #DCF9EC;
    border-top: 4px solid #3EA641;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
