*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --background-color: #102950;
    --secondary-color: #1e4c77;
    --color-white: #ffffff;
    --primary-color: #e4b063;
    --color-accent: #e2ab60;
    --color-accent2: #ebc16d;
    /* ------ */
    --color-green: #22c55e;
    --color-orange: #f97316;

    /* font */
    --font-inter: "Inter", sans-serif;
    --font-dancing: "Dancing Script", cursive;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-inter);
    background-color: var(--background-color);
    line-height: 1;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
    padding: 0px;
    margin: 0px;
    line-height: 1;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1240px;
    margin: auto;
    padding: 0px 20px;
}

.header {
    padding: 16px 0px;
}

.header__main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    overflow: hidden;
    border: none;
    border-radius: 25px;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: black;
    line-height: 18px;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease;
    background-image: linear-gradient(
        var(--color-accent),
        var(--color-accent2)
    );
}

/* variation of button */
.btn--tab-inactive {
    color: var(--primary-color);
    background: transparent;
}

.btn__svg {
    position: absolute;
    height: 100%;
    z-index: 1;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn__link {
    color: black;
}

.btn--lg {
    padding: 20px 26px;
    border-radius: 60px;
}

/* hero section */
.hero {
    width: 100%;
    height: 567px;
    background-image:
        linear-gradient(#112b4c80, #01152f80, #00080080),
        url("../images/hero-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero__container {
    max-width: 1124px;
    padding: 0px 20px;
    margin: auto;
    display: flex;
    align-items: center;
    height: 100%;
}

.hero__main {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 53px;
}

.heading {
    display: flex;
    flex-direction: column;
    gap: 26px;
    color: var(--color-white);
}

.heading__title {
    font-size: 65px;
    line-height: 72px;
    font-weight: 700;
}

.heading__description {
    font-size: 28px;
    line-height: 36px;
    font-weight: 300;
    font-style: normal;
}

.hero__spin {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__social-icons {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 12px;
    right: 27px;
    bottom: 37px;
}

.social-icon {
    display: flex;
    padding: 12px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 100%;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
}

.float-message {
    padding: 16px;
    border-radius: 100%;
    background-color: #006cd1;
    position: absolute;
    bottom: 41px;
    right: 91px;
    transition: transform 0.3s ease;
}

.float-message:hover {
    transform: translateY(-2px);
}

/* winner section */
.winner {
    margin-top: 100px;
}

.winner__main {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.winner__content {
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.winner__title {
    text-align: center;
    color: var(--primary-color);
    font-family: var(--font-dancing);
    font-weight: 700;
    font-size: 54px;
    line-height: 80px;
}

.winner__rewards {
    width: 100%;
    display: flex;
    gap: 24px;
}

.reward {
    width: 100%;
    display: flex;
    border: 2px solid var(--color-accent);
    padding: 24px 30px 24px 21px;
    border-radius: 68px;
    align-items: center;
    justify-content: space-between;
}

.reward__name {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
}

.reward__name__number {
    background-image: linear-gradient(
        var(--color-accent),
        var(--color-accent2)
    );
    color: var(--background-color);
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.reward__currency {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    text-align: end;
    color: var(--primary-color);
}

.separetor {
    width: 100%;
    display: flex;
}

.separetor__point {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    rotate: 45deg;
}

.separetor__line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    border: none;
    transform: translateY(-5px);
}

/* games */
.games {
    margin-top: 120px;
}

.g-main {
    display: flex;
    flex-direction: column;
    gap: 71px;
    width: 100%;
    align-items: center;
}

.g-heading {
    display: flex;
    flex-direction: column;
    gap: 44px;
    align-items: center;
    text-align: center;
}

.g-heading__title {
    font-weight: 700;
    font-size: 65px;
    color: var(--primary-color);
}

.g-heading__tab {
    display: flex;
    justify-content: center;
    margin: 0px 14.5px;
    border: 1px solid #e4af63;
    padding: 6px;
    border-radius: 128px;
}

.g-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.g-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    gap: 28px;
    background-color: var(--secondary-color);
    padding-bottom: 30px;
    align-items: center;
    border-radius: 17px;
    transition: transform 300ms ease;
    cursor: pointer;
}

.g-card:hover {
    transform: translateY(-5px);
}

.g-card__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.g-card__title {
    text-align: center;
    text-transform: uppercase;
    color: var(--color-white);
}

.footer {
    width: 100%;
    background-color: var(--secondary-color);
    border: 1px solid transparent;
    margin-top: 120px;
    display: flex;
    justify-content: center;
    align-content: center;
}
.footer__content {
    display: flex;
    flex-direction: column;
    margin: 100px 0px;
    gap: 27px;
}
.footer__title {
    font-family: var(--font-dancing);
    color: var(--primary-color);
    text-align: center;
    line-height: 120%;
    font-size: 34px;
}

@media (max-width: 1024px) {
    /* hero */
    .hero__main {
        gap: 40px;
    }

    .hero__content {
        gap: 30px;
    }

    .heading {
        gap: 10px;
    }

    .heading__title {
        font-size: 40px;
        line-height: 100%;
    }

    .heading__description {
        font-size: 18px;
        line-height: 100%;
    }

    .btn {
        font-size: 14px;
        padding: 10px 25px;
    }

    .btn--lg {
        padding: 14px 25px;
    }

    .hero__social-icons {
        flex-direction: row;
        right: 100px;
    }

    .float-message {
        right: 20px;
        bottom: 37px;
    }

    /* winner */
    .winner {
        margin-top: 80px;
    }

    .winner__main {
        gap: 40px;
    }

    .winner__content {
        gap: 32px;
    }

    .winner__rewards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }

    .winner__rewards > :last-child {
        grid-column: 1 / -1;
    }

    .reward {
        padding: 16px;
    }

    /* games */
    .g-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__content {
        margin: 50px 0px;
    }
}

@media (max-width: 600px) {
    .hero {
        height: 90vh;
    }

    .hero__main {
        display: flex;
        flex-direction: column-reverse;
        justify-content: start;
        height: 60vh;
        gap: 10px;
    }

    .hero__content {
        gap: 20px;
        align-items: center;
    }

    .heading {
        gap: 10px;
        text-align: center;
    }

    .heading__title {
        font-size: 40px;
        line-height: 100%;
    }

    .heading__description {
        font-size: 18px;
        line-height: 100%;
    }

    .btn {
        font-size: 14px;
        padding: 10px 25px;
    }

    .btn--lg {
        padding: 14px 25px;
    }

    .hero__social-icons {
        position: absolute;
        left: 20px;
        bottom: 20px;
        z-index: 10;
        /* border: 1px solid red; */
    }
    .social-icon {
        padding: 6px;
    }

    .float-message {
        right: 20px;
        bottom: 37px;
        padding: 8px;
        right: 10px;
        bottom: 20px;
    }

    /* winner */
    .winner__rewards {
        display: flex;
        flex-direction: column;
    }
    .winner__title {
        font-size: 34px;
    }

    .reward {
        padding: 12px;
    }
    /* games */
    .games {
        margin-top: 50px;
    }

    .g-cards {
        display: flex;
        flex-direction: column;
    }
    .g-heading {
        gap: 20px;
    }
    .g-heading__title {
        font-size: 34px;
    }
    .g-heading__tab {
        margin: 0px;
    }
    .footer__content {
        margin: 30px 0px;
    }
}

/* for mobile */
/* ============================== */
/* signup page design here  */
.auth__container {
    background-color: #e8e8e8;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: 100vh;
}
.auth {
    max-width: 996px;
    width: 100%;
    display: flex;
    justify-content: space-between;

    box-shadow: 0px 23px 50px 0px #00000014;
    border-radius: 30px;
    overflow: hidden;
}
.auth__content {
    width: 100%;
    padding: 50px;
    background-color: #ffffff;
}
.auth__header {
    margin-bottom: 28px;
}
.auth__title {
    font-weight: 700;
    font: bold;
    font-size: 44px;
    line-height: 120%;
    letter-spacing: -1%;
    margin-bottom: 7px;
}
.auth__sub-title {
    color: #656565;
    line-height: 120%;
}
.auth__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 36px;
    margin-bottom: 36px;
}
.input-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.input-field__label {
    font-size: 12px;
    line-height: 120%;
    font-weight: 500;
    color: #1e2126;
}

.input-field__input {
    border: 1px solid #e5e7eb;
    background-color: white;
    padding: 14px 48px;
    border-radius: 10px;
}
.input-field__icon {
    position: absolute;
    top: 72%;
    left: 18px;
    transform: translateY(-50%);
}
.input-field__eye-icon {
    position: absolute;
    top: 72%;
    right: 18px;
    transform: translateY(-50%);
}

.signup__button,
.signin__button {
    width: 100%;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 10px;
    border: 1.1px solid #dddddd;
    background-color: inherit;
    cursor: pointer;
}
.auth__footer-text {
    color: #6a6e79;
    line-height: 120%;
    text-align: center;
    padding-bottom: 15px;
}
.auth__footer-description {
    color: #3a3d44;
    line-height: 130%;
    font-size: 14px;
    font: medium;
    text-align: center;
}
.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.auth-options__remember {
    display: none;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #1e2126;
}
.auth-options__checkbox {
    width: 16px;
    height: 16px;
    border: 1.1px solid #838383;
    border-radius: 6px;
}
.auth-options__forgot {
    color: #0c0c0c;
    line-height: 120%;
    font: medium;
}
.text-bold {
    font-weight: 500;
}
.auth__right {
    width: 100%;
    background: linear-gradient(171.6deg, #112b4c 6.43%, #1e4c77 99.01%);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.auth__logo {
    max-width: 148px;
    aspect-ratio: 148/114;
    margin-bottom: 87px;
}
.auth__logo-image {
    width: 100%;
    height: 100%;
}
.auth__casino-figure {
    max-width: 366px;
    aspect-ratio: 366/321;
}
.auth__casino-figure-image {
    width: 100%;
    height: 100%;
}

.auth__switch-text {
    margin-top: 16px;
    font-size: 14px;
    color: #656565;
    text-align: center;
}

.auth__switch-link {
    color: #102950;
    font-weight: 600;
    text-decoration: underline;
}

.auth__switch-link:hover {
    opacity: 0.7;
}

@media (max-width: 767px) {
    .auth__title {
        font-size: 28px;
        margin-bottom: 7px;
    }

    .auth__right {
        display: none;
    }
}

.text-start.form-group.col-sm-12.mb-2.ps-chenge-btns {
    display: flex !important;
    flex-direction: row-reverse !important;
    gap: 12px !important;
    margin-bottom: 20px !important;
}
