.navbar {
    background-color: #1e1e1e;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    height: 72px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    width: 100%;
    margin-bottom: 10px;
    box-shadow: 0 0 25px #1E90FF;
}

.banner {
    pointer-events: none;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 15px;
    box-shadow: 0 0 25px #1E90FF;
}

.app-button {
    padding: .5rem 1rem;
    border: none;
    border-radius: 8px;
    box-shadow: 0 0 25px #1E90FF;
    cursor: pointer;
    transition: all .2s ease;
    font-size: 14px;
    font-family: inherit;
    background-color: var(--main-white-color);
    color: var(--main-dark-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex: 1 1 calc(25% - 6px);
    min-height: 54px;
}

.product-card {
    aspect-ratio: 3 / 4;
    position: relative;
    flex-direction: column;
    border-radius: 12px;
    background-color: var(--main-white-color);
    box-shadow: 0 0 25px #1E90FF;
    overflow: hidden;
    font-family: sans-serif;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    transition: transform .3s ease;
    cursor: pointer;
}

.modal {
    max-width: 90vw;
    position: relative;
    box-shadow: 0 0px 20px #1E90FF;
    transition: inherit;
    border-radius: 5px 40px;
    background: var(--bg-muted);
    margin: 30px 0;
}

.roulette-item {
    width: 100px;
    min-width: 100px;
    height: 90px;
    background: var(--main-white-color);
    box-shadow: 0 0px 15px #B22222;
    border-radius: 6px;
    text-align: center;
    padding: 6px;
    flex-shrink: 0;
}

.roulette-prize-card {
    background: var(--main-bg-color);
    border-radius: 6px;
    padding: 8px 6px;
    text-align: center;
    box-shadow: 0 0px 15px #B22222;
    transition: transform .15s ease, box-shadow .15s ease;
}

.monitoring {
    border-radius: 12px;
    padding: 12px 16px;
    background: var(--main-white-color);
    border-left: 2px solid transparent;
    margin-bottom: 12px;
    box-shadow: 0 0 25px #1E90FF;
    transition: transform .3s ease;
}

.banner-item-link {
    color: inherit;
    text-decoration: none;
    box-shadow: 0 0 25px #1E90FF;
    display: block;
    padding: 24px;
}