@font-face {
    font-family: 'Bebas Neue';
    src: url('./assets/fonts/bebasNeue/BebasNeueRegular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bebas Neue';
    src: url('./assets/fonts/bebasNeue/BebasNeueBold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: Roboto Condensed;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #e0e0e0;
}

h1,h2,h3,h4,h5,h6, button {
    font-family: Bebas Neue;
}

h1 {
    text-align: center;
    padding: 20px;
    color: white;
    margin: 0;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.webshop-title {
    padding-bottom: 0px;
}

.webshop-title-red {
    color: #c91c1c;
}

.shop-items-category {
    padding: 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.shop-items-category-title {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    padding-top: 15px;
}

.shop-items-category-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(245px, max-content));
    grid-gap: 15px;
    justify-content: start;
    grid-auto-flow: dense;
}

.shop-item {
    border: 1px solid #2b2b2b;
    border-radius: 10px;
    padding: 10px;
    background: linear-gradient(145deg, #1e1e1e, #292929);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.shop-item-wide {
    grid-column: span 2;
}

.shop-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

.shop-item-image-container {
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 5px;
}

.shop-item-image-container img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.shop-item-image-currency {
    max-width: 40% !important;
}

.shop-item-image-in-app {
    max-width: 80% !important;
}

.shop-item-title {
    margin-bottom: 8px;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 15px 10px;
    color: #ffffff;
    text-align: center;
}

.shop-item-rewards {
    padding: 10px 15px;
    width: 100%;
    border-top: 1px solid #2b2b2b;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-height: 450px;
    margin-bottom: 5px;
    overflow-y: auto;
}

.shop-item-reward {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    width: 100%;
    padding: 5px 10px;
    background-color: #2b2b2b;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.shop-item-reward-icon {
    width: 60px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.shop-item-reward-icon img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.shop-item-reward-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #e0e0e0;
}

.shop-item-reward-orig-amount {
    text-decoration: line-through;
    font-size: 0.8rem;
    color: #888888;
    margin-bottom: 2px;
}

.shop-item-price-off {
    display: block;
    text-decoration: line-through;
    font-size: 1.4rem;
    color: #ea0202;
}

.shop-item-button {
    display: block;
    width: calc(100% - 40px);
    margin: 10px auto 20px auto;
    color: white;
    border: none;
    padding: 10px;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.shop-item-mt-desc {
    font-size: 1rem;
    color: #a2a2a2;
    text-align: center;
    margin: 10px 0;
}

#shop-login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

#shop-login h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

#shop-login div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 300px;
}

#shop-login-user-id {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #444;
    border-radius: 5px;
    width: 100%;
    background-color: #2b2b2b;
    color: #fff;
}

#shop-login-button {
    padding: 12px 24px;
    font-size: 1rem;
    background-color: transparent;
    border: 1px solid #666;
    color: #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

#shop-login-button:hover {
    background-color: rgba(224, 224, 224, 0.1);
    border-color: #888;
    color: #fff;
    transform: translateY(-1px);
}

.hidden {
    display: none !important;
}

.btn {
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #323232;
}

.btn-primary {
    background: #313131;
}

.btn-buy {
    width: 100%;
    height: 65px;
    background: linear-gradient(180deg, rgb(231, 202, 39), rgb(196, 165, 10));
    font-size: 1.5rem;
    color: #000000;
    text-align: center;
    margin-top: auto;
}

.btn-buy:hover {
    background: linear-gradient(180deg, rgb(255, 228, 87), rgb(231, 202, 39));
}

#shop-payment-service {
    font-weight: bold;
    color: white;
}

.shop-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    gap: 10px;
}

#shop-logout-button {
    order: 1;
    flex-shrink: 0;
    padding-left: 10px;
    padding-right: 10px;
}

.shop-loading-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.shop-loading-modal-content {
    background-color: #2b2b2b;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.shop-loading-modal-text {
    font-size: 1.5rem;
    color: white;
}

.payment-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.payment-modal-content {
    background-color: #2b2b2b;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    width: 400px;
    max-width: 90vw;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.modal-btn-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.modal-image-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

.modal-image-button img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 21px;
}

.modal-image-label {
    margin-top: 15px;
    color: #ccc;
    font-size: 0.9rem;
    text-align: center;
}

.modal-close-btn {
    background: #313131;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    align-self: center;
}

.modal-close-btn:hover {
    background: #404040;
}

.payment-modal-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.payment-modal-header h3 {
    margin-left: 30px;
}

.navbar {
    display: none;
    position: sticky;
    top: 0;
    z-index: 10;
    width: 100%;
    background-color: #1a1a1a;
    padding: 0.5rem 0;
}

.navbar ul {
    list-style-type: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0;
    padding: 0;
}

.navbar li {
    display: inline-block;
}

.navbar a {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    color: #fff;
    text-decoration: none;
}

.navbar a img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.navbar a span {
    font-size: 1rem;
}

.navbar-disabled {
    opacity: 0.2;
    pointer-events: none;
}

.shop-item-x2x3-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 2.3rem;
    height: auto;
    z-index: 1;
}

.shop-item-x2x3-badge img {
    width: 100%;
    height: auto;
}

.shop-item-availability {
    width: 100%;
    color: #FFFFFF;
    font-size: 1.07rem;
    font-weight: 600;
    text-align: center;
    padding: 2px 0;
    margin-bottom: 0px;
}

@media (max-width: 600px) {
    html {
        font-size: 90%;
    }

    .shop-header {
        gap: 5px;
    }
    
    .webshop-title {
        font-size: 1.5rem;
    }

    .shop-items-category {
        padding: 10px;
    }

    .shop-items-category-title {
        font-size: 1.2rem;
        padding-top: 8px;
    }

    .shop-items-category-items {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        gap: 10px;
    }

    .shop-item {
        padding: 5px;
    }

    .shop-item-image-container {
        width: 120px;
        height: 120px;
        padding: 2px;
    }

    .shop-item-title {
        font-size: 0.9rem;
        margin: 10px 5px;
    }

    .shop-item-price-off {
        font-size: 0.8rem;
    }

    .shop-item-reward-orig-amount {
        font-size: 0.7rem;
        margin-bottom: 1px;
    }

    .shop-item-rewards {
        gap: 5px;
    }

    .shop-item-reward {
        font-size: 0.8rem;
        padding: 3px 5px;
    }

    .shop-item-reward-icon {
        width: 40px;
        height: 20px;
    }

    .btn-buy {
        height: 50px;
        font-size: 0.9rem;
    }

    .shop-item-image-currency {
        max-width: 80% !important;
    }

    .shop-item-image-in-app {
        max-width: 100% !important;
    }

    .payment-modal-content {
        width: 100%;
        border-radius: 0;
        max-width: 100%;
        justify-content: center;
    }

    .navbar {
        display: block;
        position: fixed;
        bottom: 0;
        top: auto;
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
        padding: 0.3rem 0;
    }

    .navbar a span {
        display: none;
    }

    .shop-item-x2x3-badge {
        top: 3px;
        right: 3px;
        width: 1.9rem;
    }
    
    .shop-item-availability {
        font-size: 1.0rem;
    }
}

.main-header {
    position: sticky;
    top: 0;
    background-color: #1a1a1a;
    border-bottom: 1px solid #222;
    z-index: 100;
    display: block;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.header-title {
    font-size: 1.5rem;
    margin: 0;
    color: #fff;
    flex: 1;
    text-align: center;
}

.header-spacer {
    width: 30px;
}

.burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background-color: #e0e0e0;
    transition: all 0.3s;
}

.main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100vh;
    background-color: #1a1a1a;
    transition: left 0.3s ease;
    z-index: 200;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.main-nav.active {
    left: 0;
}

.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #222;
}

.nav-header h2 {
    margin: 0;
    font-size: 2rem;
    color: #fff;
}

.nav-close {
    background: none;
    border: none;
    color: #e0e0e0;
    font-size: 2rem;
    cursor: pointer;
    display: block;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: Bebas Neue;
    font-size: 20px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: #e0e0e0;
    text-decoration: none;
    transition: background-color 0.3s;
}

.nav-link:hover {
    background-color: #333;
}

.nav-link.active {
    background-color: rgb(231, 202, 39);
    color: black;
}

.nav-divider {
    height: 1px;
    background-color: #333;
    margin: 1rem 1.5rem;
}

.nav-language-section {
    padding: 1rem 1.5rem;
}

.custom-language-dropdown {
    position: relative;
    width: 100%;
}

.language-display {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #333;
    border: 1px solid #555;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #e0e0e0;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    min-height: 20px;
    line-height: 1.2;
}

.language-display:hover {
    border-color: #666;
    background-color: #3a3a3a;
}

.language-display:focus,
.language-display:focus-within {
    outline: none;
    border-color: rgb(231, 202, 39);
    box-shadow: 0 0 0 2px rgba(231, 202, 39, 0.2);
}

.language-icon {
    color: #aaa;
    flex-shrink: 0;
}

.selected-language {
    flex: 1;
    color: #e0e0e0;
}

.dropdown-arrow {
    color: #aaa;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.custom-language-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.hidden-language-select {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.nav-user-info {
    padding: 0.75rem 1.5rem 0.5rem 1.5rem;
}

.nav-user-id {
    font-family: Bebas Neue;
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    color: #e0e0e0;
    text-align: left;
}

.nav-payment-section {
    padding: 0.5rem 1.5rem;
}

.nav-payment-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    min-height: 20px;
    line-height: 1.2;
}

.payment-icon {
    flex-shrink: 0;
    opacity: 0.9;
}

.nav-auth-section {
    padding: 0.5rem 1.5rem 1rem 1.5rem;
}

.btn-gradient {
    background: linear-gradient(90deg, rgb(234, 51, 94), rgb(129, 67, 244));
    border: 1px solid rgb(193, 78, 153);
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.2s ease;
}

.btn-gradient:hover {
    background: linear-gradient(90deg, rgb(244, 61, 104), rgb(139, 77, 254));
    border-color: rgba(201, 112, 133, 0.8);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(234, 51, 94, 0.3);
}

.nav-login-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    min-height: 20px;
    line-height: 1.2;
    background-color: transparent;
    border: 1px solid #666;
    color: #e0e0e0;
    transition: all 0.2s ease;
}

.nav-login-btn:hover {
    background-color: rgba(224, 224, 224, 0.1);
    border-color: #888;
    color: #fff;
    transform: translateY(-1px);
}

.nav-login-btn:active {
    transform: translateY(1px);
}

.login-icon {
    flex-shrink: 0;
    opacity: 0.9;
}

.nav-logout-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    background-color: transparent;
    border: 1px solid #666;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #e0e0e0;
    font-size: 0.9rem;
    cursor: pointer;
    min-height: 20px;
    line-height: 1.2;
    transition: all 0.2s ease;
}

.nav-logout-btn:hover {
    background-color: rgba(224, 224, 224, 0.1);
    border-color: #888;
    color: #fff;
}

.nav-logout-btn:active {
    transform: translateY(1px);
}

.logout-icon {
    flex-shrink: 0;
    opacity: 0.9;
}

.nav-footer-section {
    padding: 1rem 1.5rem;
}

.nav-tos-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #aaa;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.nav-tos-link:hover {
    color: #e0e0e0;
}

.tos-icon {
    flex-shrink: 0;
    opacity: 0.7;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 150;
    display: none;
}

.nav-overlay.active {
    display: block;
}

.main-content {
    min-height: calc(100vh - 70px);
    background-color: #121212;
}

.page-content {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.newsfeed-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0rem 1rem;
}

.section-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.news-item {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #333;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.news-item:hover {
    transform: translateY(-2px);
}

.news-item.expanded {
    cursor: default;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 1.3rem;
    color: #fff;
    margin: 0;
    flex: 1;
}

.news-date {
    font-size: 0.9rem;
    color: #888;
    white-space: nowrap;
}

.news-summary {
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0.5rem 0;
}

.news-full {
    color: #e0e0e0;
    line-height: 1.6;
    margin-top: 1rem;
    display: none;
}

.news-item.expanded .news-full {
    display: block;
}

.read-more {
    color: rgb(231, 202, 39);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: inline-block;
}

.news-item.expanded .read-more {
    display: none;
}

@media (max-width: 767px) {
    #home {
        padding-bottom: 60px;
    }
    
    #shop {
        padding-bottom: 80px;
    }
    
    .shop-items-category:last-child {
        margin-bottom: 20px;
    }

    .main-header {
        background-color: rgba(18, 18, 18, 0.9) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .main-nav {
        background-color: rgba(18, 18, 18, 0.95) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .navbar {
        background-color: rgba(15, 15, 15, 0.92) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

@media (min-width: 768px) {
    .main-header {
        display: none;
    }

    .main-nav {
        position: fixed;
        left: 0;
        width: 250px;
        border-right: 1px solid #222;
    }

    .nav-close {
        display: none;
    }

    .main-content {
        margin-left: 250px;
        min-height: 100vh;
    }

    .nav-overlay {
        display: none !important;
    }
}

/* Премиум */

.premium-item-container {
    background: linear-gradient(37.67deg, rgba(196, 161, 80, 0.111) 5.37%, rgba(255, 232, 176, 0.24) 61.14%);
    position: relative;
    aspect-ratio: 1569 / 665;
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin-top: 70px;
    box-shadow: 0px 4px 17px 0px #00000040;

    @media (max-width: 1200px) {
        aspect-ratio: unset;
    }
}

.premium-item-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('./assets/images/premium-item/premium-item-background.png') no-repeat center center;
    background-size: cover;
    border-radius: 16px;
    overflow: hidden;
    z-index: 0;
}

.premium-item-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(319.51deg, rgba(255, 255, 255, 0) 43.3%, rgba(255, 255, 255, 0.07) 92.84%);
    pointer-events: none;
    border-radius: 16px;
    z-index: 0;
    border: 3px solid rgba(255, 216, 199, 0.1);
}

.premium-item {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    z-index: 1;

    @media (max-width: 1200px) {
        grid-template-columns: 1fr;
    }
}

.premium-item-title {
    position: relative;
    margin: 0;
    font-family: Bebas Neue;
    font-weight: 700;
    font-style: Bold;
    font-size: 76px;
    width: max-content;
    padding-right: 15px;
    margin-bottom: 6px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: lowercase;
    background: linear-gradient(0deg, #FFF0A3, #FFF0A3),
        linear-gradient(151.56deg, rgba(255, 242, 185, 0) 42.86%, #FFDF8C 43.23%, rgba(255, 225, 167, 0) 66.24%),
        radial-gradient(21.29% 72.37% at 50% 2.54%, #FFFDF2 0%, rgba(255, 242, 185, 0) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;

    @media (max-width: 1600px) {
        font-size: 4.4vw;
    }

    @media (max-width: 1200px) {
        font-size: 64px;
    }

    @media (max-width: 1000px) {
        font-size: 54px;
    }
}

.premium-item-title::after {
    content: '';
    position: absolute;
    inset: 10px;
    background: linear-gradient(90deg, 
        rgba(255, 240, 163, 0) 0%,
        #F53500FA 20%,
        rgba(255, 240, 163, 0.8) 50%,
        #F53500FA 80%,
        rgba(255, 240, 163, 0) 100%);
    box-shadow: 0px 0.93px 20px 0px #F53500FA, 0px 4px 4px 0px #00000040;
    filter: blur(20px);
    z-index: -1;
}

.premium-item-descr {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 26px;
    line-height: 94%;
    letter-spacing: 0%;
    text-shadow: 2px 2px 2px #00000059;
    color: #FFF8E8;


    /* @media (max-width: 1600px) {
        font-size: 1.7vw;
    } */

    @media (max-width: 1460px) {
        font-size: 1.63vw;
    }

    @media (max-width: 1200px) {
        font-size: 24px;
    }

    @media (max-width: 1000px) {
        font-size: 20px;
    }
}

.premium-item-left {
    position: relative;
    padding: 14px 20px 13px;
    display: flex;
    justify-content: flex-end;
}

.premium-item-left-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    width: 65%;
    z-index: 1;
    gap: 16px;

    @media (max-width: 1200px) {
        width: 65%;
    }

    @media (max-width: 650px) {
        width: 55%;
    }

    @media (max-width: 450px) {
        width: 100%;
    }
}

.premium-item-background {
    position: absolute;
    inset: 0;
    object-fit: cover;
    pointer-events: none;;
}

.premium-item-girl-image {
    position: absolute;
    bottom: 0;
    left: -30px;
    width: 62%;
    height: auto;
    aspect-ratio: 446 / 655;

    @media (max-width: 1200px) {
        width: 36%;
        bottom: -25px;
        aspect-ratio: 446 / 625;
    }


    @media (max-width: 1100px) {
        width: 42%;
    }

    @media (max-width: 1000px) {
        width: 44%;
    }

    @media (max-width: 900px) {
        width: 53%;
    }

    @media (max-width: 840px) {
        width: 56%;
    }


    @media (max-width: 768px) {
        width: 42%;
    }

    @media (max-width: 660px) {
        width: 50%;
    }

    @media (max-width: 570px) {
        width: 60%;
    }

    @media (max-width: 500px) {
        width: 70%;
    }

    @media (max-width: 450px) {
        display: none;
    }
}

.premium-item-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 0.85fr 1.15fr;
    gap: 12px 14px;

    @media (max-width: 1200px) {
       padding: 12px;
    }

    @media (max-width: 465px) {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
}

.premium-item-award {
    display: flex;
    overflow: hidden;
    border-radius: 17px;
    position: relative;
    background: url('./assets/images/premium-item/premium-item-award-background.png') no-repeat center center; 
    background-color: black;
    outline: 3px solid rgba(255, 216, 199, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.premium-item-award:hover {
    transform: translateY(-5px);
}

.premium-item-award::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(37.67deg, rgba(128, 112, 76, 0.37) 5.37%, rgba(216, 205, 177, 0.9) 61.14%);
}

.premium-item-award:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;

    @media (max-width: 465px) {
        grid-column: unset;
        grid-row: unset;
    }
 
}

.premium-item-award:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;

    @media (max-width: 465px) {
        grid-column: unset;
        grid-row: unset;
    }
}

   
.premium-item-award:nth-child(3) {
    grid-column: 1 / 3;
    grid-row: 2 / 3;

    @media (max-width: 465px) {
        grid-column: unset;
        grid-row: unset;
    }
}

.premium-item-award:nth-child(3)::before {
    background: linear-gradient(210.68deg, rgba(255, 241, 166, 0.85) 46.72%, rgba(167, 134, 60, 0.5) 72.34%);

}


.premium-item-award-crown {
    position: absolute;
    top: -20px;
    right: -30px;
    width: auto;
    height: 90%;
    aspect-ratio: 245 / 235;
    transform: rotate(15deg);
}

.premium-item-award-content {
    flex-grow: 1;
    padding: 9px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}

.premium-item-award-button {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Roboto Condensed;
    font-weight: 500;
    font-style: Medium;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    border-radius: 16px;
    color: #5A321B;
    border: none;
    background: linear-gradient(203.78deg, #F8B301 -21.7%, #FFF389 84.71%);
    box-shadow: 0px 3.2px 7.48px 0px #00000040;
    overflow: hidden;
    cursor: pointer;
    font-size: inherit;
    transition: opacity 0.2s ease;
}

.premium-item-award-button:hover {
    background: linear-gradient(180deg, rgb(255, 228, 87), rgb(231, 202, 39));
}

.premium-item-award-button-text {
    margin: 0;
    padding: 0;
    position: relative;
}

.premium-item-award-button-container {
    position: relative;
    font-size: 35px;
    width: 100%;
    max-height: 75px;
    height: 100%;

    @media (max-width: 1400px) {
        font-size: 2.5vw;
    }

    @media (max-width: 1200px) {
        font-size: 35px;
        height: 65px;
    }

    @media (max-width: 650px) {
        font-size: 30px;
        height: 60px;
    }
}

.premium-item-award-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('./assets/images/premium-item/premium-item-award-button-pattern.png') no-repeat center center;
    background-size: cover;
}
.premium-item-award-title {
    font-family: Bebas Neue;
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF;
    margin: 0;
    text-shadow: 2px 2px 0px #352E20;

    @media (max-width: 1400px) {
        font-size: 2.2vw;
    }

    @media (max-width: 1200px) {
        font-size: 40px;
    }

    @media (max-width: 650px) {
        font-size: 30px;
    }
}

.premium-item-award-descr {
    font-family: Roboto Condensed;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0%;
    margin: 0;
    text-shadow: 0px 1.2px 1px #000000;
    color: #FFF8E8;

    @media (max-width: 1400px) {
        font-size: 16px;
    }

    @media (max-width: 1200px) {
        font-size: 20px;
    }

    @media (max-width: 650px) {
        font-size: 18px;
    }
}

.premium-item-award-bonus-list {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.premium-item-award-bonus-list:empty {
    display: none;
}

.premium-item-award-bonus-item {
    max-width: 80px;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #6E1F20 0%, #E05858 102.38%);
    box-shadow: 1.81px 1.81px 3.63px 0px #00000029;
    box-shadow: 2px 2px 3px 0px #0000004D;
    border-radius: 8px;
    border: 3px solid rgba(255, 216, 199, 0.1);

    @media (max-width: 1400px) {
        max-width: 50px;
    }

    @media (max-width: 1200px) {
        max-width: 70px;
    }

    @media (max-width: 450px) {
        max-width: 60px;
    }
}

.premium-item-award-bonus-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.3)); */
}

.premium-item-discount {
    position: absolute;
    top: -14px;
    right: 14px;
    font-family: Roboto Condensed;
    font-weight: 500;
    font-style: Medium;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #FFFFFF;
    z-index: 1;

    @media (max-width: 1350px) {
        font-size: 26px;
    }
}

.premium-item-discount::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -23px;
    right: -23px;
    bottom: -10px;
    background: url('./assets/images/premium-item/discount-background.svg') no-repeat center center;
    background-size: 100% 100%;
    z-index: -1;
}

.premium-item-discount:empty {
    display: none;
}

.premium-item-status {
    border: 2px solid #FFFFFF38;
    font-family: Roboto Condensed;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF80;
    background-color: #0203092E;
    padding: 12px 25px;
    border-radius: 79px;
}

.premium-item-status:empty {
    display: none;
}

.shop-item-reward-content {
    display: flex;
    align-items: center;
    gap: 5px;
}

.shop-item-reward-upgrade-level {
    margin: 0;
}