   @keyframes pulse {
    0%,to {
        opacity: 1
    }

    50% {
        opacity: .5
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@keyframes bounce {
    0%,20%,50%,80%,to {
        transform: translateY(0)
    }

    40% {
        transform: translateY(-10px)
    }

    60% {
        transform: translateY(-5px)
    }
}

@keyframes hxBlobFloat {
    0% {
        transform: translate3d(0,0,0) scale(1)
    }

    to {
        transform: translate3d(10px,-12px,0) scale(1.03)
    }
}

@keyframes hxSheen {
    0% {
        transform: translateX(-20%)
    }

    to {
        transform: translateX(20%)
    }
}

@keyframes smooth-scroll {
    0% {
        transform: translate3d(0,0,0)
    }

    to {
        transform: translate3d(-33.33%,0,0)
    }
}

:root {
    --hx-primary: #ff4500;
    --hx-primary-glow: rgba(255, 69, 0, 0.4);
    --hx-bg-glass: rgba(20, 22, 26, 0.7);
    --hx-border: rgba(255, 255, 255, 0.08);
    --hx-border-hover: rgba(255, 69, 0, 0.5);
    --hx-text: #ffffff;
    --hx-text-muted: #94a3b8;
    --hx-card-bg: #16181c;
    --hx-card-hover: rgba(255, 255, 255, 0.03);
    --hx-hero-bg: radial-gradient(800px 400px at 50% -20%, rgba(255, 69, 0, 0.15), transparent 70%),
                      linear-gradient(180deg, rgba(20, 20, 20, 0) 0%, rgba(20, 20, 20, 0.8) 100%),
                      #0f1115;
    --hx-search-bg: rgba(0,0,0,0.3);
    --hx-pill-bg: rgba(255,255,255,0.05);
    --hx-radius: 16px;
    --hx-trans: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1)
}

[data-bs-theme=light] {
    --hx-primary: #ff4500;
    --hx-primary-glow: rgba(255, 69, 0, 0.2);
    --hx-bg-glass: rgba(255, 255, 255, 0.9);
    --hx-border: #e2e8f0;
    --hx-border-hover: #ff4500;
    --hx-text: #1e293b;
    --hx-text-muted: #64748b;
    --hx-card-bg: #ffffff;
    --hx-card-hover: #f8fafc;
    --hx-hero-bg: radial-gradient(800px 400px at 50% -20%, rgba(255, 69, 0, 0.1), transparent 70%),
                      linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #f1f5f9 100%),
                      #f8fafc;
    --hx-search-bg: #ffffff;
    --hx-pill-bg: #f1f5f9
}

.hx-hero {
    position: relative;
    border-radius: 24px;
    padding: 60px 20px;
    margin-bottom: 30px;
    overflow: hidden;
    border: 1px solid var(--hx-border);
    background: var(--hx-hero-bg);
    box-shadow: 0 20px 40px rgba(0,0,0,.05);
    text-align: center
}

.hx-hero h1 {
    font-family: "Orbitron",sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: clamp(28px,5vw,48px);
    margin-bottom: 15px;
    color: var(--hx-text);
    letter-spacing: 1px
}

[data-bs-theme=dark] .hx-hero h1 {
    background: linear-gradient(to bottom,#fff,#ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.hx-hero p {
    color: var(--hx-text-muted);
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1rem;
    line-height: 1.6
}

.hx-search-wrapper {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 10px
}

.hx-search {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    height: 55px;
    border-radius: 12px;
    background: var(--hx-search-bg);
    border: 1px solid var(--hx-border);
 
    transition: var(--hx-trans)
}

.hx-search:focus-within {
    border-color: var(--hx-primary);
    box-shadow: 0 0 15px var(--hx-primary-glow)
}

.hx-search i {
    color: var(--hx-text-muted);
    font-size: 1.2rem
}

.hx-search input {
    width: 100%;
    background: 0 0;
    border: 0;
    outline: 0;
    color: var(--hx-text);
    font-size: 1rem;
    font-weight: 500
}

.hx-search input::placeholder {
    color: var(--hx-text-muted);
    opacity: .7
}

.hx-cta,.hx-section-header h2 {
    font-family: "Orbitron",sans-serif;
    display: flex;
    align-items: center;
    gap: 10px
}

.hx-cta {
    height: 55px;
    padding: 0 30px;
    border-radius: 12px;
    background: var(--hx-primary);
    color: #fff!important;
    font-weight: 700;
    text-decoration: none!important;
    transition: var(--hx-trans);
    border: 0;
    text-transform: uppercase;
    font-size: .9rem
}

.hx-cta:hover {
    opacity: .9;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--hx-primary-glow)
}

.hx-slider-wrapper {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid var(--hx-border);
    box-shadow: 0 10px 30px rgba(0,0,0,.1)
}

.hxMainSwiper {
    height: 450px
}

.hx-slider-img,.hx-story-ring img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hx-slider-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 40px 40px;
    background: linear-gradient(to top,rgba(0,0,0,.9)0,transparent 100%)
}

.hx-slider-title {
    font-family: "Orbitron",sans-serif;
    font-weight: 800;
    color: #fff;
    font-size: clamp(24px,4vw,40px);
    text-shadow: 0 0 20px rgba(0,0,0,.8)
}

.hx-slider-badge {
    background: var(--hx-primary);
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
    box-shadow: 0 0 10px var(--hx-primary-glow)
}

.hx-slider-nav {
    color: var(--hx-primary)!important;
    background: rgba(0,0,0,.5);
    width: 44px!important;
    height: 44px!important;
    border-radius: 12px;
  
}

.hx-slider-nav:after {
    font-size: 18px!important;
    font-weight: 900
}

.swiper-pagination-bullet-active {
    background: var(--hx-primary)!important
}

.hx-announcement-bar {
    background: var(--hx-card-bg);
    border: 1px solid var(--hx-border);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px
}

.hx-announcement-icon {
    color: var(--hx-primary);
    font-size: 1.2rem;
    animation: pulse 2s infinite
}

.hx-marquee-container {
    flex: 1;
    overflow: hidden;
    display: flex
}

.hx-marquee-content {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: marquee 25s linear infinite
}

.hx-marquee-content:hover {
    animation-play-state: paused
}

.hx-announcement-item {
    color: var(--hx-text);
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    padding: 0 40px
}

.hx-announcement-item.danger {
    color: #ef4444
}

.hx-announcement-item.success {
    color: #10b981
}

.hx-stories-list {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 10px 5px;
    scrollbar-width: none;
    margin-bottom: 10px
}

.hx-story-item {
    flex-shrink: 0;
    width: 72px;
    text-align: center;
    cursor: pointer;
    transition: transform .2s
}

.hx-story-item:hover {
    transform: translateY(-5px)
}

.hx-story-ring {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(45deg,#ff4500,#ffae00);
    margin-bottom: 8px;
    box-shadow: 0 0 15px rgba(255,69,0,.2)
}

.hx-story-ring img {
    border-radius: 50%;
    border: 3px solid var(--hx-card-bg)
}

.hx-story-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--hx-text);
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.hx-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: start
}

.hx-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px
}

.hx-section-header h2 {
    font-size: 1.4rem;
    color: var(--hx-text);
    margin: 0
}

.hx-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(220px,1fr));
    gap: 16px
}

.hx-game,.hx-game-thumb {
    display: flex;
    align-items: center;
    border: 1px solid var(--hx-border)
}

.hx-game {
    background: var(--hx-card-bg);
    border-radius: 16px;
    padding: 12px;
    gap: 15px;
    cursor: pointer;
    transition: all .2s ease;
    position: relative;
    overflow: hidden
}

.hx-game:hover {
    border-color: var(--hx-border-hover);
    background: var(--hx-card-hover);
    transform: translateY(-2px)
}

.hx-game.active {
    border-color: var(--hx-primary);
    box-shadow: 0 0 0 1px var(--hx-primary),0 0 20px var(--hx-primary-glow)
}

.hx-game-thumb {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #000;
    justify-content: center;
    flex-shrink: 0
}

.hx-game-thumb img {
    width: 85%;
    height: 85%;
    object-fit: contain
}

.hx-game-info {
    flex: 1;
    min-width: 0
}

.hx-game-name {
    font-weight: 700;
    color: var(--hx-text);
    font-size: .95rem;
    line-height: 1.3;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.hx-arrow,.hx-pill {
    background: var(--hx-pill-bg);
    align-items: center;
    color: var(--hx-text-muted)
}

.hx-pill {
    display: inline-flex;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid transparent
}

.hx-cat-item:hover,.hx-game:hover .hx-pill {
    color: var(--hx-primary);
    border-color: rgba(255,69,0,.3)
}

.hx-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    transition: .2s
}

.hx-game:hover .hx-arrow {
    background: var(--hx-primary);
    color: #fff
}

.hx-panel {
    position: sticky;
    top: 90px;
    background: var(--hx-card-bg);
    border: 1px solid var(--hx-border);
    border-radius: 20px;
    overflow: hidden;
  
    box-shadow: 0 15px 40px rgba(0,0,0,.05)
}

.hx-panel-header {
    padding: 15px;
    background: rgba(128,128,128,.05);
    border-bottom: 1px solid var(--hx-border);
    display: flex;
    align-items: center;
    gap: 12px
}

.hx-panel-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--hx-search-bg);
    border: 1px solid var(--hx-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hx-text-muted)
}

.hx-panel-icon img {
    width: 80%;
    height: 80%;
    object-fit: contain
}

.hx-panel-title {
    font-weight: 800;
    color: var(--hx-text);
    font-size: 1rem;
    line-height: 1.2
}

.hx-panel-sub {
    font-size: .75rem;
    color: var(--hx-primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .5px
}

.hx-panel-body {
    padding: 10px;
    max-height: calc(100vh - 200px);
    overflow-y: auto
}

.hx-cat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 8px;
    background: var(--hx-pill-bg);
    border: 1px solid transparent;
    border-radius: 10px;
    color: var(--hx-text-muted);
    text-decoration: none!important;
    font-weight: 600;
    font-size: .9rem;
    transition: .2s
}

.hx-cat-item:hover {
    background: rgba(255,69,0,.1);
    color: var(--hx-text);
    padding-left: 20px
}

.hx-cat-item i {
    font-size: 1.1rem
}

.hx-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--hx-text-muted);
    border: 2px dashed var(--hx-border);
    border-radius: 12px
}

.hx-sheet-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.8);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: .3s
}

.hx-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: var(--hx-card-bg);
    border-top: 1px solid var(--hx-border);
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
    transition: .3s cubic-bezier(.2,.8,.2,1);
    display: flex;
    flex-direction: column;
    max-height: 80vh;
    box-shadow: 0-10px 40px rgba(0,0,0,.3)
}

.hx-sheet-open .hx-sheet-backdrop {
    opacity: 1;
    pointer-events: auto
}

.hx-sheet-open .hx-sheet {
    transform: translateY(0)
}

.hx-sheet-drag {
    width: 50px;
    height: 5px;
    background: var(--hx-border);
    border-radius: 10px;
    margin: 12px auto
}

.hx-sheet-header {
    padding: 10px 20px 20px;
    border-bottom: 1px solid var(--hx-border);
    display: flex;
    align-items: center;
    justify-content: space-between
}

.hx-sheet-title {
    font-family: "Orbitron",sans-serif;
    color: var(--hx-text);
    font-size: 1.1rem
}

.hx-sheet-close {
    width: 32px;
    height: 32px;
    background: var(--hx-pill-bg);
    border-radius: 50%;
    border: 0;
    color: var(--hx-text)
}

.hx-sheet-body {
    padding: 15px;
    overflow-y: auto
}

.hx-story-viewer {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center
}

.hx-story-progress-wrap {
    position: absolute;
    top: 15px;
    left: 10px;
    right: 10px;
    height: 3px;
    background: rgba(255,255,255,.2);
    z-index: 10002
}

.hx-story-progress-bar {
    height: 100%;
    background: var(--hx-primary);
    width: 0%
}

.hx-story-frame {
    width: 100%;
    max-width: 450px;
    height: 100%;
    position: relative
}

.hx-blog-img-box img,.hx-story-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.hx-story-close {
    position: absolute;
    top: 30px;
    right: 20px;
    z-index: 10002;
    background: 0 0;
    border: 0;
    color: #fff;
    font-size: 24px
}

.hx-story-footer {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff
}

.hx-story-cta {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: var(--hx-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    animation: bounce 2s infinite
}

@media (max-width:992px) {
    .hx-layout {
        grid-template-columns: 1fr
    }

    .hx-panel {
        display: none
    }
}

@media (max-width:768px) {
    .hxMainSwiper {
        height: 250px
    }

    .hx-slider-content {
        padding: 20px
    }

    .hx-hero {
        padding: 40px 15px
    }

    .hx-search-wrapper {
        flex-direction: column
    }

    .hx-cta {
        width: 100%;
        justify-content: center
    }

    .hx-game {
        padding: 10px
    }
}

.hx-blog-container {
    background: #0f1115;
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 40px;
    padding: 40px 0 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,.3);
    isolation: isolate
}

.orange-glow-blog {
    position: absolute;
    top: -80px;
    right: -50px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle,rgba(255,69,0,.12)0,transparent 70%);
    z-index: -1;
    pointer-events: none
}

.hx-blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    margin-bottom: 30px
}

.hx-blog-title-box {
    display: flex;
    align-items: center;
    gap: 15px
}

.blog-icon-badge {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg,#ff4500,#ffae00);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 0 20px rgba(255,69,0,.4)
}

.hx-blog-main-title {
    color: #fff;
    font-family: "Orbitron",sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase
}

.blog-view-all {
    background: rgba(255,255,255,.05);
    color: #94a3b8;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    transition: .3s;
    border: 1px solid rgba(255,255,255,.05)
}

.blog-view-all:hover {
    background: rgba(255,255,255,.1);
    color: #fff;
    border-color: #ff450030
}

.hx-blog-glass-card {
    background: #16181c;
    border: 1px solid rgba(255,255,255,.03);
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    transition: all .3s cubic-bezier(.2,.8,.2,1);
    transform: translate3d(0,0,0)
}

.hx-blog-glass-card:hover {
    border-color: rgba(255,69,0,.3);
    transform: translateY(-8px);
    background: rgba(255,255,255,.03)
}

.hx-blog-img-box {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden
}

.hx-blog-img-box img {
    object-fit: cover;
    transition: transform .6s ease
}

.hx-blog-glass-card:hover .hx-blog-img-box img {
    transform: scale(1.08)
}

.hx-blog-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,69,0,.9);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    padding: 5px 12px;
    border-radius: 8px;
    text-transform: uppercase;
  
}

.hx-blog-content {
    padding: 20px
}

.hx-blog-title {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3rem
}

.hx-blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,.05);
    padding-top: 15px
}

.hx-blog-date {
    color: rgba(255,255,255,.3);
    font-size: 11px;
    font-weight: 600
}

.hx-blog-arrow {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff4500;
    transition: .3s
}

.hx-blog-glass-card:hover .hx-blog-arrow {
    background: #ff4500;
    color: #fff
}

@media (max-width:768px) {
    .hx-blog-header {
        padding: 0 20px
    }

    .hx-blog-main-title {
        font-size: 1.1rem
    }

    .hx-blog-container {
        border-radius: 30px
    }
}

:root {
    --hx-sec-radius: 40px;
    --primary-color: #f97316;
    --primary-glow: rgba(249, 115, 22, .35);
    --hx-sec-bg: rgba(255,255,255,.75);
    --hx-card-bg: rgba(255,255,255,.82);
    --hx-border: rgba(15, 23, 42, .10);
    --hx-text: #0f172a;
    --hx-text-rgb: 15, 23, 42;
    --hx-soft-shadow: 0 18px 60px rgba(2, 6, 23, .08);
    --hx-card-shadow: 0 14px 35px rgba(2, 6, 23, .10)
}

[data-bs-theme=dark] {
    --hx-sec-bg: rgba(10, 14, 22, .55);
    --hx-card-bg: rgba(17, 24, 39, .48);
    --hx-border: rgba(255,255,255,.08);
    --hx-text: rgba(255,255,255,.92);
    --hx-text-rgb: 255,255,255;
    --hx-soft-shadow: 0 24px 80px rgba(0,0,0,.35);
    --hx-card-shadow: 0 18px 45px rgba(0,0,0,.35)
}

.hx-popular-section-wrapper {
    background: var(--hx-sec-bg);
    border: 1px solid var(--hx-border);
    border-radius: var(--hx-sec-radius);
    padding: 56px 20px 34px;
    margin-bottom: 60px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    box-shadow: var(--hx-soft-shadow);
  
}

.hx-popular-section-wrapper::after,.hx-popular-section-wrapper::before {
    content: "";
    position: absolute;
    inset: -2px;
    pointer-events: none;
    z-index: -1
}

.hx-popular-section-wrapper::before {
    background: radial-gradient(900px 520px at 10%0,rgba(249,115,22,.22),transparent 60%),radial-gradient(820px 520px at 90% 18%,rgba(56,189,248,.18),transparent 58%),radial-gradient(900px 600px at 50% 120%,rgba(168,85,247,.14),transparent 62%);
    filter: blur(2px);
    opacity: .95;
    animation: hxBlobFloat 10s ease-in-out infinite alternate
}

.hx-popular-section-wrapper::after {
    background: linear-gradient(120deg,rgba(255,255,255,.1),transparent 30%,transparent 70%,rgba(255,255,255,.06));
    mix-blend-mode: overlay;
    opacity: .55;
    animation: hxSheen 12s linear infinite
}

@media (prefers-reduced-motion:reduce) {
    .hx-popular-section-wrapper::after,.hx-popular-section-wrapper::before {
        animation: none!important
    }

    .hx-pop-card {
        transition: none!important
    }
}

.hx-popular-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 26px;
    padding: 0 8px
}

.hx-popular-title {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0
}

.hx-popular-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg,#f97316,#ea580c);
    box-shadow: 0 0 0 1px rgba(255,255,255,.1) inset,0 0 26px var(--primary-glow);
    flex: 0 0 auto
}

.hx-popular-header h2,.hx-view-all {
    text-transform: uppercase;
    color: var(--hx-text)
}

.hx-popular-header h2 {
    margin: 0;
    font-family: "Orbitron",sans-serif;
    font-weight: 900;
    letter-spacing: .04em;
    font-size: 1.45rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.hx-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .06em;
    background: rgba(var(--hx-text-rgb),.04);
    border: 1px solid var(--hx-border);
    transition: .25s ease;
    flex: 0 0 auto
}

.hx-view-all:hover {
    transform: translateY(-1px);
    border-color: rgba(249,115,22,.45);
    box-shadow: 0 0 0 4px rgba(249,115,22,.1);
    color: var(--hx-text)
}

.hx-pop-slider,.hx-pop-slider .carousel-inner {
    overflow: visible!important
}

.hx-pop-indicators {
    position: static;
    margin: 0 0 14px;
    justify-content: center;
    gap: 8px
}

.hx-pop-indicators [data-bs-target] {
    width: 26px;
    height: 6px;
    border-radius: 999px;
    border: 1px solid var(--hx-border);
    background: rgba(var(--hx-text-rgb),.06);
    opacity: 1;
    transition: .25s ease
}

.hx-pop-indicators .active {
    background: rgba(249,115,22,.55);
    border-color: rgba(249,115,22,.55);
    box-shadow: 0 0 14px rgba(249,115,22,.35)
}

.hx-pop-card {
    background: var(--hx-card-bg);
    border: 1px solid var(--hx-border);
    border-radius: 28px;
    padding: 22px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: var(--hx-card-shadow);
  
    overflow: hidden;
    transition: transform .32s cubic-bezier(.2,.9,.2,1),box-shadow .32s cubic-bezier(.2,.9,.2,1),border-color .32s cubic-bezier(.2,.9,.2,1),filter .32s cubic-bezier(.2,.9,.2,1);
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden
}

.hx-pop-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(600px 240px at 20%0,rgba(249,115,22,.14),transparent 55%),radial-gradient(520px 220px at 80% 20%,rgba(56,189,248,.12),transparent 58%);
    opacity: 0;
    pointer-events: none;
    transition: opacity .32s cubic-bezier(.2,.9,.2,1)
}

.hx-pop-card:not(.is-disabled):hover {
    transform: translate3d(0,-6px,0) scale(1.01);
    border-color: rgba(249,115,22,.5);
    box-shadow: 0 22px 55px rgba(0,0,0,.22),0 0 22px rgba(249,115,22,.12);
    z-index: 5
}

.hx-pop-card:not(.is-disabled):hover::before {
    opacity: .95
}

.hx-pop-card.is-disabled {
    opacity: .55;
    cursor: not-allowed!important;
    filter: grayscale(.85)
}

.hx-badge-pop {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 10px;
    font-weight: 900;
    padding: 6px 12px;
    border-radius: 10px;
    z-index: 6;
    text-transform: uppercase;
    letter-spacing: .05em;
    background: rgba(239,68,68,.95);
    color: #fff;
    box-shadow: 0 10px 25px rgba(239,68,68,.25);
    max-width: 85%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.hx-pop-img-box {
    height: 168px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--hx-border);
    background: linear-gradient(180deg,rgba(var(--hx-text-rgb),.04),rgba(var(--hx-text-rgb),.02));
    overflow: hidden
}

.hx-pop-img-box img {
    max-height: 92%;
    max-width: 92%;
    object-fit: contain;
    transform: translateZ(0);
  
    transition: transform .32s cubic-bezier(.2,.9,.2,1);
    backface-visibility: hidden
}

.hx-pop-card:not(.is-disabled):hover .hx-pop-img-box img {
    transform: scale(1.03)
}

.hx-pop-name {
    font-weight: 800;
    color: var(--hx-text);
    font-size: 14px;
    text-align: center;
    margin: 0
}

.hx-pop-price {
    margin-top: auto;
    text-align: center;
    font-family: "Orbitron",sans-serif;
    font-weight: 900;
    font-size: 1.18rem;
    color: var(--primary-color);
    text-shadow: 0 0 18px rgba(249,115,22,.18)
}

.hx-pop-btn,.hx-pop-controls {
    display: flex;
    justify-content: center
}

.hx-pop-controls {
    gap: 12px;
    margin-top: 18px
}

.hx-pop-btn {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid var(--hx-border);
    background: rgba(var(--hx-text-rgb),.05);
    color: var(--hx-text);
    align-items: center;
    transition: .2s ease
}

.hx-pop-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(249,115,22,.45);
    box-shadow: 0 0 0 4px rgba(249,115,22,.1)
}

@media (max-width:768px) {
    .hx-popular-section-wrapper {
        padding: 26px 10px 18px!important;
        border-radius: 26px!important
    }

    .hx-popular-header {
        margin-bottom: 16px;
        padding: 0 6px
    }

    .hx-popular-header h2 {
        font-size: 1.05rem
    }

    .hx-view-all {
        font-size: 9px;
        padding: 6px 10px
    }

    .hx-pop-row {
        display: flex!important;
        flex-wrap: nowrap!important;
        overflow-x: auto!important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0!important;
        padding-bottom: 6px
    }

    .hx-pop-row::-webkit-scrollbar {
        display: none
    }

    .hx-pop-row>div {
        flex: 0 0 100%!important;
        max-width: 100%!important;
        scroll-snap-align: start;
        padding: 0 10px!important
    }

    .hx-pop-card {
        padding: 18px!important;
        min-height: 340px
    }

    .hx-pop-img-box {
        height: 182px!important
    }

    .hx-pop-controls {
        display: none!important
    }

    .hx-pop-indicators {
        margin-bottom: 10px
    }

    .hx-pop-card:not(.is-disabled):hover {
        transform: none;
        box-shadow: var(--hx-card-shadow)
    }

    .hx-pop-card:not(.is-disabled):hover::before {
        opacity: 0
    }

    .hx-pop-card:not(.is-disabled):hover .hx-pop-img-box img {
        transform: none
    }
}

.live-orders-container {
    background: #0f1115;
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 40px;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,.3)
}

.orange-glow {
    position: absolute;
    top: -100px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle,rgba(255,69,0,.15)0,transparent 70%);
    z-index: 1;
    pointer-events: none
}

.live-header {
    justify-content: space-between;
    padding: 0 40px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2
}

.live-header,.live-title-box,.star-badge {
    display: flex;
    align-items: center
}

.live-title-box {
    gap: 15px
}

.star-badge {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg,#ff4500,#ffae00);
    border-radius: 12px;
    justify-content: center;
    color: #fff;
    box-shadow: 0 0 20px rgba(255,69,0,.4)
}

.live-title {
    color: #fff;
    font-family: "Orbitron",sans-serif;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0
}

.view-all-btn {
    background: rgba(255,255,255,.05);
    color: #94a3b8;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    transition: .3s
}

.view-all-btn:hover {
    background: rgba(255,255,255,.1);
    color: #fff
}

.live-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 2
}

.live-marquee-track {
    display: flex;
    width: max-content;
    animation: smooth-scroll 180s linear infinite;
    will-change: transform;
    transform: translate3d(0,0,0)
}

.live-order-card {
    background: #16181c;
    border: 1px solid rgba(255,255,255,.03);
    border-radius: 24px;
    margin: 0 12px;
    padding: 15px 20px;
    min-width: 340px;
    transition: .3s cubic-bezier(.2,.8,.2,1)
}

.card-img,.card-inner {
    display: flex;
    align-items: center
}

.card-inner {
    gap: 15px
}

.card-img {
    width: 54px;
    height: 54px;
    background: #0f1115;
    border-radius: 14px;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.placeholder-icon {
    color: rgba(255,255,255,.15);
    font-size: 24px
}

.card-content {
    flex-grow: 1;
    min-width: 0
}

.prod-name {
    color: #fff;
    font-weight: 800;
    font-size: 13.5px;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.user-info {
    font-size: 10.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px
}

.u-mask {
    color: #ff4500
}

.u-sep,.u-time {
    opacity: .2;
    color: #fff
}

.u-time {
    opacity: .4
}

.card-price {
    background: rgba(255,69,0,.06);
    border: 1px solid rgba(255,69,0,.2);
    padding: 8px 16px;
    border-radius: 14px
}

.price-val {
    color: #ff4500;
    font-family: "Orbitron",sans-serif;
    font-weight: 900;
    font-size: 13px;
    white-space: nowrap
}

/* YENİ REVIEWS CSS HİSSƏSİ */
.hx-reviews-main-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: clamp(20px, 4vw, 32px);
    color: var(--hx-text);
    margin-bottom: 12px;
}

.hx-review-card {
    background: var(--hx-card-bg);
    border: 1px solid var(--hx-border);
    border-top: 4px solid var(--rev-accent, #10b981);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}

.hx-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.rev-avatar-wrap {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--rev-accent-rgb, 16, 185, 129), 0.1);
    color: var(--rev-accent, #10b981);
    font-size: 20px;
    flex-shrink: 0;
}

.rev-verified {
    position: absolute;
    bottom: -2px;
    right: -2px;
    color: #10b981;
    background: var(--hx-card-bg);
    border-radius: 50%;
    font-size: 14px;
    line-height: 1;
}

.rev-user-name {
    font-weight: 700;
    color: var(--hx-text);
    font-size: 15px;
    margin-bottom: 2px;
}

.rev-product-badge {
    font-size: 11px;
    background: var(--hx-pill-bg);
    color: var(--hx-text-muted);
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.rev-rating-pill {
    background: rgba(251, 191, 36, 0.15);
    color: #f59e0b;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.rev-text-content {
    flex-grow: 1;
    margin: 20px 0;
    font-size: 14px;
    color: var(--hx-text-muted);
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.rev-quote-icon {
    position: absolute;
    left: -5px;
    top: -5px;
    font-size: 24px;
    color: var(--hx-border);
    opacity: 0.5;
}

.rev-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--hx-border);
}

.rev-stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 2px;
}

.rev-actions {
    display: flex;
    gap: 8px;
}

.rev-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--hx-border);
    background: transparent;
    color: var(--hx-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.rev-btn:hover {
    background: var(--hx-pill-bg);
    color: var(--hx-text);
}

.rev-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--hx-card-bg);
    border: 1px solid var(--hx-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hx-text);
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.rev-nav-btn:hover {
    background: var(--hx-primary);
    color: white;
    border-color: var(--hx-primary);
}

.rev-pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.rev-pagination .swiper-pagination-bullet {
    background: var(--hx-border);
    opacity: 1;
    width: 8px;
    height: 8px;
}

.rev-pagination .swiper-pagination-bullet-active {
    background: #ff4500 !important;
    width: 30px;
    border-radius: 4px;
}

[data-bs-theme="light"] .live-orders-container{
  background: linear-gradient(180deg,#ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 20px 45px rgba(2,6,23,.10);
}

[data-bs-theme="light"] .orange-glow{
  background: radial-gradient(circle, rgba(255,69,0,.10) 0%, transparent 70%);
  opacity: 1;
}

/* Header */
[data-bs-theme="light"] .live-title{
  color: #0f172a;
}

[data-bs-theme="light"] .star-badge{
  box-shadow: 0 0 18px rgba(255,69,0,.25);
}

/* Track/cards */
[data-bs-theme="light"] .live-order-card{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 10px 22px rgba(2,6,23,.08);
}

[data-bs-theme="light"] .live-order-card:hover{
  border-color: rgba(255,69,0,.25);
  box-shadow: 0 14px 28px rgba(2,6,23,.10);
}

/* Left image box */
[data-bs-theme="light"] .card-img{
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.08);
}

[data-bs-theme="light"] .placeholder-icon{
  color: rgba(15,23,42,.20);
}

/* Texts */
[data-bs-theme="light"] .prod-name{
  color: #0f172a;
}

[data-bs-theme="light"] .user-info{
  color: rgba(15,23,42,.55);
}

[data-bs-theme="light"] .u-mask{
  color: #ff4500; /* brend rəngi saxlanır */
}

[data-bs-theme="light"] .u-sep{
  color: rgba(15,23,42,.25);
  opacity: 1;
}

[data-bs-theme="light"] .u-time{
  color: rgba(15,23,42,.45);
  opacity: 1;
}

/* Price pill */
[data-bs-theme="light"] .card-price{
  background: rgba(255,69,0,.06);
  border: 1px solid rgba(255,69,0,.18);
}

[data-bs-theme="light"] .price-val{
  color: #ff4500;
}

[data-bs-theme="light"] .hx-blog-container{
  background: linear-gradient(180deg,#ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 20px 45px rgba(2,6,23,.10);
}

[data-bs-theme="light"] .orange-glow-blog{
  background: radial-gradient(circle, rgba(255,69,0,.10) 0%, transparent 70%);
  opacity: 1;
}

[data-bs-theme="light"] .hx-blog-main-title{
  color: #0f172a;
}

[data-bs-theme="light"] .blog-view-all{
  background: rgba(15,23,42,.04);
  color: rgba(15,23,42,.65);
  border: 1px solid rgba(15,23,42,.08);
}

[data-bs-theme="light"] .blog-view-all:hover{
  background: rgba(255,69,0,.06);
  border-color: rgba(255,69,0,.20);
  color: #0f172a;
}

[data-bs-theme="light"] .hx-blog-glass-card{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 12px 26px rgba(2,6,23,.08);
}

[data-bs-theme="light"] .hx-blog-glass-card:hover{
  background: #ffffff;
  border-color: rgba(255,69,0,.25);
  box-shadow: 0 16px 34px rgba(2,6,23,.10);
}

[data-bs-theme="light"] .hx-blog-title{
  color: #0f172a;
}

[data-bs-theme="light"] .hx-blog-date{
  color: rgba(15,23,42,.45);
}

[data-bs-theme="light"] .hx-blog-arrow{
  background: rgba(255,69,0,.08);
  color: #ff4500;
}

[data-bs-theme="light"] .hx-blog-glass-card:hover .hx-blog-arrow{
  background: #ff4500;
  color: #fff;
}

[data-bs-theme="light"] .hx-blog-category-badge{
  box-shadow: 0 10px 20px rgba(255,69,0,.15);
}


.hxReviewSwiper {
    padding-top: 15px !important;
    padding-bottom: 30px !important; 
}