* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
}
a:active {
    color: rgba(241,158,54,1);
}
html {
    font-family: sans-serif;
}
.select-none {
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}
body {
    background: radial-gradient(circle, rgba(253,237,201,1) 0%, rgba(241,158,54,1) 15%, rgba(23,23,23,1) 75%);
    background-repeat: no-repeat;
    min-height: 100vh;
}

/* Loading Page Styles */
.loading-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.loading-page img {
    max-width: 80%;
    max-height: 60%;
    object-fit: contain;
}
.loader {
    position: absolute;
    bottom: 10%;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #f19e36;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Main Page Styles */
.main-page {
    display: none;
}
.squad-container {
    margin: 1.75rem auto;
    width: 80%;
    height: 4.5rem;
    border-radius: 15px;
    background-color: rgba(50, 49, 49, 0.3);
    border: 2px solid rgb(43, 42, 42, 0.05);
}
.login {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 1rem;
}
.login-detail {
    display: flex;
    align-items: center;
}
.profile {
    width: 3rem;
    height: 3rem;
    background-color: rgb(16, 16, 16);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}
.profile span {
    font-size: 2rem;
    color: rgba(151, 151, 151, 0.773);
}
.user-data {
    display: flex;
    flex-direction: column;
    margin-left: 0.75rem;
}
.name {
    color: #ffffff;
    font-size: 1.2rem;
}
.user-rank {
    font-size: 0.75rem;
    margin-top: 0.25rem;
    color: #c1c1c1;
}
.coin-count-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.25rem;
}
.rank-container {
    margin-top: 1rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}
.rank-items {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
}
.rank-items h3 {
    margin-right: 0.5rem;
}
.rank-items img {
    margin-left: 0.5rem;
    margin-right: 0.25rem;
}
#rank {
    font-weight: bold;
}
.coin-count-container img {
    margin-right: 1rem;
    width: 50px;
}
.coin-count-container h1 {
    color: #ffffff;
    font-size: 3.5rem;
}
.coin-container {
    position: relative;
    margin-top: 1.5rem;
    width: 100%;
    display: flex;
    justify-content: center;
}
.coin-container span {
    position: absolute;
    z-index: 999;
    font-size: 2rem;
    color: #ffffff;
}
#coin {
    transition: .1s;
    transform-style: preserve-3d;
}
.menu-container {
    margin-top: 2.25rem;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}
.power {
    display: flex;
    justify-content: center;
    margin-right: 0.5rem;
    width: 33%;
}
.power-count {
    display: flex;
    flex-direction: column;
}
.power-count span {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.5rem;
}
.gray {
    color: #d7d7d798 !important;
    font-size: 0.75rem !important;
}
.menu-bottuns {
    width: 67%;
    padding: 1rem 0.25rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 5rem;
    background-color: rgba(218, 218, 218, 0.2);
    border: 2px solid rgba(218, 218, 218, 0.03);
    border-radius: 15px;
    margin-left: 0.5rem;
}
.button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 0.25rem;
    width: 33.3333%;
    cursor: pointer;
}
.button img {
    margin-top: 0.5rem;
}
.button span {
    margin-top: 0.25rem;
    font-weight: bold;
    color: #ffffff;
}
.b-r {
    border-right: 2px solid rgba(218, 218, 218, 0.1);
}
.progress-bar {
    width: 90%;
    height: 1rem;
    margin: 1.25rem auto;
    border-radius: 30px;
    background-color: rgba(218, 218, 218, 0.5);
}
.progress {
    height: 100%;
    background: linear-gradient(278deg, rgba(253,237,201,1) 2%, rgba(241,158,54,1) 52%, rgba(185,103,0,1) 88%);
    border-radius: 30px;
    width: 0;
    transition: width 0.3s ease;
}

/* Boost Page Styles */
.boost-page {
    display: none;
    background: linear-gradient(0deg, rgba(157,101,30,1) 5%, rgba(0,0,0,1) 45%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #ffffff;
    padding-bottom: 4rem;
}
.haeder {
    display: flex;
    align-items: center;
    padding: 1rem;
}
.haeder a {
    margin-right: 1rem;
    cursor: pointer;
}
.user-balance {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 3rem;
}
.balance-title {
    margin-bottom: 1.5rem;
}
.balance-title span {
    color: #c1c1c1;
    font-size: 1.25rem;
}
.balance-coins {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 3.5rem;
    font-weight: bold;
}
.balance-coins img {
    margin-right: 0.75rem;
}
.balance-guid {
    color: rgba(185,103,0,1);
    font-weight: 700;
    cursor: pointer;
}
.free-boosts {
    padding: 0 1rem;
}
.free-boosts-title {
    margin-bottom: 0.5rem;
    padding: 0 0.3rem;
}
.free-boosts-title h2 {
    color: #ffffff;
    font-size: 1.5rem;
}
.free-boosts-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.free-boost-button {
    cursor: pointer;
    display: flex;
    width: 50%;
    height: 4.5rem;
    margin: 0.5rem 0;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px;
    padding: 0 0.75rem;
    background-color: rgba(218, 218, 218, 0.2);
    border: 2px solid rgba(218, 218, 218, 0.02);
}
.free-boosts-detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.available {
    margin-top: 0.25rem;
    color: #919191;
    font-size: 0.75rem;
}
.m-r {
    margin-right: 0.75rem;
}
.m-l {
    margin-left: 0.75rem;
}
.boosters {
    margin-top: 3rem;
    padding: 0 1rem;
}
.boosters-title {
    margin-bottom: 1rem;
    padding: 0 0.3rem;
}
.boosters-title h2 {
    color: #ffffff;
    font-size: 1.5rem;
}
.boosters-buttons {
    width: 100%;
    border-radius: 15px;
    padding: 1.25rem;
    background-color: rgba(218, 218, 218, 0.2);
    border: 2px solid rgba(218, 218, 218, 0.02);
}
.boosters-button {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.boosters-button-detail {
    display: flex;
    align-items: center;
}
.boosters-button-image {
    background-color: rgba(218, 218, 218, 0.1);
    border: 2px solid rgba(218, 218, 218, 0.01);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4.25rem;
    height: 4.25rem;
    padding: 4px;
    margin-right: 1rem;
    border-radius: 15px;
}
.boosters-button-detail h4 {
    margin-bottom: 0.25rem;
    font-weight: 300;
    color: #c1c1c1aa;
}
.boosters-button-data {
    display: flex;
    align-items: center;
}
.boosters-button-data img {
    margin-right: 0.25rem;
}
.boosters-button-data h5 {
    font-size: 1rem;
    color: #c1c1c1aa;
    margin-right: 0.25rem;
}
.boosters-button-data p {
    color: #c1c1c1aa;
    font-size: 0.9rem;
}
.m-r-25 {
    margin-right: 0.25rem;
}
.m-b-1 {
    margin-bottom: 1rem;
}
.buy-skins {
    margin-top: 3rem;
}
.swiper {
    width: 100%;
}
.swiper-slide {
    display: flex;
    flex-direction: column;
}
.slide {
    width: 17rem !important;
    margin: 0 1rem;
    border-radius: 15px;
    padding: 1.25rem;
    height: 10rem;
    background-color: rgba(218, 218, 218, 0.2);
    border: 2px solid rgba(218, 218, 218, 0.02);
}
.skin-button {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Frens Page Styles */
.frens-page {
    display: none;
    background: linear-gradient(0deg, rgba(157,101,30,1) 5%, rgba(0,0,0,1) 45%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #ffffff;
    padding-bottom: 4rem;
}
.frens-main {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.frens-count {
    margin-bottom: 1.25rem;
    font-size: 2rem;
    font-weight: bold;
}
.frens-total-earn {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 85%;
    border-radius: 15px;
    background-color: rgba(218, 218, 218, 0.2);
    border: 2px solid rgba(218, 218, 218, 0.02);
    padding: 0.75rem;
}
.frens-total-count {
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(241,158,54,1);
}
.frens-total-count img {
    margin-left: 0.5rem;
}
.frens-total-earn div:nth-child(2) {
    display: flex;
    align-items: center;
}
.frens-total-earn div:nth-child(2) span {
    color: #ffffff;
    font-size: 1rem;
}
.leaders {
    margin-left: 0.25rem;
    color: #c1c1c16e;
}
.frens-help, 
.frens-list {
    padding: 1rem;
}
.frens-help-title, 
.frens-list-title {
    padding-left: 0.5rem;
    color: rgba(241,158,54,1);
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.frens-list-title {
    color: #ffffff;
}
.frens-help-box,
.frens-list-box {
    width: 100%;
    margin: 0 auto;
    border-radius: 15px;
    background-color: rgba(218, 218, 218, 0.2);
    border: 2px solid rgba(218, 218, 218, 0.02);
}
.frens-help-content {
    padding: 1rem;
    display: flex;
    align-items: center;
}
.frens-help-image {
    margin-right: 0.75rem;
}
.fren-help-text h5 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: #ffffff;
}
.fren-help-text div {
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
}
.fren-help-text div img {
    margin-right: 0.25rem;
}
.fren-help-text div span {
    margin-right: 0.25rem;
    color: #d7d7d798;
    font-size: 0.9rem;
}
.frens-open-detail {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}
.frens-open-detail a {
    color: #ffffff;
    font-weight: bold;
}
.frens-data {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.frens-profile {
    display: flex;
    align-items: center;
}
.frens-profile-photo {
    background-color: aquamarine;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 100%;
    margin-right: 0.75rem;
}
.frens-profile-data h4 {
    margin-bottom: 0.25rem;
    color: #ffffff;
    font-size: 1rem;
}
.frens-profile-data div {
    display: flex;
    align-items: center;
}
.frens-profile-data div img {
    margin-right: 0.30rem;
}
.frens-profile-data div span {
    margin-right: 0.30rem;
    color: #d7d7d798;
    font-size: 0.9rem;
}
.frens-data-count {
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(255, 170, 66);
}
.frens-data-count span {
    margin-right: 0.25rem;
}
.frens-invite {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.frens-invite-button {
    position: fixed;
    bottom: 10px;
    width: 23.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 1.25rem;
    background: linear-gradient(83deg, rgba(255,184,95,1) 3%, rgba(241,158,54,1) 28%, rgba(255,142,2,1) 91%);
    padding: 1rem 0;
    border-radius: 15px;
}
.frens-invite-button span {
    font-size: 1.25rem;
    font-weight: bold;
}

/* Earn Page Styles */
.earn-page {
    display: none;
    background: linear-gradient(0deg, rgba(157,101,30,1) 5%, rgba(0,0,0,1) 45%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #ffffff;
    padding-bottom: 4rem;
}
.earn-more {
    margin-top: 2rem;
    text-align: center;
}
.earn-more img {
    margin-bottom: 1rem;
    width: 80px;
    height: 80px;
}
.earn-more h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
}
.invite-bonus-box {
    margin-top: 2rem;
    padding: 0 1rem;
}
.earn-tasks-title {
    padding-left: 0.5rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}
.earn-task {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: rgba(218, 218, 218, 0.2);
    border: 2px solid rgba(218, 218, 218, 0.02);
    border-radius: 15px;
    margin-bottom: 1rem;
}
.earn-task-detail {
    display: flex;
    align-items: center;
    flex-grow: 1;
}
.earn-task-image {
    margin-right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.earn-task-image img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}
.earn-task-text {
    flex-grow: 1;
}
.earn-task-text h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}
.earn-task-text div {
    display: flex;
    align-items: center;
}
.earn-task-text div img {
    margin-right: 0.25rem;
    width: 15px;
    height: 15px;
}
.earn-task-text div span {
    color: #d7d7d798;
    font-size: 0.9rem;
}
.earn-task-action {
    margin-left: 1rem;
}
.earn-task-action button {
    background: linear-gradient(83deg, rgba(255,184,95,1) 3%, rgba(241,158,54,1) 28%, rgba(255,142,2,1) 91%);
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    white-space: nowrap;
}
.earn-task-action button:disabled {
    background: #555;
    cursor: not-allowed;
}

/* Guid Page Styles */
.guid-page {
    display: none;
    background-image: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 100%);
    color: #ffffff;
    padding-bottom: 4rem;
}
.guid-social {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    padding: 0 3rem;
}
.guid-social a {
    display: flex;
    align-items: center;
    padding: 0.75rem 2.5rem;
    border-radius: 15px;
    background-color: rgba(218, 218, 218, 0.2);
    border: 2px solid rgba(218, 218, 218, 0.02);
    color: #ffffff;
}
.guid-social a svg {
    margin-right: 0.25rem;
}
.guid-content {
    margin-top: 4rem;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.guid-title {
    margin-bottom: 4rem;
}
.guid-title h1 {
    color: #ffffff;
    font-size: 2rem;
}
.guid-help-detail {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
}
.guid-help-detail img {
    margin-right: 1.75rem;
}
.guid-help-detail h3 {
    margin-bottom: 0.25rem;
    color: #ffffff;
    font-size: 1.25rem;
}
.guid-help-detail p {
    font-size: 1rem;
    color: #c1c1c1;
}
.guid-button {
    margin-top: 5rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.guid-button a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 1.25rem;
    background: linear-gradient(83deg, rgba(255,184,95,1) 3%, rgba(241,158,54,1) 28%, rgba(255,142,2,1) 91%);
    width: 20rem;
    padding: 1rem 0;
    border-radius: 15px;
}

/* Responsive Styles */
@media screen and (min-width: 764px) {
    body {
        max-width: 450px;
        margin: 0 auto;
        background-color: #191919 !important;
        background-size: 450px;
        background-position: center;
    }
    .squad-container {
        margin: 0.5rem auto;
    }
    .slide {
        width: 19.5rem !important;
    }
    .frens-invite-button {
        width: 26.5rem;
    }
    .loading-page img {
        max-width: 60%;
        max-height: 50%;
    }
    .loader {
        bottom: 15%;
        width: 50px;
        height: 50px;
    }
    .earn-task {
        padding: 1rem 1.5rem;
    }
}