/* Global Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #0a0018;
}

/* Background Image */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-image {
    width: 100%;
    height: 100%;
}

.bg-image-mobile {
    width: 100%;
    height: 100%;
    display: none;
}

/* Content Container */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
}

/* Card Design */
.card {
    display: flex;
    flex-direction: row;
    background: linear-gradient(147deg, #610CD7 0%, #350F77 34%, #1F0C29 100%);
    border-radius: 16px;
    max-width: 800px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.left-card {
    padding-left: 20px;
}

/* Logo */
.logo {
    max-width: 230px;
    height: auto;
    margin-bottom: 20px;
}

/* Title */
.title {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.5;
}

/* Description */
.description {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.7;
}

/* Region Restricted Tag */
.restricted-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 20px;
}

/* Decorative Images */
.decorative-images {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: end;
}

/* Image Styles */
.img-coin01 {
    width: 70px;
    height: 50px;
    padding-right: 50px;
    transform: rotate(8deg);
}

.img-coin02 {
    width: 70px;
    height: 50px;
    padding-right: 10px;
}


.img-coin03 {
    width: 70px;
    height: 60px;
    padding-right: 15px;
}
.img-coin04 {
    width: 70px;
    height: 60px;
    padding-right: 20px;
}

/* Image Styles Mobile */
.img-mobile-coin01 {
    display: none;
    max-width: 33%;
    /* width: 70px;
    height: 50px;
    padding-right: 50px;
    transform: rotate(8deg); */
}

.img-mobile-coin02 {
    display: none;
    max-width: 33%;
}


.img-mobile-coin03 {
    display: none;
    max-width: 33%;
    /* width: 70px;
    height: 60px;
    padding-right: 15px; */
}

.img-blurred {
    width: 70px;
    height: 70px;
    transform: rotate(8deg);
}

.img-medium {
    width: 120px;
    height: auto;
    transform: rotate(10deg);
}

.img-large {
    width: 140px;
    height: auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .card {
        flex-direction: column;
        max-width: 90%;
    }
    .logo {
        max-width: 370px;
        margin-bottom: -130px;
    }
    .decorative-images {
        flex-direction: row;
        justify-content: space-between;
    }
    .title {
        font-size: 20px;
    }
    .description {
        font-size: 14px;
    }
    .bg-image {
        display: none;
    }
    .bg-image-mobile {
        display: block;
    }
    .img-coin01 {
        display: none;
    }
    .img-mobile-coin01 {
        display: block;
    }
    .img-coin02 {
        display: none;
    }
    .img-mobile-coin02 {
        display: block;
    }
    .img-coin03 {
        display: none;
    }
    .img-mobile-coin03 {
        display: block;
    }
    .img-coin04 {
        display: none;
    }
}