.goods_top {
    margin: 30px auto;
    min-width: 0;
    width: 98%;
    display: grid;
    gap: 20px;
    justify-content: center;
    justify-items: center;
    grid-template-columns: 1fr 1fr;
}
.good_images {

}
@media (max-width: 768px) {
    .goods_top {
        grid-template-columns: 1fr;
    }
}
.carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel_img {
    display: none;
    width: 100%;
    height: auto;
}

.carousel_img.active {
    display: block;
}

.carousel_btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}

.carousel_btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel_btn_prev {
    left: 10px;
}

.carousel_btn_next {
    right: 10px;
}

.carousel_indicators {
    margin-top: 10px;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    justify-content: left;
}

.carousel_dot {
    display: inline-block;
    width: 100%;
    cursor: pointer;
}

.carousel_dot.active {
    border: 1px solid white;
}
@media (max-width: 768px) {
    .carousel_btn {
        display: none;
    }
}
.good_description {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: fit-content;
    justify-items: center;
}
.title {
    margin: auto;
    padding-bottom: 15px;
    grid-column: 1 / 3;
    color: #e9e9e9;
    font-size: 1.2rem;
    text-align: center;
    width: 90%;
    font-family: system-ui;
    font-weight: 300;
}
.goods_params {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.goods_param {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 5px;
    border: 1px solid #5c5b5b;
    border-radius: 12px;
    width: 150px;
    text-align: center;
    font-size: 0.7rem;
    color: #e9e9e9;
    user-select: none;
}
.goods_param_text {
    margin: 7px;
}
.goods_param_value {
    height: 100%;
    display: flex;
    width: 30px;
    border-bottom-right-radius: 12px;
    border-top-right-radius: 12px;
    align-items: center;
}
.goods_param_value.rus {
    color: #07a907;
}
.goods_params_cat {
    margin: 7px 7px 0 7px;
    font-size: 0.7rem;
    color: #e9e9e9;
    user-select: none;
}
.goods_param_icon{
    position: absolute;
    top: 5px;
    left: 12px;
}
.handheld_img {
    position: absolute;
    top: 5px;
    left: 12px;
    width: 16px;
    filter: brightness(0.8);
}
.goods_price {
    display: flex;
    flex-direction: column;
    text-align: center;
    user-select: none;
}
.buy_button {
    margin: 29px auto;
    width: 150px;
    height: 65px;
    display: flex;
    border-radius: 12px;
    justify-self: center;
    overflow: hidden;
    background: black;
    padding: 2px;
    box-shadow: 0 0 20px 10px rgba(139, 92, 246, 0.20);
    transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.buy_link {
    display: flex;
    width: 100%;
    border-radius: 11px;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    font-family: Comfortaa, sans-serif;
}
.buy_button:hover {
    box-shadow: 0 0 20px 10px rgba(139, 92, 246, 0.25);
    transform: scale(1.05);
    filter: brightness(1.1);
}
.discount_price {
    color: #a3a0a0;
    margin: 0 auto;
}
.original_price {
    color: #e9e9e9;
    font-size: 1.5rem;
    margin: 10px auto;
}
.discount_date {
    color: #c4971c;
    font-size: 0.8rem;
    margin: 15px auto;
}
.cyber-showcase-wrapper {
    max-width: 900px;
    margin: 30px auto;
    width: 96%;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.neon-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.glowing-card-container {
    width: 100%;
}

.premium-feature-card {
    position: relative;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(102, 126, 234, 0.3);
    box-shadow:
        0 0 10px rgba(102, 126, 234, 0.3),
        0 0 20px rgba(102, 126, 234, 0.2),
        0 0 30px rgba(102, 126, 234, 0.1);
    backdrop-filter: blur(5px);
    animation: softNeonPulse 4s ease-in-out infinite alternate;
    display: flex;
    flex-direction: column;
    padding: 0 5px 10px 5px;
}

@keyframes softNeonPulse {
    from {
        box-shadow:
            0 0 5px rgba(102, 126, 234, 0.3),
            0 0 10px rgba(102, 126, 234, 0.2),
            0 0 15px rgba(102, 126, 234, 0.1);
        border-color: rgba(102, 126, 234, 0.3);
    }
    to {
        box-shadow:
            0 0 7px rgba(102, 126, 234, 0.4),
            0 0 14px rgba(102, 126, 234, 0.25),
            0 0 28px rgba(102, 126, 234, 0.15);
        border-color: rgba(102, 126, 234, 0.4);
    }
}

.cyber-badge-header {
    color: white;
    padding: 5px 12px;
    font-size: 0.63rem;
    text-align: center;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow:
        0 0 8px rgba(35, 250, 0, 0.4),
        0 4px 15px rgba(102, 126, 234, 0.2),
        inset 0 0 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    max-width: 65%;
    width: 65%;
    margin: 0 auto 10px auto;
    flex-shrink: 0;
}

.cyber-badge-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}

.cyber-badge-header svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    flex-shrink: 0;
}

.feature-description-text {
    color: #fff;
    font-size: 0.7rem;
    line-height: 1.1;
    text-align: center;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px 10px 10px;
}

.glowing-card-container:nth-child(1) { animation: smoothSlideUp 0.8s ease-out 0.1s both; }
.glowing-card-container:nth-child(2) { animation: smoothSlideUp 0.8s ease-out 0.2s both; }
.glowing-card-container:nth-child(3) { animation: smoothSlideUp 0.8s ease-out 0.3s both; }
.glowing-card-container:nth-child(4) { animation: smoothSlideUp 0.8s ease-out 0.4s both; }

@keyframes smoothSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge-title-text {
    position: relative;
    z-index: 1;
}

@media (max-width: 680px) {
    .neon-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 425px) {
    .neon-features-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}
.description_title{
    font-size: 1rem;
    padding-bottom: 5px;
    margin: 30px auto;
    color: #e9e9e9;
    font-family: Comfortaa, sans-serif;
    border-bottom: 1px solid #3a3a3a;
    width: 100%;
    text-align: center;
    letter-spacing: 0.6rem;
}
.description{
    color: #a5a5a5;
    font-size: 1rem;
    white-space: pre-line;
}
.extra_games {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
}
.extra_game img {
    width: 100%;
    border-radius: 7px;
}
.extra_game{
    transition: filter 0.2s ease;
}
.extra_game:hover{
    filter: brightness(0.8);
}
@media (max-width: 425px) {
    .extra_games {
        grid-template-columns: repeat(4, 1fr);
    }
}