* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #001f39;
    color: #e9f4ff;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-alert {
    background: #041422;
    padding: 11px 0;
    font-size: 14px;
    display: flex;
    justify-content: center;
}

.alert-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header {
    position: relative;
}

.header::after {
    content: '';
    position: absolute;
    inset: 0;
    zoom: 2;
    background: url(../imgs/header.png) center -555px;
    image-rendering: pixelated;
}

.header-inner {
    position: relative;
    z-index: 2;
    padding: 20px 0;
    min-height: 179px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    font-size: 65px;
    font-weight: 800;
    background: url(../imgs/logo.png);
    width: 400px;
    height: 150px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.header-right > * {
    flex: 0 1 auto;
}

.btn-register {
    position: relative;
    padding: 12px 24px;
    color: #fff;
    background: linear-gradient(to bottom, #00b033 0%, #00b034 50%, #008926 50%, #008926 100%);
    border: 2px solid #000000;
    border-radius: 7px;
    cursor: pointer;
    font-weight: bold;
}

.btn-register:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #00ff4f;
    border-radius: 4px;
    pointer-events: none;
}

.btn-register:hover {
    opacity: 0.9;
}

.online {
    font-size: 14px;
    background: hsl(0deg 0% 0% / 71%);
    padding: 9px 25px;
    border-radius: 5px;
}

.online b {
    font-size: 15px;
}

.nav {
    background: #000e1f;
    border: 1px solid #00416f;
    position: relative;
}

.nav .container {
    display: flex;
    flex-direction: column;
}

.nav-toggle {
    display: none;
    padding: 14px 20px;
    cursor: pointer;
    font-weight: 600;
    color: #00aaff;
    background: #071c2e;
    border-bottom: 2px solid #00a6e7;
}

.nav-menu {
    list-style: none;
    display: flex;
    width: 100%;
}

.nav-menu li {
    padding: 14px 22px;
    cursor: pointer;
    font-weight: 600;
    border-right: 1px solid #081b32;
    display: flex;
    font-size: 18px;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.nav-menu .active {
    color: #1e96d2;
    background: #061a33;
    border-bottom: 2px solid #00a6e7;
    opacity: 1!important;
}

.nav-menu li:hover {
    opacity: 0.9;
    background: #0b1d32;
}

.main {
    margin: 25px auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 25px;
}

.card {
    background: #001124;
    border-radius: 14px;
    padding: 22px;
    border: 1px solid #003761;
    border-left: 5px solid #0062a7;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
}

.card h2 {
    font-size: 22px;
}

.novedades {
    grid-column: span 7;
}

.login-section {
    grid-column: span 5;
}

.news {
    grid-column: span 12;
}

.furnis {
    grid-column: span 6;
}

.placas {
    grid-column: span 6;
}

.login-container {
    display: flex;
    background: #04192a;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    min-height: 180px;
    flex: 1;
}

.login-image {
    flex: 1;
    background: url(../imgs/user_login.png) center/cover no-repeat;
    image-rendering: pixelated;
    min-height: 180px;
    margin-top: 25px;
}

.login-divider {
    width: 2px;
    background: #00223f;
    border-left: 1px solid #000;
    margin: 10px 0;
}

.login-form-container {
    flex: 1;
    padding: 20px;
    display: flex;
    align-items: center;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.form-field label {
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
    color: #ffffff;
    font-weight: bold;
}

.login-form input {
    padding: 10px 15px;
    border-radius: 8px;
    background: #00294a;
    border: 1px solid #003158;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.8);
    color: #fff;
    width: 100%;
}
.login-form input::placeholder {
  color: #4f8196;
}

.btn-login {
    position: relative;
    padding: 12px 24px;
    color: #fff;
    background: linear-gradient(to bottom, #00b033 0%, #00b034 50%, #008926 50%, #008926 100%);
    border: 2px solid #000000;
    border-radius: 7px;
    cursor: pointer;
    width: 100%;
}
.btn-login:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #00ff4f;
    border-radius: 4px;
    pointer-events: none;
}
.btn-login:hover {
    opacity: 0.8;
}
.login-tip {
    background: #04192a;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
    border: 1px solid #003761;
    border-left: 5px solid #0062a7;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.btn-discord-full {
    position: relative;
    padding: 12px 24px;
    color: #fff;
    background: linear-gradient(to bottom, #6978b9 0%, #6978b9 50%, #425398 50%, #435299 100%);
    border: 2px solid #000000;
    border-radius: 7px;
    cursor: pointer;
    width: 100%;
}
.btn-discord-full:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #a2c0ce;
    border-radius: 4px;
    pointer-events: none;
}
.btn-discord-full:hover {
    opacity: 0.8;
}
.news-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.news-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 5px solid #000c1d;
}

.news-item img {
    width: 100%;
    display: block;
}

.news-item span {
    position: absolute;
    top: 15px;
    left: 15px;
    width: calc(100% - 50px);
    background: rgb(0 0 0 / 70%);
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-item-desc{
    position: absolute;
    top: 51px;
    left: 15px;
    width: calc(100% - 50px);
    background: rgb(0 0 0 / 65%);
    padding: 6px 17px;
    border-radius: 4px;
    font-size: 12px;
}
.news-item-show {
    position: absolute;
    bottom: 13px;
    right: 15px;
    width: 90px;
    background: rgb(0 0 0 / 70%);
    padding: 6px 17px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
    font-weight: bold;
}
.news-item-show:hover {
    opacity: 0.8;
}
.grid-section {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    justify-content: center;
    flex-flow: wrap;
}

.square {
    border-radius: 10px;
    background: #00294a;
    border: 1px solid #003158;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.8);
    width: 55px;
    height: 54px;
    display: grid;
    place-items: center;
    text-align: center;
}

footer {
    background: #041422;
    margin-top: 40px;
    padding: 30px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 15px;
}

.icon-header-1 {
    width: 32px;
    height: 32px;
    background: url(../imgs/sprites.png);
    background-position: -9px -10px;
    margin-right: 13px;
}

.icon-header-2 {
    width: 32px;
    height: 32px;
    background: url(../imgs/sprites.png);
    background-position: -9px -57px;
    margin-right: 13px;
}

.icon-header-3 {
    width: 32px;
    height: 32px;
    background: url(../imgs/sprites.png);
    background-position: -9px -106px;
    margin-right: 13px;
}

.icon-header-4 {
    width: 32px;
    height: 32px;
    background: url(../imgs/sprites.png);
    background-position: -9px -153px;
    margin-right: 13px;
}

.icon-header-5 {
    width: 32px;
    height: 32px;
    background: url(../imgs/sprites.png);
    background-position: -9px -195px;
    margin-right: 13px;
}

.icon-header-6 {
    width: 32px;
    height: 32px;
    background: url(../imgs/sprites.png);
    background-position: -9px -243px;
}
.icon-header-7 {
    width: 32px;
    height: 27px;
    background: url(../imgs/shop.png);
    background-size: contain;
    margin-right: 13px;
}
.icon-header-lock {
    width: 23px;
    height: 28px;
    background: url(../imgs/lock_icon.png);
    image-rendering: pixelated;
    margin-right: 9px;
    margin-top: -1px;
}

.card-content-header {
    background: url(../imgs/header_new.png);
    background-size: cover;
    border-radius: 9px;
    padding: 13px 20px;
    border: 1px solid #006ab0;
    position: relative;
    z-index: 2;
}

.card-content-header-title {
    background: hsl(0deg 0% 0% / 60%);
    padding: 6px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.card-content-header-icon {
    width: 49px;
    height: 26px;
    background: url(../imgs/new.png);
    background-size: cover;
    image-rendering: pixelated;
    margin-right: 10px;
    border-radius: 2px;
    flex-shrink: 0;
}

.card-subtitle {
    margin-top: 10px;
}

.card-content-new {
    font-size: 15px;
    margin-top: 14px;
    line-height: 1.5;
}

.card-content-new-hr {
    height: 2px;
    background: #000000;
    border-bottom: 1px solid #001d37;
    margin: 9px 0;
}

.card-content-new-developer {
    font-size: clamp(22px, 4vw, 27px);
    text-align: center;
    font-weight: bold;
    margin: auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 20px 0;
    position: relative;
}
.card-content-new-developer::after{
    content: '';
    position: absolute;
    inset: 0;
    background: url(../imgs/sparkles.png?1);
    background-repeat: no-repeat;
    image-rendering: pixelated;
    opacity: 0.3;
}
.card-content-title{
    display: flex;
}
.card-content-title-divider{
    width: 2px;
    background: #00223f;
    border-left: 1px solid #000;
    margin-left: 11px;
    margin-right: 5px;
    height: 25px;
    margin-top: 3px;
}
.card-content-title-desc{
    display: flex;
    margin-left: 7px;
    font-size: 14px;
    margin-top: 5px;
}
@media (max-width: 1024px) {
    .main {
        grid-template-columns: 1fr!important;
        gap: 20px;
    }
    
    .novedades,
    .login-section,
    .news,
    .furnis,
    .placas {
        grid-column: span 1;
    }
    
    .login-container {
        flex-direction: column;
    }
    
    .login-divider {
        width: 100%;
        height: 2px;
        margin: 0;
        border-left: none;
        border-top: 1px solid #000;
    }
    
    .login-image {
        min-height: 150px;
    }
    
    .card-content-new-developer {
        font-size: clamp(24px, 5vw, 32px);
    }
}
@media (max-width: 1040px) {
    .header-inner {
        flex-direction: column;
        height: auto;
        gap: 20px;
        padding: 20px 0;
    }
}
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        height: auto;
        gap: 20px;
        padding: 20px 0;
    }
    
    .logo {
        font-size: 50px;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
    }
    
    .nav-menu.show {
        display: flex;
    }
    
    .nav-menu li {
        padding: 12px 20px;
        font-size: 16px;
        border-right: none;
        border-bottom: 1px solid #081b32;
    }
    
    .news-items {
        grid-template-columns: 1fr;
    }
    
    
    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .card-content-new-developer {
        font-size: clamp(22px, 6vw, 28px);
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 40px;
    }
    
    .header-right {
        flex-direction: column;
        gap: 10px;
    }
    
    .grid-section {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }
    
    .card {
        padding: 15px;
        min-height: 250px;
    }
    
    .card-content-new {
        font-size: 16px;
    }
    
    .card-content-new-developer {
        font-size: clamp(20px, 7vw, 26px);
        padding: 30px 0;
    }
    .card-content-header-title{
        flex-wrap: nowrap;
    }
    .news-item-desc{
        max-height: 62px;
        overflow: auto;
    }
}
.dashboard-welcome { grid-column: span 7; }
.dashboard-discord,
.dashboard-rooms { grid-column: span 5; }
.dashboard-events { grid-column: span 7; }
.dashboard-photos { grid-column: span 12; }
.dashboard-news { grid-column: span 12; }

.card-dash-header {
    background: url(../imgs/header_new.png);
    background-size: cover;
    border-radius: 9px;
    padding: 10px 20px 10px 15px;
    border: 1px solid #006ab0;
    position: relative;
    z-index: 2;
}

.card-dash-header-title {
    background: hsl(0deg 0% 0% / 60%);
    padding: 6px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    cursor: pointer;
    font-weight: bold;
}

.welcome-layout {
    display: flex;
    gap: 10px;
}

.avatar-box {
    width: 120px;
    height: 100%;
    background: url(../imgs/content_user.png);
    border-radius: 10px;
    border: 1px solid #044672;
    position: relative;
}

.welcome-data {
    width: 100%;
}

.welcome-data span { color: #00aaff; }

.welcome-stats {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.stat {
    flex: 1;
    text-align: center;
    position: relative;
    color: #fff;
    border: 1px solid #000000;
    border-radius: 7px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 12px;
}

.stat.blue {background: linear-gradient(to bottom, #0572b9 0%, #0572bb 50%, #004b7c 50%, #004c7d 100%);}
.stat.blue:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #45b6ff;
    border-radius: 4px;
    pointer-events: none;
}
.stat.green {background: linear-gradient(to bottom, #00b033 0%, #00b034 50%, #008926 50%, #008926 100%);}
.stat.green:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #00ff4f;
    border-radius: 4px;
    pointer-events: none;
}
.stat.gold {background: linear-gradient(to bottom, #e2c700 0%, #dfc200 50%, #cf8300 50%, #cf8300 100%);}
.stat.gold:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #fcfe4d;
    border-radius: 4px;
    pointer-events: none;
}
.welcome-mission {
    font-size: 13px;
    margin: 8px 0px;
    background: linear-gradient(176deg,rgba(0, 24, 40, 1) 0%, rgba(0, 40, 65, 1) 100%);
    border: 1px solid #0082dd;
    border-radius: 6px;
    padding: 10px 14px;
}

.welcome-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-row {
    display: flex;
    justify-content: space-between;
    background: #04192a;
    padding: 15px;
    border-radius: 10px;
    margin-top: 12px;
}

.event-info p {
    font-size: 13px;
    opacity: 0.9;
}

.event-time {
    display: flex;
    gap: 8px;
    place-items: center;
    align-items: center;
}

.event-time div {
    background: linear-gradient(to bottom, #f0f2f4 0%, #ffffff 50%, #dadcde 50%, #dadcde 100%);
    border: 1px solid #000000;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    width: 38px;
    height: 37px;
    text-align: center;
    color: #585858;
    padding-top: 9px;
    font-size: 13px;
}

.event-time span {
    display: block;
    font-size: 11px;
    color: #fff;
    margin-top: 7px;
}

.room-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #04192a;
    padding: 8px 9px;
    border-radius: 10px;
    margin-top: 10px;
}

.room-icon {
    width: 55px;
    height: 55px;
    background: #00294a;
    border-radius: 6px;
}

.room-info small {
    font-size: 12px;
    opacity: 0.8;
}

.room-users {
    margin-left: auto;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    display: flex;
}

.room-users.green{
    background: linear-gradient(to bottom, #00c227 0%, #00c227 50%, #00a417 50%, #00a417 100%);
    border: 1px solid #43ff65;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.7);
}
.room-users.yellow{
    background: linear-gradient(to bottom, #ffba00 0%, #ffba00 50%, #e57700 50%, #e57700 100%);
    border: 1px solid #ffe052;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.7);
}
.room-users.red{
    background: linear-gradient(to bottom, #cc0000 0%, #cc0000 50%, #af0101 50%, #af0000 100%);
    border: 1px solid #ffb3b3;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.7);
}
.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px,1fr));
    gap: 15px;
    margin-top: 15px;
}

.photo-item {
    background: #04192a;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    border: 1px solid #0082dd;
}

.photo-img {
    height: 120px;
    background: #00294a;
    position: relative;
}

.photo-item span {
    display: block;
    padding: 8px;
    font-size: 14px;
    background: #000000ad;
    width: fit-content;
    border-radius: 4px;
    position: absolute;
    bottom: 10px;
    left: 10px;
}
.news-banner {
    height: 220px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    margin-top: 16px;
    border: 1px solid #0082dd;
}

.news-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.news-overlay h3 {
    font-size: 20px;
    background: hsl(0deg 0% 0% / 60%);
    margin-right: 15px;
    border-radius: 2px;
    padding: 5px 10px;
    max-width: 500px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-overlay p {
    font-size: 14px;
    margin: 5px 0;
    background: hsl(0deg 0% 0% / 30%);
    margin-right: 15px;
    border-radius: 2px;
    padding: 5px 10px;
    margin-top: 6px;
    max-width: 500px;
}

.news-overlay a {
    font-size: 15px;
    text-decoration: underline;
    background: hsl(0deg 0% 0% / 60%);
    margin-right: 15px;
    border-radius: 2px;
    padding: 5px 10px;
    position: absolute;
    bottom: 13px;
    right: 20px;
    width: 110px;
    text-align: center;
}
.currency-icon-zafiro{
    background: url(../imgs/diamonds.png);
    width: 15px;
    height: 15px;
    margin-top: -2px;
}
.currency-icon-crown{
    background: url(../imgs/credits.png);
    width: 14px;
    height: 15px;
}
.currency-icon-cash{
    background: url(../imgs/esmeraldas.png);
    width: 11px;
    height: 11px;
}
.home-icon-user{
    background: url(../imgs/user_icon.png);
    width: 16px;
    height: 19px;
    margin-right: 7px;
}
.home-icon-motto{
    background: url(../imgs/user_icon.png);
    width: 16px;
    height: 19px;
    margin-right: 7px;
}
.home-icon-discord{
    background: url(../imgs/discord_icon.png);
    width: 28px;
    height: 22px;
    margin-right: 7px;
}
.home-icon-events{
    background: url(../imgs/events_icon.png);
    width: 30px;
    height: 30px;
    margin-right: 7px;
}
.home-icon-rooms{
    background: url(../imgs/rooms_icon.png);
    background-size: cover;
    width: 40px;
    height: 29px;
    margin-right: 7px;
    image-rendering: pixelated;
}
.home-icon-rooms-1{
    background: url(../imgs/rooms_1.png);
    background-size: cover;
    width: 48px;
    height: 45px;
    margin: 5px 4px;
    image-rendering: pixelated;
}
.home-icon-rooms-2{
    background: url(../imgs/rooms_2.png);
    background-size: cover;
    width: 48px;
    height: 45px;
    margin: 5px 4px;
    image-rendering: pixelated;
}
.home-icon-rooms-3{
    background: url(../imgs/rooms_3.png);
    background-size: cover;
    width: 48px;
    height: 45px;
    margin: 5px 4px;
    image-rendering: pixelated;
}
.home-icon-users_room{
    background: url(../imgs/users_room_icon.png);
    background-size: cover;
    width: 10px;
    height: 11px;
    margin-right: 5px;
    image-rendering: pixelated;
    margin-top: 3px;
}
.home-icon-news{
    background: url(../imgs/news_icon.png);
    width: 30px;
    height: 30px;
    margin-right: 7px;
}
.home-icon-camera{
    background: url(../imgs/camera_icon.png);
    width: 28px;
    height: 22px;
    margin-right: 7px;
}
.last-connection{
    font-size: 13px;
    width: 100%;
    background: linear-gradient(176deg, rgba(0, 24, 40, 1) 0%, rgba(0, 40, 65, 1) 100%);
    border: 1px solid #0082dd;
    border-radius: 6px;
    padding: 10px 14px;
}
.btn-enter-hotel {
    position: relative;
    padding: 12px 2px;
    color: #fff;
    background: linear-gradient(to bottom, #00b033 0%, #00b034 50%, #008926 50%, #008926 100%);
    border: 2px solid #000000;
    border-radius: 7px;
    cursor: pointer;
    font-weight: bold;
    width: 250px;
}

.btn-enter-hotel:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #00ff4f;
    border-radius: 4px;
    pointer-events: none;
}

.btn-enter-hotel:hover {
    opacity: 0.9;
}
.me-avatar-plat{
    background: url(../imgs/plat_blue.png);
    width: 108px;
    height: 68px;
    position: absolute;
    zoom: 1;
    image-rendering: pixelated;
    margin-top: 35px;
    margin-left: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.card-box-header {
    background: url(../imgs/header_new.png);
    background-size: cover;
    border-radius: 9px;
    padding: 5px 6px;
    border: 1px solid #006ab0;
    position: relative;
    z-index: 2;
}

.card-box-header-title {
    background: hsl(0deg 0% 0% / 60%);
    padding: 6px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-weight: bold;
    position: relative;
}
.discord-list{
    margin: 20px;
    height: 70px;
}
.event-info-title {
    background: hsl(0deg 0% 0% / 60%);
    margin-right: 15px;
    border-radius: 2px;
    padding: 5px 10px;
}
.event-info-desc{
    background: hsl(0deg 0% 0% / 30%);
    margin-right: 15px;
    border-radius: 2px;
    padding: 5px 10px;
    margin-top: 6px;
}
.room-info{
    display: grid;
    gap: 2px;
}


@media (max-width: 1200px) {
    .news-banner{
        background-size: cover!important;
    }
    
    .photos-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 992px) {
    .welcome-layout {
        flex-direction: column;
        align-items: center;
    }
    
    .avatar-box {
        width: 180px;
        height: 180px;
        margin-bottom: 15px;
    }
    
    .welcome-data {
        width: 100%;
    }
    
    .welcome-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-enter-hotel {
        width: 100%;
    }
    
    .event-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .event-time {
        justify-content: center;
    }
}

@media (max-width: 768px) {
        .dashboard-welcome,
    .dashboard-discord,
    .dashboard-rooms,
    .dashboard-events,
    .dashboard-photos,
    .dashboard-news {
        grid-column: span 1;
    }
    .welcome-stats {
        flex-direction: column;
        gap: 8px;
    }
    
    .stat {
        width: 100%;
        padding: 8px 15px;
    }
    
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .photo-img {
        height: 100px;
    }
    
    .room-item {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .room-info {
        flex: 1;
        min-width: 200px;
    }
    
    .room-users {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
    
    .news-banner {
        height: 180px;
    }
    
    .news-overlay h3 {
        font-size: 18px;
        max-width: 100%;
    }
    
    .news-overlay p {
        font-size: 13px;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .card {
        padding: 15px;
    }
    .news-banner{
        background-size: inherit!important;
        background-position: right!important;
    }
    .card-dash-header,
    .card-box-header {
        padding: 8px 12px;
    }
    
    .welcome-mission,
    .last-connection {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .photos-grid {
        grid-template-columns: 1fr;
    }
    
    .photo-img {
        height: 140px;
    }
    
    .room-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }
    
    .room-icon {
        align-self: center;
    }
    
    .room-info {
        text-align: center;
        width: 100%;
    }
    
    .room-users {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    
    .event-time div {
        width: 35px;
        height: 35px;
        padding-top: 8px;
        font-size: 12px;
    }
    
    .event-time span {
        font-size: 10px;
    }
    
    .news-banner {
        height: 150px;
    }
    
    .news-overlay {
        padding: 15px;
    }
    
    .news-overlay h3 {
        font-size: 16px;
    }
    
    .news-overlay p {
        font-size: 12px;
    }
    
    .news-overlay a {
        font-size: 13px;
        padding: 4px 8px;
        bottom: 10px;
        right: 15px;
        width: 90px;
    }
}

@media (max-width: 480px) {
    .avatar-box {
        width: 150px;
        height: 150px;
    }
    
    .card-dash-header-title,
    .card-box-header-title {
        font-size: 14px;
        padding: 5px 8px;
    }
    
    .home-icon-user,
    .home-icon-discord,
    .home-icon-events,
    .home-icon-rooms,
    .home-icon-news,
    .home-icon-camera {
        margin-right: 5px;
    }
    
    .discord-list {
        margin: 10px 0;
        height: auto;
    }
    
    .btn-discord-full,
    .btn-enter-hotel {
        padding: 10px 20px;
        font-size: 14px;
    }
}
.showmee{
    position: absolute;
    right: 16px;
    text-decoration: underline;
    cursor: pointer;
    top: 9px;
}
.header-link{
    display:flex;
    align-items:center;
}
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #4169e1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #2f55d4;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #4169e1 transparent;
}
.pin-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 31, 57, 0.95);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pin-container {
    background: #001124;
    border-radius: 14px;
    padding: 30px;
    width: 450px;
    border: 1px solid #003761;
    border-left: 5px solid #0062a7;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 10px 30px rgba(0,0,0,0.5);
}

.pin-header {
    background: url(../imgs/header_new.png);
    background-size: cover;
    border-radius: 9px;
    padding: 13px 20px;
    border: 1px solid #006ab0;
    margin-bottom: 25px;
}

.pin-title-content {
    background: hsl(0deg 0% 0% / 60%);
    padding: 8px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.pin-lock-icon {
    width: 23px;
    height: 28px;
    background: url(../imgs/lock_icon.png);
    image-rendering: pixelated;
    margin-right: 12px;
    filter: brightness(1.5);
}

.pin-title {
    color: #e9f4ff;
    font-size: 20px;
    font-weight: bold;
}

.pin-subtitle {
    color: #8ca8cc;
    font-size: 15px;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.5;
}

.pin-input {
    width: 100%;
    padding: 16px 20px;
    background: #00294a;
    border: 1px solid #003158;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.8);
    border-radius: 10px;
    color: #fff;
    font-size: 20px;
    text-align: center;
    letter-spacing: 8px;
    margin-bottom: 25px;
    outline: none;
    font-family: monospace;
}

.pin-input::placeholder {
    color: #4f8196;
    letter-spacing: normal;
}

.pin-input:focus {
    border-color: #00aaff;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.8), 0 0 10px rgba(0, 170, 255, 0.3);
}

.pin-button {
    position: relative;
    padding: 14px 24px;
    color: #fff;
    background: linear-gradient(to bottom, #00b033 0%, #00b034 50%, #008926 50%, #008926 100%);
    border: 2px solid #000000;
    border-radius: 7px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    font-size: 16px;
    transition: opacity 0.3s;
}

.pin-button:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #00ff4f;
    border-radius: 4px;
    pointer-events: none;
}

.pin-button:hover {
    opacity: 0.9;
}

.pin-footer {
    text-align: center;
    color: #6c8bb5;
    font-size: 13px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #003158;
}

@media (max-width: 768px) {
    .pin-container {
        width: 90%;
        max-width: 400px;
        padding: 20px;
        margin: 20px;
    }
    
    .pin-title {
        font-size: 18px;
    }
    
    .pin-subtitle {
        font-size: 14px;
    }
    
    .pin-input {
        padding: 14px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .pin-container {
        padding: 15px;
    }
    
    .pin-title-content {
        padding: 6px 12px;
    }
    
    .pin-title {
        font-size: 16px;
    }
    
    .pin-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .pin-button {
        padding: 12px 20px;
        font-size: 14px;
    }
}
.support-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 25px auto;
}

.support-selector {
    grid-column: 1;
}

.support-left {
    grid-column: 1;
}

.support-right {
    grid-column: 1;
}

.support-selector {
    background: #001124;
    border-radius: 14px;
    padding: 0;
    border: 1px solid #003761;
    border-left: 5px solid #0062a7;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    min-height: auto;
}

.support-tabs {
    display: flex;
    background: #04192a;
    border-radius: 12px;
    overflow: hidden;
    margin: 6px;
}

.support-tab {
    flex: 1;
    padding: 9px 15px;
    text-align: center;
    color: #8ca8cc;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    border-right: 1px solid #003158;
    transition: all 0.3s;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-tab:last-child {
    border-right: none;
}

.support-tab:hover {
    background: #0b2741;
    color: #e9f4ff;
}

.support-tab.active {
    background: linear-gradient(to bottom, #0572b9 0%, #0572bb 50%, #004b7c 50%, #004c7d 100%);
    color: #fff;
    border: 2px solid #000000;
    position: relative;
}

.support-tab.active:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #45b6ff;
    border-radius: 4px;
    pointer-events: none;
}

.card-box-header-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 16px;
    font-weight: bold;
    color: #e9f4ff;
}

.support-status {
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    position: relative;
    white-space: nowrap;
}

.support-status.correct {
    background: linear-gradient(to bottom, #00b033 0%, #00b034 50%, #008926 50%, #008926 100%);
    border: 2px solid #000000;
}

.support-status.correct:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #00ff4f;
    border-radius: 4px;
    pointer-events: none;
}

.support-description {
    background: #04192a;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #00416f;
    margin: 20px 0 30px 0;
    line-height: 1.6;
}

.support-description p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #e9f4ff;
}

.support-description p:last-child {
    margin-bottom: 0;
}

.support-actions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

.actions-column {
    background: #001124;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #003761;
    border-left: 5px solid #0062a7;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.correct-actions {
    border-left: 5px solid #00b033;
}

.incorrect-actions {
    border-left: 5px solid #cc0000;
}

.column-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #003158;
}

.column-header h3 {
    font-size: 20px;
    color: #e9f4ff;
    margin: 0;
    font-weight: bold;
}

.actions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.actions-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 55, 97, 0.3);
    color: #e9f4ff;
    font-size: 15px;
}

.actions-list li:last-child {
    border-bottom: none;
}

.list-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.correct-bullet {
    background: #00ff4f;
    box-shadow: 0 0 8px #00ff4f;
}

.incorrect-bullet {
    background: #ff4f4f;
    box-shadow: 0 0 8px #ff4f4f;
}

.rules-content {
    padding: 20px 0;
}

.rules-text {
    background: #04192a;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #00416f;
    line-height: 1.6;
}

.rules-text p {
    margin-bottom: 10px;
    font-size: 15px;
    color: #e9f4ff;
}

.rules-text p:last-child {
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .support-main {
        grid-template-columns: 2fr 1fr;
        grid-template-areas: 
            "selector selector"
            "left right";
    }
    
    .support-selector {
        grid-area: selector;
    }
    
    .support-left {
        grid-area: left;
    }
    
    .support-right {
        grid-area: right;
    }
    
    .support-actions-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .support-main {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "selector"
            "left"
            "right";
    }
    
    .support-actions-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .support-main {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "selector"
            "left"
            "right";
        gap: 20px;
        padding: 0 15px;
    }
    .support-status.correct{
        display: none;
    }
    .support-tabs {
        flex-direction: column;
    }
    
    .support-tab {
        border-right: none;
        border-bottom: 1px solid #003158;
        padding: 9px 16px;
        min-height: 45px;
    }
    
    .support-tab:last-child {
        border-bottom: none;
    }
    
    .card-box-header-title {
        align-items: flex-start;
        gap: 15px;
        font-size: 18px;
    }
    
    .support-status {
        align-self: flex-start;
    }
    
    .support-description {
        padding: 15px;
        margin: 15px 0 20px 0;
    }
    
    .support-description p {
        font-size: 15px;
    }
    
    .support-actions-grid {
        gap: 15px;
    }
    
    .actions-column {
        padding: 15px;
    }
    
    .column-header h3 {
        font-size: 18px;
    }
    
    .actions-list li {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .rules-text {
        padding: 15px;
    }
    
    .rules-text p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .support-main {
        padding: 0 10px;
        gap: 15px;
    }
    
    .support-tab {
        font-size: 15px;
        padding: 12px 14px;
    }
    
    .card-box-header-title {
        font-size: 16px;
    }
    
    .support-status {
        padding: 6px 14px;
        font-size: 13px;
    }
    
    .support-description p {
        font-size: 14px;
    }
    
    .actions-list li {
        font-size: 13px;
    }
    
    .list-bullet {
        width: 10px;
        height: 10px;
    }
    
    .column-header h3 {
        font-size: 16px;
    }
}
.effects-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 25px auto;
}

.effects-selector {
    background: #001124;
    border-radius: 14px;
    padding: 0;
    border: 1px solid #003761;
    border-left: 5px solid #0062a7;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.effects-tabs {
    display: flex;
    background: #04192a;
    border-radius: 12px;
    overflow: hidden;
    margin: 6px;
}

.effects-tab {
    flex: 1;
    padding: 12px 16px;
    text-align: center;
    color: #8ca8cc;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    border-right: 1px solid #003158;
    transition: all 0.3s;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.effects-tab:last-child {
    border-right: none;
}

.effects-tab:hover {
    background: #0b2741;
    color: #e9f4ff;
}

.effects-tab.active {
    background: linear-gradient(to bottom, #0572b9 0%, #0572bb 50%, #004b7c 50%, #004c7d 100%);
    color: #fff;
    border: 2px solid #000000;
    position: relative;
}

.effects-tab.active:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #45b6ff;
    border-radius: 4px;
    pointer-events: none;
}

.effects-header {
    grid-column: 1;
}

.effects-intro {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 20px 0;
}

.effects-intro-text {
    flex: 2;
}

.effects-intro-text p {
    margin-bottom: 15px;
    color: #e9f4ff;
    line-height: 1.6;
    font-size: 16px;
}

.effects-intro-text b {
    color: #00aaff;
}

.effects-command {
    background: #00294a;
    border: 1px solid #003158;
    border-radius: 8px;
    padding: 12px 20px;
    margin-top: 15px;
    font-family: monospace;
    font-size: 16px;
    color: #00ff4f;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.8);
}

.effects-intro-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.effects-image-placeholder {
    width: 100%;
    max-width: 498px;
    min-width: 498px;
    height: 180px;
    background: url(../imgs/enables.gif);
    background-size: cover;
    background-position: center;
    image-rendering: pixelated;
    border-radius: 10px;
    border: 1px solid #00416f;
}

.effects-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(188px, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.effects-item {
    background: #001124;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #003761;
    border-left: 5px solid #0062a7;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.effects-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.effects-vip-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(to bottom, #e2c700 0%, #dfc200 50%, #cf8300 50%, #cf8300 100%);
    color: #000;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    border: 2px solid #000000;
    z-index: 2;
}

.effects-vip-badge:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border: 1px solid #fcfe4d;
    border-radius: 2px;
    pointer-events: none;
}

.effects-image {
    width: 150px;
    height: 150px;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    image-rendering: pixelated;
    margin: 0 auto 15px auto;
    border-radius: 8px;
    border: 1px solid #00416f;
}

.effects-number {
    color: #3271a5;
    font-size: 16px;
    font-weight: bold;
    font-family: monospace;
}

.effects-pagination {
    text-align: center;
    padding: 20px;
}

.pagination {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #00294a;
    border: 1px solid #003158;
    border-radius: 8px;
    color: #8ca8cc;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.8);
}

.page-number:hover {
    background: #003761;
    color: #e9f4ff;
    border-color: #00aaff;
}

.page-number.active {
    background: linear-gradient(to bottom, #0572b9 0%, #0572bb 50%, #004b7c 50%, #004c7d 100%);
    color: #fff;
    border: 2px solid #000000;
    position: relative;
    opacity: 0.9;
}

.page-number.active:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #45b6ff;
    border-radius: 4px;
    pointer-events: none;
}

.page-separator {
    color: #4f8196;
    font-weight: bold;
    font-size: 18px;
}

@media (max-width: 1068px) {
    .effects-intro {
        flex-direction: column;
        gap: 20px;
    }
    
    .effects-intro-image {
        width: 100%;
    }
    
    .effects-image-placeholder {
        height: 150px;
        min-width: 110px;
    }
    
    .effects-tabs {
        flex-direction: column;
    }
    
    .effects-tab {
        border-right: none;
        border-bottom: 1px solid #003158;
        padding: 14px 16px;
        min-height: 50px;
    }
    
    .effects-tab:last-child {
        border-bottom: none;
    }
    
    .effects-number {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .effects-main {
        padding: 0 15px;
        gap: 20px;
    }
    
    .effects-grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .effects-item {
        padding: 10px;
    }
    
    .effects-image {
        width: 80px;
        height: 80px;
    }
    
    .effects-vip-badge {
        font-size: 10px;
        padding: 3px 8px;
        top: 5px;
        left: 5px;
    }
    
    .effects-number {
        font-size: 13px;
    }
    
    .effects-command {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .effects-intro-text p {
        font-size: 15px;
    }
    
    .page-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .effects-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .effects-image {
        width: 100px;
        height: 100px;
    }
}
.effects-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 25px auto;
}

.effects-selector {
    background: #001124;
    border-radius: 14px;
    padding: 0;
    border: 1px solid #003761;
    border-left: 5px solid #0062a7;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.effects-tabs {
    display: flex;
    background: #04192a;
    border-radius: 12px;
    overflow: hidden;
    margin: 6px;
}

.effects-tab {
    flex: 1;
    padding: 12px 16px;
    text-align: center;
    color: #8ca8cc;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    border-right: 1px solid #003158;
    transition: all 0.3s;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.effects-tab:last-child {
    border-right: none;
}

.effects-tab:hover {
    background: #0b2741;
    color: #e9f4ff;
}

.effects-tab.active {
    background: linear-gradient(to bottom, #0572b9 0%, #0572bb 50%, #004b7c 50%, #004c7d 100%);
    color: #fff;
    border: 2px solid #000000;
    position: relative;
}

.effects-tab.active:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #45b6ff;
    border-radius: 4px;
    pointer-events: none;
}

.effects-header {
    grid-column: 1;
}

.effects-intro {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 20px 0;
}

.effects-intro-text {
    flex: 2;
}

.effects-intro-text p {
    margin-bottom: 15px;
    color: #e9f4ff;
    line-height: 1.6;
    font-size: 16px;
}

.effects-intro-text b {
    color: #00aaff;
}

.effects-command {
    background: #00294a;
    border: 1px solid #003158;
    border-radius: 8px;
    padding: 12px 20px;
    margin-top: 15px;
    font-family: monospace;
    font-size: 16px;
    color: #00ff4f;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.8);
}

.effects-intro-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.effects-image-placeholder {
    width: 100%;
    max-width: 498px;
    min-width: 498px;
    height: 180px;
    background: url(../imgs/transforms.gif);
    background-size: cover;
    background-position: center;
    image-rendering: pixelated;
    border-radius: 10px;
    border: 1px solid #00416f;
}

.effects-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(188px, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.effects-item {
    background: #001124;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #003761;
    border-left: 5px solid #0062a7;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.effects-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.effects-image {
    width: 150px;
    height: 150px;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    image-rendering: pixelated;
    margin: 0 auto 15px auto;
    border-radius: 8px;
    border: 1px solid #00416f;
}

.effects-number {
    color: #3271a5;
    font-size: 16px;
    font-weight: bold;
    text-transform: capitalize;
    line-height: 1.3;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.effects-pagination {
    text-align: center;
    padding: 20px;
}

.pagination {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #00294a;
    border: 1px solid #003158;
    border-radius: 8px;
    color: #8ca8cc;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.8);
}

.page-number:hover {
    background: #003761;
    color: #e9f4ff;
    border-color: #00aaff;
}

.page-number.active {
    background: linear-gradient(to bottom, #0572b9 0%, #0572bb 50%, #004b7c 50%, #004c7d 100%);
    color: #fff;
    border: 2px solid #000000;
    position: relative;
    opacity: 0.9;
}

.page-number.active:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #45b6ff;
    border-radius: 4px;
    pointer-events: none;
}

.page-separator {
    color: #4f8196;
    font-weight: bold;
    font-size: 18px;
}

@media (max-width: 1068px) {
    .effects-intro {
        flex-direction: column;
        gap: 20px;
    }
    
    .effects-intro-image {
        width: 100%;
    }
    
    .effects-image-placeholder {
        height: 150px;
        min-width: 110px;
    }
    
    .effects-tabs {
        flex-direction: column;
    }
    
    .effects-tab {
        border-right: none;
        border-bottom: 1px solid #003158;
        padding: 14px 16px;
        min-height: 50px;
    }
    
    .effects-tab:last-child {
        border-bottom: none;
    }
    
    .effects-grid-container {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
    
    .effects-image {
        width: 130px;
        height: 130px;
    }
    
    .effects-number {
        font-size: 15px;
        min-height: 36px;
    }
}

@media (max-width: 768px) {
    .effects-grid-container {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }
    
    .effects-image {
        width: 110px;
        height: 110px;
    }
    
    .effects-number {
        font-size: 14px;
        min-height: 34px;
    }
}

@media (max-width: 480px) {
    .effects-main {
        padding: 0 15px;
        gap: 20px;
    }
    
    .effects-grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .effects-item {
        padding: 10px;
    }
    
    .effects-image {
        width: 80px;
        height: 80px;
    }
    
    .effects-number {
        font-size: 13px;
        min-height: 32px;
    }
    
    .effects-command {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .effects-intro-text p {
        font-size: 15px;
    }
    
    .page-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .effects-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .effects-image {
        width: 100px;
        height: 100px;
    }
}
.btn-housekeeping {
    position: relative;
    padding: 12px 24px;
    color: #ffffff;
    background: linear-gradient(
        to bottom,
        #1f3b5c 0%,
        #1f3b5c 50%,
        #152b45 50%,
        #152b45 100%
    );
    border: 2px solid #000000;
    border-radius: 7px;
    cursor: pointer;
    font-weight: bold;
}

.btn-housekeeping:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #4a6fa5;
    border-radius: 4px;
    pointer-events: none;
}

.btn-housekeeping:hover {
    opacity: 0.9;
}
.btn-logout {
    position: relative;
    padding: 12px 24px;
    color: #ffffff;
    background: linear-gradient(
        to bottom,
        #c62828 0%,
        #c62828 50%,
        #8e1b1b 50%,
        #8e1b1b 100%
    );
    border: 2px solid #000000;
    border-radius: 7px;
    cursor: pointer;
    font-weight: bold;
}

.btn-logout:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #ff6b6b;
    border-radius: 4px;
    pointer-events: none;
}

.btn-logout:hover {
    opacity: 0.9;
}
.btn-settings {
    position: relative;
    padding: 9px 24px;
    color: #f2f4f7;
    background: linear-gradient(
        to bottom,
        #8e9aa6 0%,
        #8e9aa6 50%,
        #5f6b75 50%,
        #5f6b75 100%
    );
    border: 2px solid #2f353a;
    border-radius: 7px;
    cursor: pointer;
    font-weight: bold;
}

.btn-settings:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #b9c3cc;
    border-radius: 4px;
    pointer-events: none;
}

.btn-settings:hover {
    opacity: 0.9;
}

.shop-main {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 25px;
    align-items: start;
}

.shop-header {
    grid-column: span 12;
    margin-bottom: 10px;
}

.shop-content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 25px;
    align-items: start;
    grid-column: span 12;
}

.shop-content > .shop-left {
    grid-column: span 8;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.shop-content > .shop-right {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 25px;
    height: fit-content;
}

.shop-welcome .shop-intro {
    padding: 20px 0;
    font-size: 15px;
    color: #c8e1ff;
    line-height: 1.6;
}

.esmeralds-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 15px;
}

.esmerald-package {
    background: #001124;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #003761;
    border-left: 5px solid #00b033;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.esmerald-package:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.package-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.package-icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-pack-esmeralds-new {
    background: url(../imgs/esmeraldas.png);
    width: 80px;
    height: 80px;
    background-size: contain;
    background-position: center;
    image-rendering: pixelated;
}

.package-title {
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
}

.package-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #c8e1ff;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 55, 97, 0.3);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-check {
    width: 16px;
    height: 16px;
    background: url(../imgs/esmeraldas.png);
    background-size: contain;
    image-rendering: pixelated;
    flex-shrink: 0;
}

.package-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #04192a;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #003761;
}

.price-amount {
    font-size: 22px;
    font-weight: 700;
    color: #00ff4f;
}

.btn-package {
    position: relative;
    padding: 14px 24px;
    color: #fff;
    background: linear-gradient(to bottom, #0052a3 0%, #0052a5 50%, #003366 50%, #003366 100%);
    border: 2px solid #000000;
    border-radius: 7px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: opacity 0.3s;
}

.btn-package:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #45b6ff;
    border-radius: 4px;
    pointer-events: none;
}

.btn-package:hover {
    opacity: 0.9;
}

.shop-icon-paypal {
    width: 20px;
    height: 20px;
    background: url(../imgs/paypal_icon.png);
    background-size: contain;
    image-rendering: pixelated;
}

.other-packages-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.other-package {
    display: flex;
    gap: 15px;
    background: #04192a;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #003761;
    transition: transform 0.2s, border-color 0.2s;
}

.other-package:hover {
    transform: translateX(5px);
    border-color: #00aaff;
}

.other-package-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-pack-credits-new,
.shop-pack-chests-new,
.shop-pack-vip-new {
    width: 70px;
    height: 75px;
    background-size: contain;
    background-position: center;
    image-rendering: pixelated;
}

.shop-pack-credits-new {
    background: url(../imgs/credits.png);
    background-size: cover;
}

.shop-pack-chests-new {
    background: url(../imgs/chest.gif);
    width: 99px;
    height: 66px;
    background-position: center;
    margin-top: 12px;
}

.shop-pack-vip-new {
    background: url(../imgs/vip.png);
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 38px;
}

.other-package-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.other-package-info h4 {
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

.other-package-features {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.other-package-features small {
    font-size: 12px;
    color: #8ca8cc;
}

.other-package-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.shop-pack-esmeralds-icon {
    width: 16px;
    height: 16px;
    background: url(../imgs/esmeralda_icon.png);
    background-size: contain;
    image-rendering: pixelated;
}

.other-package-price span {
    font-size: 14px;
    color: #00ff4f;
    font-weight: 600;
}

.btn-other-package {
    display: inline-block;
    padding: 8px 15px;
    background: linear-gradient(to bottom, #00b033 0%, #00b034 50%, #008926 50%, #008926 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #000;
    text-align: center;
    position: relative;
    margin-top: 5px;
    width: 100%;
}

.btn-other-package:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #00ff4f;
    border-radius: 4px;
    pointer-events: none;
}

.btn-other-package:hover {
    opacity: 0.9;
}



@media (max-width: 1199px) {
    .shop-main {
        grid-template-columns: 1fr;
    }
    
    .shop-content {
        grid-template-columns: 1fr;
    }
    
    .shop-content > .shop-left,
    .shop-content > .shop-right {
        grid-column: span 1;
    }
    
    .shop-content > .shop-right {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .shop-other-packages {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .shop-content > .shop-right {
        grid-template-columns: 1fr;
    }
    
    .shop-other-packages {
        grid-column: span 1;
    }
    
    .other-package {
        flex-direction: column;
        text-align: center;
    }
    
    .other-package-icon {
        align-self: center;
    }
    
    .package-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .package-icon {
        align-self: center;
    }
}

@media (max-width: 576px) {
    .esmerald-package {
        padding: 15px;
    }
    
    .package-title {
        font-size: 18px;
    }
    
    .price-amount {
        font-size: 18px;
    }
    
    .btn-package {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .other-package-info h4 {
        font-size: 15px;
    }
}

.shopcredits-main {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 25px;
    align-items: start;
}

.shopcredits-header {
    grid-column: span 12;
    margin-bottom: 10px;
}

.shopcredits-content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 25px;
    align-items: start;
    grid-column: span 12;
}

.shopcredits-content > .shopcredits-left {
    grid-column: span 8;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.shopcredits-content > .shopcredits-right {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 25px;
    height: fit-content;
}

.package-selector-content {
    padding: 20px 0;
}

.package-banner {
    text-align: center;
    margin-bottom: 25px;
}

.shop-pack-credits-banner {
    background: url(../imgs/shop_credits_banner.png);
    width: 100%;
    height: 180px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    image-rendering: pixelated;
    border-radius: 10px;
    border: 1px solid #003761;
}

.package-details {
    background: #04192a;
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #003761;
}

.package-title h3 {
    font-size: 22px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.package-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: rgba(0, 55, 97, 0.2);
    border-radius: 8px;
    border-left: 4px solid #00aaff;
}

.feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.credits-icon {
    background: url(../imgs/credits.png);
    background-size: contain;
    image-rendering: pixelated;
}

.diamonds-icon {
    background: url(../imgs/diamonds.png);
    background-size: contain;
    image-rendering: pixelated;
}

.feature-text {
    font-size: 16px;
    color: #c8e1ff;
    font-weight: 500;
}

/* Formulario */
.package-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    color: #8ca8cc;
    font-weight: 500;
}

.shop-select {
    padding: 12px 15px;
    background: #00294a;
    border: 1px solid #003158;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: border-color 0.2s;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.8);
}

.shop-select:focus {
    outline: none;
    border-color: #00aaff;
    box-shadow: 0 0 0 2px rgba(0, 170, 255, 0.2);
}

.shop-select option {
    background: #001124;
    color: #ffffff;
}

/* Precio */
.package-price {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #00b033;
}

.price-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 5px;
}

.price-amount span {
    font-size: 32px;
    font-weight: 700;
    color: #00ff4f;
}

.shop-esmeralds-icon {
    width: 32px;
    height: 32px;
    background: url(../imgs/esmeraldas.png);
    background-size: contain;
    image-rendering: pixelated;
}

.price-label {
    font-size: 14px;
    color: #8ca8cc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-buy-package {
    position: relative;
    padding: 16px 24px;
    color: #fff;
    background: linear-gradient(to bottom, #00b033 0%, #00b034 50%, #008926 50%, #008926 100%);
    border: 2px solid #000000;
    border-radius: 7px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-buy-package:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #00ff4f;
    border-radius: 4px;
    pointer-events: none;
}

.btn-buy-package:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 79, 0.2);
}

.balance-content {
    padding: 15px 0;
}

.balance-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #04192a;
    border-radius: 10px;
    margin-bottom: 12px;
    border: 1px solid #003761;
    transition: transform 0.2s;
}

.balance-item:hover {
    transform: translateX(5px);
    border-color: #00aaff;
}

.balance-item:last-child {
    margin-bottom: 0;
}

.balance-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.credits-icon-large {
    background: url(../imgs/credits.png);
    background-size: contain;
    background-position: center;
    image-rendering: pixelated;
}

.diamonds-icon-large {
    background: url(../imgs/diamonds.png);
    background-size: contain;
    background-position: center;
    image-rendering: pixelated;
}

.esmeralds-icon-large {
    background: url(../imgs/esmeraldas.png);
    background-size: contain;
    background-position: center;
    image-rendering: pixelated;
}

.balance-info {
    flex: 1;
}

.balance-label {
    font-size: 12px;
    color: #8ca8cc;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.balance-amount {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.shop-error {
    background: linear-gradient(to bottom, #cc0000 0%, #cc0000 50%, #af0101 50%, #af0000 100%);
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #ffb3b3;
    text-align: center;
    font-weight: 500;
}

.shop-success {
    background: linear-gradient(to bottom, #00b033 0%, #00b034 50%, #008926 50%, #008926 100%);
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #00ff4f;
    text-align: center;
    font-weight: 500;
}

.shop-icon-credits {
    background: url(../imgs/shop_credits_icon.png);
    width: 30px;
    height: 30px;
    margin-right: 7px;
    image-rendering: pixelated;
}


@media (max-width: 1199px) {
    .shopcredits-main {
        grid-template-columns: 1fr;
    }
    
    .shopcredits-content {
        grid-template-columns: 1fr;
    }
    
    .shopcredits-content > .shopcredits-left,
    .shopcredits-content > .shopcredits-right {
        grid-column: span 1;
    }
    
    .shopcredits-content > .shopcredits-right {
        position: static;
    }
}

@media (max-width: 768px) {
    .package-details {
        padding: 20px;
    }
    
    .package-title h3 {
        font-size: 20px;
    }
    
    .feature-item {
        padding: 10px 12px;
    }
    
    .feature-text {
        font-size: 15px;
    }
    
    .price-amount span {
        font-size: 28px;
    }
    
    .balance-item {
        padding: 12px;
    }
    
    .balance-amount {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .shop-pack-credits-banner {
        height: 150px;
    }
    
    .package-details {
        padding: 15px;
    }
    
    .package-title h3 {
        font-size: 18px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .btn-buy-package {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .shop-select {
        padding: 10px 12px;
        font-size: 13px;
    }
}

.shopvip-main {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 25px;
    align-items: start;
}

.shopvip-header {
    grid-column: span 12;
    margin-bottom: 10px;
}

.shopvip-content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 25px;
    align-items: start;
    grid-column: span 12;
}

.shopvip-content > .shopvip-left {
    grid-column: span 8;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.shopvip-content > .shopvip-right {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 25px;
    height: fit-content;
}

.vip-status-active {
    margin-left: auto;
    padding: 6px 15px;
    background: linear-gradient(to bottom, #00b033 0%, #00b034 50%, #008926 50%, #008926 100%);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    border: 1px solid #000;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vip-status-active:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #00ff4f;
    border-radius: 4px;
    pointer-events: none;
}

.vip-status-icon {
    width: 12px;
    height: 12px;
    background: #00ff4f;
    border-radius: 50%;
    box-shadow: 0 0 8px #00ff4f;
}

.vip-status-inactive {
    margin-left: auto;
    padding: 6px 15px;
    background: linear-gradient(to bottom, #cc0000 0%, #cc0000 50%, #af0101 50%, #af0000 100%);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    border: 1px solid #000;
    position: relative;
}

.vip-status-inactive:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #ff6b6b;
    border-radius: 4px;
    pointer-events: none;
}

.vip-package-content {
    padding: 20px 0;
}

.vip-banner {
    text-align: center;
    margin-bottom: 25px;
}


.vip-details {
    background: #04192a;
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #003761;
}

.vip-title h3 {
    font-size: 24px;
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.vip-description {
    font-size: 15px;
    color: #c8e1ff;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

.vip-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.vip-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 55, 97, 0.2);
    border-radius: 8px;
    border-left: 4px solid #ffd700;
    transition: transform 0.2s, background-color 0.2s;
}

.vip-feature:hover {
    transform: translateY(-3px);
    background: rgba(0, 55, 97, 0.3);
}


.vip-feature-text {
    flex: 1;
}

.vip-feature-text h4 {
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 5px;
}

.vip-feature-text p {
    font-size: 13px;
    color: #8ca8cc;
    line-height: 1.4;
}

.vip-purchase-form {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #ffd700;
}

.form-section {
    margin-bottom: 25px;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.recipient-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.recipient-option input[type="radio"] {
    display: none;
}

.recipient-option label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #00294a;
    border: 2px solid #003761;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.recipient-option input[type="radio"]:checked + label {
    background: rgba(0, 170, 255, 0.1);
    border-color: #00aaff;
}


.option-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.option-title {
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 3px;
}

.option-desc {
    font-size: 13px;
    color: #8ca8cc;
}

.other-recipient-field {
    margin-top: 15px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.other-recipient-field label {
    display: block;
    font-size: 14px;
    color: #c8e1ff;
    margin-bottom: 8px;
    font-weight: 500;
}

.recipient-input {
    width: 100%;
    padding: 12px 15px;
    background: #00294a;
    border: 1px solid #003158;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.2s;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.8);
}

.recipient-input:focus {
    outline: none;
    border-color: #00aaff;
    box-shadow: 0 0 0 2px rgba(0, 170, 255, 0.2);
}

.recipient-input::placeholder {
    color: #4f8196;
}

.vip-price {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #ffd700;
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #ffd700;
}

.shop-esmeralds-icon-large {
    width: 36px;
    height: 36px;
    background: url(../imgs/esmeraldas.png);
    background-size: contain;
    image-rendering: pixelated;
}

.price-label {
    font-size: 14px;
    color: #8ca8cc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-buy-vip {
    position: relative;
    padding: 18px 24px;
    color: #000;
    background: linear-gradient(to bottom, #ffd700 0%, #ffd700 50%, #e6c200 50%, #e6c200 100%);
    border: 2px solid #000000;
    border-radius: 7px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    font-weight: 700;
}

.btn-buy-vip:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #fff8dc;
    border-radius: 4px;
    pointer-events: none;
}

.btn-buy-vip:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.preview-content {
    padding: 15px 0;
}

.preview-notice {
    font-size: 13px;
    color: #8ca8cc;
    text-align: center;
    margin-bottom: 15px;
    font-style: italic;
}

.preview-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.preview-image {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #003761;
}

.preview-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.preview-image:hover img {
    transform: scale(1.05);
}


@media (max-width: 1199px) {
    .shopvip-main {
        grid-template-columns: 1fr;
    }
    
    .shopvip-content {
        grid-template-columns: 1fr;
    }
    
    .shopvip-content > .shopvip-left,
    .shopvip-content > .shopvip-right {
        grid-column: span 1;
    }
    
    .shopvip-content > .shopvip-right {
        position: static;
    }
    
    .vip-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vip-details {
        padding: 20px;
    }
    
    .vip-title h3 {
        font-size: 22px;
    }
    
    .vip-feature {
        padding: 12px;
    }
    
    .recipient-option label {
        padding: 12px;
    }
    
    .preview-images {
        grid-template-columns: 1fr;
    }
    
    .price-amount {
        font-size: 32px;
    }
    
    .btn-buy-vip {
        padding: 16px 20px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    
    .vip-details {
        padding: 15px;
    }
    
    .vip-title h3 {
        font-size: 20px;
    }
    
    .vip-feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .vip-feature-icon {
        margin-bottom: 10px;
    }
    
    .price-amount {
        font-size: 28px;
    }
    
    .vip-status-active,
    .vip-status-inactive {
        padding: 5px 10px;
        font-size: 12px;
    }
}
.shopchests-main {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 25px;
    align-items: start;
}

.shopchests-header {
    grid-column: span 12;
    margin-bottom: 10px;
}

.shopchests-content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 25px;
    align-items: start;
    grid-column: span 12;
}

.shopchests-content > .shopchests-left {
    grid-column: span 8;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.shopchests-content > .shopchests-right {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 25px;
    height: fit-content;
}

.chests-package-content {
    padding: 20px 0;
}

.chests-selector-section {
    background: #04192a;
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #003761;
    margin-bottom: 25px;
}

.chest-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.chest-arrow {
    width: 50px;
    height: 50px;
    background: #00294a;
    border: 2px solid #003158;
    border-radius: 50%;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.chest-arrow:hover {
    background: #003761;
    border-color: #00aaff;
    transform: scale(1.1);
}

.chest-images {
    display: flex;
    justify-content: center;
    width: 200px;
    height: 200px;
    position: relative;
}

.chest-image {
    display: none;
    animation: fadeIn 0.3s ease;
}

.chest-image.active {
    display: block;
}

.chest-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: pixelated;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.chest-name-display h3 {
    font-size: 22px;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.chest-purchase-form {
    background: #04192a;
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #003761;
    margin-bottom: 25px;
}

.chest-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chest-price {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #00b033;
}

.price-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 5px;
}

.price-amount span {
    font-size: 32px;
    font-weight: 700;
    color: #00ff4f;
}

.shop-esmeralds-icon {
    width: 32px;
    height: 32px;
    background: url(../imgs/esmeraldas.png);
    background-size: contain;
    image-rendering: pixelated;
}

.price-label {
    font-size: 14px;
    color: #8ca8cc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-buy-chest {
    position: relative;
    padding: 16px 24px;
    color: #fff;
    background: linear-gradient(to bottom, #00b033 0%, #00b034 50%, #008926 50%, #008926 100%);
    border: 2px solid #000000;
    border-radius: 7px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-buy-chest:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #00ff4f;
    border-radius: 4px;
    pointer-events: none;
}

.btn-buy-chest:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 79, 0.2);
}

.chest-contents {
    background: #04192a;
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #003761;
}

.chest-contents h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.contents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.content-column {
    background: rgba(0, 55, 97, 0.2);
    border-radius: 8px;
    padding: 15px;
}

.rare-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rare-list li {
    padding: 8px 12px;
    color: #c8e1ff;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 55, 97, 0.3);
    position: relative;
    padding-left: 20px;
}

.rare-list li:before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #00ff4f;
}

.rare-list li:last-child {
    border-bottom: none;
}

.shop-icon-chests {
    background: url(../imgs/shop_chests_icon.png);
    width: 30px;
    height: 30px;
    margin-right: 7px;
    image-rendering: pixelated;
}



@media (max-width: 1199px) {
    .shopchests-main {
        grid-template-columns: 1fr;
    }
    
    .shopchests-content {
        grid-template-columns: 1fr;
    }
    
    .shopchests-content > .shopchests-left,
    .shopchests-content > .shopchests-right {
        grid-column: span 1;
    }
    
    .shopchests-content > .shopchests-right {
        position: static;
    }
    
    .contents-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .chests-selector-section,
    .chest-purchase-form,
    .chest-contents {
        padding: 20px;
    }
    
    .chest-selector {
        gap: 15px;
    }
    
    .chest-images {
        width: 150px;
        height: 150px;
    }
    
    .chest-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .chest-name-display h3 {
        font-size: 20px;
    }
    
    .price-amount span {
        font-size: 28px;
    }
    
    .btn-buy-chest {
        padding: 14px 20px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .chest-selector {
        flex-direction: column;
        gap: 10px;
    }
    
    .chest-images {
        width: 120px;
        height: 120px;
    }
    
    .chest-arrow {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .chest-name-display h3 {
        font-size: 18px;
    }
    
    .price-amount span {
        font-size: 24px;
    }
    
    .rare-list li {
        font-size: 13px;
        padding: 6px 10px;
        padding-left: 18px;
    }
}
.shopesmeralds-main {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 25px;
    align-items: start;
}

.shopesmeralds-header {
    grid-column: span 12;
    margin-bottom: 10px;
}

.shopesmeralds-content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 25px;
    align-items: start;
    grid-column: span 12;
}

.shopesmeralds-content > .shopesmeralds-left {
    grid-column: span 8;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.shopesmeralds-content > .shopesmeralds-right {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 25px;
    height: fit-content;
}

.paypal-status {
    margin-left: auto;
    padding: 6px 15px;
    background: linear-gradient(to bottom, #0052a3 0%, #0052a5 50%, #003366 50%, #003366 100%);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    border: 1px solid #000;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.paypal-status:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #45b6ff;
    border-radius: 4px;
    pointer-events: none;
}

.paypal-icon-small {
    width: 16px;
    height: 16px;
    background: url(../imgs/paypal_icon.png);
    background-size: contain;
    background-position: center;
    image-rendering: pixelated;
}

.paypal-package-content {
    padding: 20px 0;
}

.package-banner {
    text-align: center;
    margin-bottom: 25px;
}


.package-details {
    background: #04192a;
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #003761;
}

.package-title {
    text-align: center;
    margin-bottom: 25px;
}

.package-title h3 {
    font-size: 22px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
}

.package-title p {
    font-size: 16px;
    color: #00ff4f;
    margin: 0;
}

.package-selector {
    margin-bottom: 25px;
}

.package-price {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    border: 1px solid #0052a3;
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5px;
}

.price-display .currency {
    font-size: 24px;
    color: #c8e1ff;
    font-weight: 600;
}

.price-display .price {
    font-size: 36px;
    font-weight: 700;
    color: #00ff4f;
}

.price-display .currency-code {
    font-size: 20px;
    color: #c8e1ff;
    font-weight: 600;
    margin-left: 5px;
}

.price-label {
    font-size: 14px;
    color: #8ca8cc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.paypal-container {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #003761;
}

#paypal-button-container {
    min-height: 50px;
}

.payment-success {
    background: linear-gradient(to bottom, #00b033 0%, #00b034 50%, #008926 50%, #008926 100%);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border: 1px solid #000;
    position: relative;
    animation: fadeIn 0.5s ease;
}

.payment-success:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #00ff4f;
    border-radius: 4px;
    pointer-events: none;
}

.success-icon {
    width: 50px;
    height: 50px;
    background: url(../imgs/success_icon.png);
    background-size: contain;
    background-position: center;
    image-rendering: pixelated;
    margin: 0 auto 15px auto;
}

.success-message h4 {
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
}

.success-message p {
    font-size: 14px;
    color: #c8e1ff;
    margin: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}


@media (max-width: 1199px) {
    .shopesmeralds-main {
        grid-template-columns: 1fr;
    }
    
    .shopesmeralds-content {
        grid-template-columns: 1fr;
    }
    
    .shopesmeralds-content > .shopesmeralds-left,
    .shopesmeralds-content > .shopesmeralds-right {
        grid-column: span 1;
    }
    
    .shopesmeralds-content > .shopesmeralds-right {
        position: static;
    }
}

@media (max-width: 768px) {
    .package-details {
        padding: 20px;
    }
    
    .package-title h3 {
        font-size: 20px;
    }
    
    .price-display .price {
        font-size: 32px;
    }
    
    .price-display .currency {
        font-size: 22px;
    }
    
}

@media (max-width: 576px) {
    .package-details {
        padding: 15px;
    }
    
    .package-title h3 {
        font-size: 18px;
    }
    
    .price-display {
        flex-direction: column;
        gap: 2px;
    }
    
    .price-display .price {
        font-size: 28px;
    }
    
    .paypal-status {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .payment-success {
        padding: 15px;
    }
    
    .success-message h4 {
        font-size: 16px;
    }
    
    .success-message p {
        font-size: 13px;
    }
}
.shop-redeem-section {
    margin-top: 20px;
}

.redeem-content {
    padding: 20px 0;
}

.redeem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.redeem-item {
    background: #04192a;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #003761;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}

.redeem-item:hover {
    transform: translateY(-3px);
    border-color: #00aaff;
}

.redeem-item-image {
    width: 100%;
    height: 100px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 6px;
    margin-bottom: 10px;
    position: relative;
    border: 2px solid #e7e7e7;
}

.redeem-item-label {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ebebeb;
    color: #5f5f5f;
    font-size: 11px;
    padding: 3px 6px;
    border-radius: 3px;
    white-space: nowrap;
}

.redeem-form {
    margin-top: 10px;
}

.btn-redeem {
    position: relative;
    padding: 8px 15px;
    color: #202020;
    background: linear-gradient(to bottom, #e5e5e5 50%, #cdcdcd 50%);
    border: 2px solid #000000;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    box-shadow: inset 0 0 0px 2px #cdcdcd;
}

.btn-redeem:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #ffffff;
    border-radius: 2px;
    pointer-events: none;
}

.btn-redeem:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.no-pending {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 55, 97, 0.1);
    border-radius: 8px;
    border: 1px dashed #003761;
}

.no-pending-icon {
    width: 60px;
    height: 60px;
    background: url(../imgs/no_pending_icon.png);
    background-size: contain;
    background-position: center;
    image-rendering: pixelated;
    margin: 0 auto 15px auto;
    opacity: 0.5;
}

.no-pending p {
    font-size: 14px;
    color: #8ca8cc;
    margin: 0;
}


@media (max-width: 768px) {
    .redeem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .redeem-grid {
        grid-template-columns: 1fr;
    }
    
    .redeem-item {
        padding: 12px;
    }
    
    .redeem-item-image {
        height: 80px;
    }
}
.redeem-list {
    margin-top: 10px;
}

.redeem-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #04192a;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid #003761;
    transition: border-color 0.2s;
}

.redeem-item:hover {
    border-color: #00aaff;
}

.redeem-item-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.redeem-item-icon {
    width: 40px;
    height: 40px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 6px;
    border: 2px solid #e7e7e7;
    flex-shrink: 0;
}

.redeem-item-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.redeem-item-title {
    font-size: 13px;
    color: #ffffff;
    font-weight: 600;
}

.redeem-item-status {
    font-size: 11px;
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    padding: 2px 6px;
    border-radius: 10px;
    display: inline-block;
    width: fit-content;
}

.btn-redeem {
    padding: 6px 12px;
    color: #202020;
    background: linear-gradient(to bottom, #e5e5e5 50%, #cdcdcd 50%);
    border: 2px solid #000000;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    box-shadow: inset 0 0 0px 2px #cdcdcd;
    white-space: nowrap;
    position: relative;
}

.btn-redeem:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #ffffff;
    border-radius: 2px;
    pointer-events: none;
}

.btn-redeem:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.no-pending {
    text-align: center;
    padding: 20px;
    background: rgba(0, 55, 97, 0.1);
    border-radius: 8px;
    border: 1px dashed #003761;
    margin-top: 10px;
}

.no-pending-icon {
    width: 40px;
    height: 40px;
    background: url(../imgs/no_pending_icon.png);
    background-size: contain;
    background-position: center;
    image-rendering: pixelated;
    margin: 0 auto 10px auto;
    opacity: 0.5;
}

.no-pending p {
    font-size: 13px;
    color: #8ca8cc;
    margin: 0;
}


@media (max-width: 1199px) {
    .redeem-item {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .btn-redeem {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .shopesmeralds-content > .shopesmeralds-left,
    .shopesmeralds-content > .shopesmeralds-right {
        grid-column: span 1;
    }
    
    .shopesmeralds-content > .shopesmeralds-right {
        position: static;
    }
}