@font-face {
    font-family: "Druk Cyr Super Italic";
    src: url("../fonts/druk-cyr-super-italic.woff2") format("woff2");
    font-style: italic; 
    font-weight: 900; 
}

@font-face {
    font-family: "Druk Cyr Super";
    src: url("../fonts/druk-cyr-super.woff2") format("woff2");
    font-weight: normal;
    font-style: normal; 
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Druk Cyr Super Italic", sans-serif;
    font-size: 2.25vw;
    color: #FFFF;
    background-color: #0a3a3d;
    background-image: url(../img/main-bg.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

section {
    padding: 5vw 0;
    width: 90vw;
    margin: auto;
}

.sm {
    font-size: 3.75vw;
    font-weight: 300;
}

.md {
    font-size: 5.25vw;
    font-weight: 600;
}

.lg {
    font-size: 9vw;
    font-weight: 700;
}

.x-lg {
    font-size: 12vw;
    font-weight: 800;
}

.bold {
    font-weight: 900;
}

.bg {
    background: rgba(5, 90, 97, 1);
    border-radius: 5vw;
    padding: 0.2vw 1vw;
}

/* .gold {
    background: linear-gradient(to top, #A78433, #F0DE9E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */

.red {
    color: rgba(255, 71, 71, 1);
}

.italic {
    font-style: italic; 
}

.pulse {
    transition: all .3s ease;
    animation: pulse 1s 0s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1.0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1.0);
    }
}

header {
    position: relative;
    height: 20vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 3vw;
}

header .logo {
    width: 56.16vw;
    position: absolute;
    top: 4vw;
    left: 50%;
    transform: translateX(-50%);
}

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

.bonus-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 5vw 0 1vw 0;
    margin: 0;
    width: 100vw;
    position: relative;
    top: -80px;
}

.bonus-content {
    background-image: url(../img/bonus-container.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 4vw 6vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 20vw;
    width: 97vw;
    max-width: 600px;
    margin-left: -5%;
}

.bonus-text {
    text-align: center;
    margin-top: -1vw;
    margin-bottom: 4.5vw;
    margin-left: -8vw;
}

.welcome-text {
    margin-top: -1vw;
    margin-bottom: 0.1vw;
    margin-left: 2vw;
}

.percent {
    color: #ff6b6b;
    font-size: 70px;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.welcome {
    color: #ffffff;
    font-size: 70px;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-left: 1vw;
    letter-spacing: 2px;
}

.bonus-title {
    color: #ffffff;
    font-size: 120px;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    margin-top: 0.5vw;
    margin-bottom: 2vw;
    line-height: 0.8;
    letter-spacing: 4px;
}

.amount-box {
    background-color: #000000;
    border: 1.5px solid rgba(255, 107, 107, 0.6);
    border-radius: 15px;
    padding: 1vw 2vw;
    display: inline-block;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.2);
}

.up-to {
    color: #ffffff;
    font-size: 38.955px;
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 1vw;
    letter-spacing: 1px;
}

.amount {
    color: #ff6b6b;
    font-size: 51.45px;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.bonus-btn {
    width: 12.5vw;
    max-width: 100px;
    transition: all .3s ease;
    margin-left: -8vw;
}

.bonus-btn:hover {
    transform: scale(1.1);
}

.bonus-btn img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.slot-banner {
    position: absolute;
    bottom: 15px;
    right: 0;
    width: 25.935vw;
    z-index: 10;
}

.slot-banner img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.games_sports {
    padding: 2vw 0 2vw 0;
    margin-top: -60px;
}

footer .games_sports {
    padding: 0 0 5vw 0;
}

.games_sports .wrapper {
    display: flex;
    flex-direction: column;
    gap: 5vw;
    width: 95%;
    margin: 0 auto;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5vw;
    width: 100%;
}

.game-item {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-item img {
    width: 95%;
    height: 95%;
    object-fit: contain;
}

.banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border-radius: 40px;
    padding: 5vw 40vw 5vw 5vw;
    position: relative;
}

.banner .gradient {
    display: none;
}

.banner .img-bottom {
    position: absolute;
    top: 50%;
    right: 5vw;
    transform: translateY(-50%);
    width: 40vw;
    height: auto;
    object-fit: contain;
}

.banner .text_wrapper {
    text-align: center;
}

.banner .text_wrapper .text {
    text-transform: uppercase;
}

.instructions .list {
    margin: 0 auto;
    position: relative;
}

.instructions .list .item {
    text-align: center;
    /* background: rgba(100, 0, 0, 1); */
    margin: 7.6vw 15vw;
    border-radius: 9vw;
    padding: 2.85vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.instructions .list .item .number {
    border-radius: 8px;
    width: 7vw;
    height: 7vw;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #F04C4D;
    margin: -9vw 0 2vw 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 0 15px rgba(240, 76, 77, 0.4);
}


.instructions .list .item .number .background-1 {
    width: 12vw;
    height: 12vw;
    border-radius: 20%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.instructions .list .item .number .background-2 {
    border-radius: 50%;
    width: 95%;
    height: 95%;
    /* background: #6A0101; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.instructions .list .item .number .text {
    margin: 0;
}

.instructions .list .item .text {
    margin-bottom: 2vw;
    font-size: 3.105vw;
    letter-spacing: 0.03em;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.instructions .list .item .open-text {
    color: #ffffff;
    font-family: "Druk Cyr Super", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

.instructions .list .item .system-text {
    color: #ff6b6b;
    font-weight: bold;
    text-transform: uppercase;
}

.instructions .list .item .search-text {
    color: #ffffff;
    font-family: "Druk Cyr Super", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

.instructions .list .item .special-text {
    color: #ff6b6b;
    font-weight: bold;
    text-transform: uppercase;
}

.instructions .list .item .instruction-1,
.instructions .list .item .instruction-2,
.instructions .list .item .instruction-3,
.instructions .list .item .instruction-4,
.instructions .list .item .instruction-5 {
    line-height: 1.0;
}

.instructions .list .item .select-text {
    color: #ffffff;
    font-family: "Druk Cyr Super", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

.instructions .list .item .install-text {
    color: #ff6b6b;
    font-weight: bold;
    text-transform: uppercase;
}

.instructions .list .item .from-text {
    color: #ffffff;
    font-family: "Druk Cyr Super", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

.instructions .list .item .browser-text {
    color: #ffffff;
    font-family: "Druk Cyr Super", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

.instructions .list .item .enable-text {
    color: #ffffff;
    font-family: "Druk Cyr Super", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

.instructions .list .item .allow-text {
    color: #ff6b6b;
    font-weight: bold;
    text-transform: uppercase;
}

.instructions .list .item .source-text {
    color: #ffffff;
    font-family: "Druk Cyr Super", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

.instructions .list .item .number .text {
    font-size: 6vw;
    color: #ffffff;
    font-weight: bold;
}

.instructions .list .item .img {
    width: 85.5%;
}

.instructions .list .item img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.instructions .list .item .img-background {
    position: absolute;
    object-fit: contain;
}

.instructions .list .item:nth-child(1) .img-background {
    top: -10vw;
    right: -5vw;
    width: 20vw;
    height: 20vw;
}

.instructions .list .item:nth-child(2) .img-background {
    transform: rotate(180deg);
    bottom: 10vw;
    right: -15vw;
    z-index: -1;
    width: 22vw;
    height: 22vw;
}

.instructions .list .item:nth-child(3) .img-background {
    bottom: -12vw;
    left: -11vw;
    width: 24vw;
    height: 24vw;
}

.instructions .list .item:nth-child(4) .img-background {
    bottom: 2vw;
    left: -14vw;
    z-index: -1;
    width: 15vw;
    height: auto;
}

@media (max-width: 600px) {
    body {
        font-size: 3.75vw;
        background-position: left;
    }
    section {
        padding: 20px 0;
        width: 90vw;
        margin: auto;
    }
    .sm {
        font-size: 8.25vw;
        font-weight: 300;
    }
    
    .md {
        font-size: 9.75vw;
        font-weight: 600;
    }
    
    .lg {
        font-size: 21vw;
        font-weight: 700;
    }
    
    .x-lg {
        font-size: 21vw;
        font-weight: 800;
    }
    
    .bg {
        padding: 0.5vw 1.5vw;
    }

    header {
        height: 30vw;
        padding-top: 4.5vw;
    }

    header .logo {
        width: 56.16vw;
        top: 7vw;
    }

    .bonus-container {
        padding: 10vw 0 2vw 0;
        margin: 13vw 0 10vw 0;
        width: 100vw;
    }

    .bonus-content {
        width: 97vw;
        min-height: 30vw;
        padding: 6vw 8vw;
        margin-left: -5%;
    }

    .bonus-btn {
        width: 25vw;
        max-width: 150px;
        margin-left: -9vw;
    }

    .welcome-text {
        margin-top: 0vw;
        margin-bottom: 0.1vw;
        margin-left: 4vw;
    }

    .percent {
        font-size: 33.81px;
        letter-spacing: 1.5px;
    }

    .welcome {
        font-size: 40px;
        letter-spacing: 1.5px;
    }

    .bonus-title {
        font-size: 56.595px;
        letter-spacing: 3px;
        margin-top: 0.5vw;
        margin-bottom: 3vw;
    }

    .up-to {
        font-size: 20.58px;
        letter-spacing: 0.5px;
    }

    .amount {
        font-size: 27.195px;
        letter-spacing: 1.5px;
    }

    .bonus-text {
        margin-top: -3vw;
        margin-left: -9vw;
    }

    .slot-banner {
        width: 38.9025vw;
        bottom: -10px;
    }

    .games_sports {
        padding: 3vw 0 2vw 0;
        margin-top: -110px;   
    }

    body {
        background-size: 100% auto;
        background-position: top center;
        min-height: 100vh;
    }

    .games-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 1vw;
    }

    
    footer .games_sports {
        padding: 0 0 5vw 0;
    }    

    .games_sports .wrapper {
        gap: 5vw;
    }

    .games_sports .list {
        gap: 5vw;
        width: max-content;
        justify-content: flex-start;
    }

    .games_sports .list .item {
        width: 20vw;
        height: 20vw;
        border-radius: 4.65vw;
    }

    .banner {
        padding: 10vw 3vw 45vw;
    }

    .banner .img-bottom {
        bottom: -20vw;
        width: 100%;
        top: auto;
        right: auto;
        transform: none;
    }

    .instructions .list .item {
        margin: 0;
        margin-top: 8.55vw;
        border-radius: 9vw;
        padding: 2.85vw;
    }

    .instructions .list .item .number {
        width: 10vw;
        height: 10vw;
        margin: -11vw 0 5vw 0;
        border-radius: 6px;
        background: rgba(0, 0, 0, 0.3);
        border: 2px solid #F04C4D;
        box-shadow: 0 0 15px rgba(240, 76, 77, 0.4);
    }


    .instructions .list .item .number .background-1 {
        width: 15vw;
        height: 15vw;
        border-radius: 20%;
    }

    .instructions .list .item .number .background-2 {
        border-radius: 50%;
        width: 95%;
        height: 95%;
    }

    .instructions .list .item .text {
        margin-bottom: 5vw;
        font-size: 6.21vw;
        letter-spacing: 0.03em;
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }

    .instructions .list .item .open-text {
        color: #ffffff;
        font-family: "Druk Cyr Super", sans-serif;
        font-weight: bold;
        text-transform: uppercase;
    }

    .instructions .list .item .system-text {
        color: #ff6b6b;
        font-weight: bold;
        text-transform: uppercase;
    }

    .instructions .list .item .search-text {
        color: #ffffff;
        font-family: "Druk Cyr Super", sans-serif;
        font-weight: bold;
        text-transform: uppercase;
    }

    .instructions .list .item .special-text {
        color: #ff6b6b;
        font-weight: bold;
        text-transform: uppercase;
    }

    .instructions .list .item .instruction-1,
    .instructions .list .item .instruction-3,
    .instructions .list .item .instruction-2,
    .instructions .list .item .instruction-4,
    .instructions .list .item .instruction-5 {
        line-height: 1.0;
    }

    .instructions .list .item .select-text {
        color: #ffffff;
        font-family: "Druk Cyr Super", sans-serif;
        font-weight: bold;
        text-transform: uppercase;
    }

    .instructions .list .item .install-text {
        color: #ff6b6b;
        font-weight: bold;
        text-transform: uppercase;
    }

    .instructions .list .item .from-text {
        color: #ffffff;
        font-family: "Druk Cyr Super", sans-serif;
        font-weight: bold;
        text-transform: uppercase;
    }

    .instructions .list .item .browser-text {
        color: #ffffff;
        font-family: "Druk Cyr Super", sans-serif;
        font-weight: bold;
        text-transform: uppercase;
    }

    .instructions .list .item .enable-text {
        color: #ffffff;
        font-family: "Druk Cyr Super", sans-serif;
        font-weight: bold;
        text-transform: uppercase;
    }

    .instructions .list .item .allow-text {
        color: #ff6b6b;
        font-weight: bold;
        text-transform: uppercase;
    }

    .instructions .list .item .source-text {
        color: #ffffff;
        font-family: "Druk Cyr Super", sans-serif;
        font-weight: bold;
        text-transform: uppercase;
    }

    .instructions .list .item .number .text {
        font-size: 8vw;
        color: #ffffff;
        font-weight: bold;
    }

    .instructions .list .item:nth-child(1) .img-background {
        top: -15vw;
        right: -5vw;
        width: 35vw;
        height: 35vw;
    }

    .instructions .list .item:nth-child(2) .img-background {
        bottom: -24vw;
        right: 5vw;
        width: 32vw;
        height: 32vw;
        transform: rotate(270deg);
    }

    .instructions .list .item:nth-child(3) .img-background {
        bottom: -18vw;
        left: -5vw;
        width: 32vw;
        height: 32vw;
    }

    .instructions .list .item:nth-child(4) .img-background {
        bottom: -30vw;
        right: -5vw;
        left: auto;
        width: 35vw;
        height: auto;
        z-index: 0;
    }

    footer .logo {
        width: 60vw;
    }

    footer .btn {
        width: 60vw;
    }

    footer .ambassador {
        width: 100%;
    }
}

/* Bonus Offer Section */
.bonus-offer {
    padding: 0vw 0 0vw 0;
    text-align: center;
}

.bonus-offer-content {
    max-width: 90%;
    margin: 0 auto;
}

.bonus-text {
    width: 95%;
    margin: 0 auto 3vw auto;
}

.deposit-line {
    margin-bottom: 1.5vw;
    line-height: 1.2;
}

.deposit-text {
    color: #ffffff;
    font-family: "Druk Cyr Super Italic", sans-serif;
    font-size: 3.75vw;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.percent-bonus {
    color: #ff6b6b;
    font-family: "Druk Cyr Super Italic", sans-serif;
    font-size: 3.75vw;
    font-weight: 900;
    text-transform: uppercase;
}

.bonus-word {
    color: #ffffff;
    font-family: "Druk Cyr Super Italic", sans-serif;
    font-size: 3.75vw;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.amount-bonus {
    color: #ff6b6b;
    font-family: "Druk Cyr Super Italic", sans-serif;
    font-size: 3.75vw;
    font-weight: 900;
    text-transform: uppercase;
}

.google-play-btn {
    margin: 3vw 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.google-play-btn img {
    width: 20vw;
    max-width: 200px;
    height: auto;
    transition: all 0.3s ease;
}

.google-play-btn img:hover {
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .bonus-offer {
        padding: 0vw 0 0vw 0;
    }
    
    .deposit-text {
        font-size: 6vw;
    }
    
    .percent-bonus {
        font-size: 6vw;
    }
    
    .bonus-word {
        font-size: 6vw;
    }
    
    .amount-bonus {
        font-size: 6vw;
    }
    
    .google-play-btn {
        margin: 4vw 0;
    }
    
    .google-play-btn img {
        width: 35vw;
        max-width: 250px;
    }
}

/* Pixel-perfect для устройств 360px */
@media (max-width: 360px) {
    header .logo {
        width: 56.16vw;
        top: 4vw;
    }
    
    .bonus-container {
        padding: 25vw 0 1vw 0;
        margin: 0;
    }
    
    .bonus-content {
        width: 97vw;
        min-height: 20vw;
        padding: 4vw 6vw;
    }
    
    .bonus-text {
        margin-bottom: 2vw;
    }
    
    .welcome-text {
        margin-top: -1vw;
        margin-bottom: 0.1vw;
        margin-left: 2vw;
    }
    
    .bonus-title {
        margin-top: 0.5vw;
        margin-bottom: 2vw;
    }
    
    .bonus-btn {
        width: 25vw;
        margin-top: 1vw;
    }
    
    .games_sports {
        padding: 2vw 0 2vw 0;
        margin-top: -60px;
    }
    
    .games-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 0.5vw;
    }
    
    .instructions .list .item {
        margin: 7.6vw 15vw;
        padding: 2.85vw;
    }
    
    .instructions .list .item .text {
        font-size: 5vw;
        letter-spacing: 0.03em;
        width: 80%;
    }
    
    .instructions .list .item .img {
        width: 100%;
    }
    
    .bonus-offer {
        padding: 0vw 0 0vw 0;
    }
    
    .bonus-text {
        width: 95%;
    }
    
    .deposit-text {
        font-size: 5vw;
    }
    
    .percent-bonus {
        font-size: 5vw;
    }
    
    .bonus-word {
        font-size: 5vw;
    }
    
    .amount-bonus {
        font-size: 5vw;
    }
    
    .google-play-btn {
        margin: 3vw 0;
    }
    
    .google-play-btn img {
        width: 28vw;
        max-width: 180px;
    }
}

/* Pixel-perfect для устройств 390px - 420px */
@media (max-width: 420px) and (min-width: 360px) {
    header .logo {
        width: 56.16vw;
        top: 4vw;
    }
    
    .bonus-container {
        padding: 25vw 0 1vw 0;
        margin: 0;
    }
    
    .bonus-content {
        width: 97vw;
        min-height: 20vw;
        padding: 4vw 6vw;
    }
    
    .bonus-text {
        margin-bottom: 2vw;
    }
    
    .welcome-text {
        margin-top: -1vw;
        margin-bottom: 0.1vw;
        margin-left: 2vw;
    }
    
    .bonus-title {
        margin-top: 0.5vw;
        margin-bottom: 2vw;
    }
    
    .bonus-btn {
        width: 20vw;
        max-width: 100px;
        margin-top: 1vw;
    }
    
    .games_sports {
        padding: 2vw 0 2vw 0;
        margin-top: -60px;
    }
    
    .games-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 0.5vw;
    }
    
    .instructions .list .item {
        margin: 7.6vw 15vw;
        padding: 2.85vw;
    }
    
    .instructions .list .item .text {
        font-size: 5vw;
        letter-spacing: 0.03em;
        width: 80%;
    }
    
    .instructions .list .item .img {
        width: 100%;
    }
    
    .bonus-offer {
        padding: 0vw 0 0vw 0;
    }
    
    .bonus-text {
        width: 95%;
    }
    
    .deposit-text {
        font-size: 5vw;
    }
    
    .percent-bonus {
        font-size: 5vw;
    }
    
    .bonus-word {
        font-size: 5vw;
    }
    
    .amount-bonus {
        font-size: 5vw;
    }
    
    .google-play-btn {
        margin: 3vw 0;
    }
    
    .google-play-btn img {
        width: 28vw;
        max-width: 180px;
    }
}