/**
 * Home Page Styles - Cyberpunk Neon Gaming Theme
 * Copyright (c) 2025 HUST University
 * @author NGUYỄN ĐỨC BÌNH
 * 
 * 🎮 Neon Gaming Homepage with Glow Effects
 */

/* ========================================
   Hero Section - Main Banner Area
   ======================================== */
.hero-wrapper {
    display: flex;
    gap: 20px;
    align-items: stretch;
    margin-bottom: 40px;
    margin-top: 30px;
}

/* ========================================
   Hero Banner - Neon Frame
   ======================================== */
.hero-banner {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius);
    position: relative;
    height: 380px;
    border: 2px solid rgba(139, 92, 246, 0.4);
    box-shadow:
        0 0 0 1px rgba(139, 92, 246, 0.2),
        0 0 30px rgba(139, 92, 246, 0.3),
        0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Neon Corner Accents */
.hero-banner::before,
.hero-banner::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: 10;
    pointer-events: none;
}

.hero-banner::before {
    top: 0;
    left: 0;
    border-top: 3px solid var(--neon-purple);
    border-left: 3px solid var(--neon-purple);
    box-shadow:
        -5px -5px 15px rgba(139, 92, 246, 0.5),
        inset 5px 5px 15px rgba(139, 92, 246, 0.3);
}

.hero-banner::after {
    bottom: 0;
    right: 0;
    border-bottom: 3px solid var(--neon-blue);
    border-right: 3px solid var(--neon-blue);
    box-shadow:
        5px 5px 15px rgba(34, 211, 238, 0.5),
        inset -5px -5px 15px rgba(34, 211, 238, 0.3);
}

.hero-banner .swiper {
    width: 100%;
    height: 100%;
}

.hero-banner__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-banner a {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: white;
    border-radius: var(--border-radius-pill);
    font-size: 1.6rem;
    font-weight: 600;
    box-shadow: var(--glow-pink);
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 15px;
}

.hero-banner a:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.8), 0 0 40px rgba(236, 72, 153, 0.5);
}

/* Swiper Navigation - Neon Style */
.heroBannerSwiper .swiper-button-next,
.heroBannerSwiper .swiper-button-prev {
    color: white;
    background: rgba(139, 92, 246, 0.6);
    backdrop-filter: blur(10px);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(139, 92, 246, 0.5);
    transition: var(--transition);
}

.heroBannerSwiper .swiper-button-next:hover,
.heroBannerSwiper .swiper-button-prev:hover {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    box-shadow: var(--glow-purple);
}

.heroBannerSwiper .swiper-button-next:after,
.heroBannerSwiper .swiper-button-prev:after {
    font-size: 18px;
}

.heroBannerSwiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 10px;
    height: 10px;
}

.heroBannerSwiper .swiper-pagination-bullet-active {
    background: var(--neon-yellow);
    box-shadow: 0 0 10px var(--neon-yellow);
}

/* ========================================
   Hero Sidebar - Top Recharge Panel
   ======================================== */
.hero-sidebar {
    width: 350px;
    background: var(--bg-gradient-card);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid rgba(139, 92, 246, 0.4);
    box-shadow:
        0 0 0 1px rgba(139, 92, 246, 0.2),
        0 0 30px rgba(139, 92, 246, 0.3),
        0 20px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

/* Neon Corner Effect */
.hero-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border-top: 3px solid var(--neon-blue);
    border-right: 3px solid var(--neon-blue);
    box-shadow: 5px -5px 15px rgba(34, 211, 238, 0.5);
    z-index: 10;
    pointer-events: none;
}

.hero-sidebar__header {
    background: linear-gradient(135deg, var(--bg-card), rgba(139, 92, 246, 0.2));
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
    position: relative;
}

.hero-sidebar__header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-purple), var(--neon-blue), transparent);
    box-shadow: 0 0 10px var(--neon-purple);
}

.hero-sidebar__header i {
    color: var(--neon-blue);
    filter: drop-shadow(0 0 6px var(--neon-blue));
}

.hero-sidebar__content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero-sidebar__empty {
    padding: 30px 0;
    color: var(--text-muted);
    font-size: 1.5rem;
    text-align: center;
}

.hero-sidebar__list {
    flex: 1;
    margin-bottom: 15px;
}

.hero-sidebar__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.15);
    transition: var(--transition);
}

.hero-sidebar__item:hover {
    background: rgba(139, 92, 246, 0.1);
    margin: 0 -20px;
    padding: 14px 20px;
    border-radius: var(--border-radius-sm);
}

.hero-sidebar__item:last-child {
    border-bottom: none;
}

.hero-sidebar__user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-sidebar__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.hero-sidebar__name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-main);
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-sidebar__amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-yellow);
    text-shadow: 0 0 8px rgba(250, 204, 21, 0.6);
}

/* Rank Badges - Neon Style */
.hero-sidebar__rank {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.4rem;
    color: white;
    position: relative;
    border: 2px solid transparent;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-sidebar__rank::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50% 50% 0 0;
}

.hero-sidebar__rank--gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-color: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.hero-sidebar__rank--silver {
    background: linear-gradient(135deg, #E0E0E0, #A9A9A9);
    border-color: #C0C0C0;
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.6);
}

.hero-sidebar__rank--bronze {
    background: linear-gradient(135deg, #CD7F32, #A0522D);
    border-color: #CD7F32;
    box-shadow: 0 0 15px rgba(205, 127, 50, 0.6);
}

/* CTA Button - Neon Glow */
.hero-sidebar__btn {
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue));
    color: white;
    border-radius: var(--border-radius-pill);
    border: none;
    padding: 14px 24px;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow:
        0 0 15px rgba(139, 92, 246, 0.6),
        0 0 30px rgba(34, 211, 238, 0.4);
    transition: var(--transition);
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-sidebar__btn:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow:
        0 0 25px rgba(139, 92, 246, 0.9),
        0 0 50px rgba(34, 211, 238, 0.6);
}

/* ========================================
   Menu Section Header - Neon Title
   ======================================== */
.menu {
    margin-bottom: 60px;
}

.menu__header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.menu__header__title {
    display: inline-block;
    font-size: 2.4rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu__header__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue));
    box-shadow: 0 0 15px var(--neon-purple);
    border-radius: var(--border-radius-pill);
}

/* Menu Header - Flexbox Layout */
.menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.menu__header__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--neon-blue);
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: var(--border-radius-pill);
    border: 1px solid rgba(34, 211, 238, 0.3);
}

.menu__header__link:hover {
    background: rgba(34, 211, 238, 0.1);
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
    border-color: var(--neon-blue);
}

.menu__header__link i {
    transition: transform 0.3s ease;
}

.menu__header__link:hover i {
    transform: translateX(5px);
}

/* Fix conflict with drawer-action-btn */
.menu__header__link.drawer-action-btn {
    width: auto;
    height: auto;
    border-radius: var(--border-radius-pill);
    background: transparent;
    border: 1px solid rgba(34, 211, 238, 0.3);
}

.menu__header__link.drawer-action-btn:hover {
    background: rgba(34, 211, 238, 0.1);
    border-color: var(--neon-blue);
    transform: none;
    /* Reset distinct transform if needed, or keep generic one */
    box-shadow: none;
    /* Reset drawer btn shadow if needed */
    text-shadow: 0 0 10px var(--neon-blue);
}

/* ========================================
   Transaction List - Compact Neon Cards
   (1.5x larger than Buy Guide section)
   ======================================== */
.transaction__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    background: linear-gradient(135deg,
            rgba(15, 23, 42, 0.95),
            rgba(30, 41, 59, 0.9));
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px 18px 20px 18px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: var(--card-shadow);
}

.transaction__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px 14px;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(139, 92, 246, 0.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.transaction__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.25s ease;
}

.transaction__item:hover {
    transform: translateY(-4px);
    border-color: var(--neon-blue);
    box-shadow:
        0 0 0 1px var(--neon-blue),
        0 0 20px rgba(34, 211, 238, 0.3),
        0 12px 30px rgba(0, 0, 0, 0.3);
}

.transaction__item:hover::before {
    opacity: 1;
}

.transaction__item:hover .text__transaction__item {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.transaction__icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    transition: all 0.25s ease;
    overflow: hidden;
}

.transaction__item:hover .transaction__icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.transaction__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 4px rgba(139, 92, 246, 0.4));
}

.text__transaction__item {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-main);
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ========================================
   Category List - MOVED TO category-card.css
   ======================================== */
/* NOTE: All .category__* styles are now in components/category-card.css */

/* ========================================
   Category Price
   ======================================== */
.category__price {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin: 0 15px 10px;
}

.category__price strong {
    color: var(--neon-yellow);
    font-size: 1.5rem;
    text-shadow: 0 0 8px rgba(250, 204, 21, 0.5);
}

/* ========================================
   Service Variant - Blue theme
   ======================================== */
.category__item--service .category__action {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa) !important;
}

.category__item--service .category__sold {
    color: #a78bfa;
}

/* ========================================
   Random Variant - Purple/Pink theme
   ======================================== */
.category__item--random .category__action {
    background: linear-gradient(135deg, #a855f7, #ec4899) !important;
}

.category__item--random .category__sold {
    color: #c084fc;
}

/* ========================================
   Lucky Variant - Gold theme
   ======================================== */
.category__item--lucky .category__action {
    background: linear-gradient(135deg, #eab308, #f97316) !important;
    color: #111 !important;
}

.category__item--lucky .category__sold {
    color: #fbbf24;
}

/* ========================================
   Badge Variants
   ======================================== */
.badge--success {
    background: linear-gradient(135deg, var(--neon-green), #059669) !important;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.badge--warning {
    background: linear-gradient(135deg, var(--neon-yellow), var(--neon-orange)) !important;
    color: #000 !important;
    box-shadow: 0 0 10px rgba(250, 204, 21, 0.4);
}

.badge--danger {
    background: linear-gradient(135deg, #ff4757, #ff6b6b) !important;
    box-shadow: 0 0 10px rgba(255, 71, 87, 0.4);
}

/* ========================================
   Recent Transactions - Marquee
   ======================================== */
.recent-transactions {
    background: var(--bg-gradient-card);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 18px 20px;
    border: 1px solid rgba(139, 92, 246, 0.25);
    box-shadow: var(--card-shadow);
    margin-bottom: 50px;
}

.recent-transactions__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.recent-transactions__title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.recent-transactions__title i {
    color: var(--neon-green);
    filter: drop-shadow(0 0 5px var(--neon-green));
}

.recent-transactions__marquee {
    overflow: hidden;
    position: relative;
    height: 30px;
}

.recent-transactions__list {
    display: flex;
    align-items: center;
    position: absolute;
    animation: marquee 40s linear infinite;
    white-space: nowrap;
    width: max-content;
    /* Ensure container spans full content width */
}

.recent-transactions__item {
    display: inline-flex;
    /* Use inline-flex for better behavior in marquee */
    align-items: center;
    gap: 8px;
    padding: 0;
    margin-right: 60px;
    /* Explicit spacing between items */
    font-size: 1.4rem;
    flex-shrink: 0;
    /* Prevent shrinking */
}

.recent-transactions__username {
    font-weight: 600;
    color: var(--neon-blue);
    text-shadow: 0 0 8px rgba(34, 211, 238, 0.5);
}

.recent-transactions__time {
    color: var(--text-muted);
    font-size: 1.3rem;
}

.recent-transactions__amount {
    font-weight: 700;
    color: var(--neon-yellow);
    text-shadow: 0 0 8px rgba(250, 204, 21, 0.5);
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ========================================
   Welcome Modal - Cyberpunk Style
   ======================================== */
.welcome-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.4s ease-out;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

.welcome-modal {
    width: 100%;
    max-width: 550px;
    max-height: calc(100vh - 40px);
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 2px solid rgba(139, 92, 246, 0.4);
    box-shadow:
        0 0 0 1px rgba(139, 92, 246, 0.2),
        0 0 50px rgba(139, 92, 246, 0.4),
        0 30px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    animation: modalSlideIn 0.5s ease-out;
    display: flex;
    flex-direction: column;
    margin: auto;
}

/* Neon Top Border */
.welcome-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue), var(--neon-pink));
    box-shadow: 0 0 20px var(--neon-purple);
}

.welcome-modal__header {
    position: relative;
    padding: 25px 30px;
    text-align: center;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.welcome-modal__title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.welcome-modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2.6rem;
    color: var(--text-muted);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.welcome-modal__close:hover {
    background: rgba(139, 92, 246, 0.2);
    color: var(--neon-pink);
    transform: rotate(90deg);
}

.welcome-modal__body {
    padding: 22px 25px;
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-main);
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    max-height: calc(100vh - 200px);
}

.welcome-modal__body p {
    margin-bottom: 15px;
}

.welcome-modal__body p:first-child {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--neon-blue);
}

.welcome-modal__icon {
    display: block;
    width: 120px;
    max-width: 35%;
    height: auto;
    max-height: 120px;
    margin: 0 auto 20px;
    object-fit: contain;
}

/* Notification inside modal */
.welcome-modal__notification {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--border-radius-md);
    margin: 15px 0;
    color: var(--neon-green);
    font-size: 1.35rem;
    font-weight: 500;
}

.welcome-modal__notification i {
    font-size: 1.4rem;
    color: var(--neon-green);
    flex-shrink: 0;
}

.welcome-modal__notification span {
    color: var(--text-primary);
}

.welcome-modal__feature-list {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--border-radius-md);
    padding: 18px;
    margin: 18px 0;
    max-height: 400px;
    overflow-y: auto;
}

.welcome-modal__feature-list::-webkit-scrollbar {
    width: 6px;
}

.welcome-modal__feature-list::-webkit-scrollbar-track {
    background: rgba(139, 92, 246, 0.05);
    border-radius: 3px;
}

.welcome-modal__feature-list::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.3);
    border-radius: 3px;
}

.welcome-modal__feature-list::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.5);
}

.welcome-modal__feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(139, 92, 246, 0.2);
}

.welcome-modal__feature-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.welcome-modal__feature-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    box-shadow: var(--glow-purple);
}

.welcome-modal__feature-text {
    flex: 1;
    font-weight: 500;
    color: var(--text-main);
}

.welcome-modal__footer {
    padding: 20px 30px;
    background: rgba(11, 15, 26, 0.5);
    text-align: center;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.welcome-modal__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue));
    color: white;
    font-weight: 700;
    font-size: 1.6rem;
    text-transform: uppercase;
    border: none;
    border-radius: var(--border-radius-pill);
    cursor: pointer;
    transition: all 0.3s;
    box-shadow:
        0 0 15px rgba(139, 92, 246, 0.6),
        0 0 30px rgba(34, 211, 238, 0.4);
    letter-spacing: 1px;
}

.welcome-modal__btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 25px rgba(139, 92, 246, 0.9),
        0 0 50px rgba(34, 211, 238, 0.6);
}

.welcome-modal__btn i {
    margin-right: 10px;
    font-size: 1.8rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.95);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* ========================================
   Media Queries
   ======================================== */
@media screen and (max-width: 992px) {
    .hero-wrapper {
        flex-direction: column;
    }

    .hero-sidebar {
        width: 100%;
    }

    .hero-banner {
        height: 300px;
    }

    .transaction__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .transaction__list {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .menu__header__title {
        font-size: 2rem;
    }

    .badge {
        font-size: 1.1rem;
        padding: 4px 10px;
    }

    .hero-banner {
        height: 220px;
    }

    .hero-sidebar__btn {
        padding: 12px 20px;
        font-size: 1.4rem;
    }

    .welcome-modal-overlay {
        padding: 15px;
    }

    .welcome-modal {
        width: 100%;
        max-width: 100%;
        max-height: calc(100vh - 30px);
    }

    .welcome-modal__header {
        padding: 18px 20px;
    }

    .welcome-modal__title {
        font-size: 1.8rem;
    }

    .welcome-modal__body {
        padding: 18px 20px;
        font-size: 1.4rem;
        max-height: calc(100vh - 180px);
    }

    .welcome-modal__icon {
        width: 100px;
        max-width: 40%;
        max-height: 100px;
    }

    .welcome-modal__notification {
        font-size: 1.25rem;
        padding: 10px 12px;
    }

    .welcome-modal__feature-list {
        padding: 15px;
        margin: 15px 0;
        max-height: 300px;
    }

    .welcome-modal__feature-icon {
        width: 38px;
        height: 38px;
        font-size: 1.4rem;
        margin-right: 12px;
    }

    .welcome-modal__feature-text {
        font-size: 1.3rem;
    }

    .welcome-modal__footer {
        padding: 15px 20px;
    }

    .welcome-modal__btn {
        width: 100%;
        font-size: 1.4rem;
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .welcome-modal-overlay {
        padding: 10px;
    }

    .welcome-modal {
        max-height: calc(100vh - 20px);
    }

    .welcome-modal__header {
        padding: 15px 18px;
    }

    .welcome-modal__title {
        font-size: 1.6rem;
    }

    .welcome-modal__body {
        padding: 15px 18px;
        font-size: 1.3rem;
        max-height: calc(100vh - 160px);
    }

    .welcome-modal__icon {
        width: 80px;
        max-width: 45%;
        max-height: 80px;
        margin-bottom: 15px;
    }

    .welcome-modal__notification {
        font-size: 1.15rem;
        padding: 8px 10px;
        margin: 12px 0;
    }

    .welcome-modal__feature-list {
        padding: 12px;
        margin: 12px 0;
        max-height: 250px;
    }

    .welcome-modal__feature-item {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .welcome-modal__feature-icon {
        width: 34px;
        height: 34px;
        font-size: 1.2rem;
        margin-right: 10px;
    }

    .welcome-modal__feature-text {
        font-size: 1.2rem;
    }

    .welcome-modal__footer {
        padding: 12px 18px;
    }

    .welcome-modal__btn {
        font-size: 1.3rem;
        padding: 10px 20px;
    }
}

/* ========================================
   Hot Services Section - Dịch Vụ Hot (123nick style)
   ======================================== */
.hot-services-section {
    margin: 30px 0;
    padding: 0;
    position: relative;
    background: transparent;
    overflow: visible;
}

/* Hot Services Header */
.hot-services__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.hot-services__title-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hot-services__icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    animation: gift-bounce 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.hot-services__icon-box:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 25px rgba(249, 115, 22, 0.6);
}

@keyframes gift-bounce {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    25% {
        transform: translateY(-5px) scale(1.05);
    }

    50% {
        transform: translateY(0) scale(1);
    }

    75% {
        transform: translateY(-3px) scale(1.02);
    }
}

.hot-services__icon-box i {
    font-size: 1.5rem;
    color: white;
    animation: gift-shake 3s ease-in-out infinite;
}

@keyframes gift-shake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30% {
        transform: rotate(-10deg);
    }

    20%,
    40% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(0deg);
    }
}

.hot-services__title-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hot-services__title {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg, #facc15, #f87171, #facc15);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: text-shimmer 3s linear infinite;
}

.hot-services__fire {
    font-size: 1.5rem;
}

.hot-services__subtitle {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

.hot-services__subtitle i {
    color: #fbbf24;
    font-size: 0.8rem;
}

/* Nav buttons for hot services slider */
.hot-services__nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hot-services__nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(239, 68, 68, 0.5);
    background: linear-gradient(135deg,
            rgba(239, 68, 68, 0.2),
            rgba(239, 68, 68, 0.1));
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hot-services__nav-btn:hover {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-color: #ef4444;
    color: white;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
    transform: scale(1.1);
}

/* Hot Services Slider */
.hot-services__slider {
    overflow: hidden;
    position: relative;
}

.hot-services__track {
    display: flex;
    gap: 15px;
    transition: transform 0.4s ease;
}

/* Hot Service Card - 123nick.com Style */
.hot-service-card {
    flex: 0 0 calc(20% - 12px);
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 16px 16px;
    background: linear-gradient(145deg,
            rgba(30, 41, 59, 0.98),
            rgba(20, 30, 48, 0.95));
    border-radius: 12px;
    border: 1px solid rgba(100, 116, 139, 0.2);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    min-height: 160px;
}

.hot-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.03),
            transparent);
    transition: left 0.5s ease;
}

.hot-service-card:hover::before {
    left: 100%;
}

.hot-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Service Card Badges - Top Right */
.hot-service-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
    z-index: 2;
}

.hot-service-card__badge--discount {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.hot-service-card__badge--free {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.hot-service-card__badge--online {
    background: linear-gradient(135deg, #22d3ee, #06b6d4);
    color: white;
}

.hot-service-card__badge--giveaway {
    background: linear-gradient(135deg, #f472b6, #ec4899);
    color: white;
}

/* Service Card Icon - Top Left, Smaller */
.hot-service-card__icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.hot-service-card:hover .hot-service-card__icon {
    transform: scale(1.05);
}

.hot-service-card__icon--gold {
    background: linear-gradient(145deg, #fbbf24, #f59e0b);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.hot-service-card__icon--purple {
    background: linear-gradient(145deg, #8b5cf6, #7c3aed);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.hot-service-card__icon--green {
    background: linear-gradient(145deg, #10b981, #059669);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.hot-service-card__icon--pink {
    background: linear-gradient(145deg, #f472b6, #ec4899);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.hot-service-card__icon--blue {
    background: linear-gradient(145deg, #3b82f6, #2563eb);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.hot-service-card__icon--orange {
    background: linear-gradient(145deg, #f97316, #ea580c);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.hot-service-card__icon--cyan {
    background: linear-gradient(145deg, #22d3ee, #06b6d4);
    box-shadow: 0 4px 15px rgba(34, 211, 238, 0.3);
}

.hot-service-card__badge--hot {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

/* Service Card Title - Left Aligned */
.hot-service-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: left;
    margin: 0;
    line-height: 1.3;
    flex-grow: 1;
}

/* Service Card Action - Bottom Left with Arrow */
.hot-service-card__action {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.hot-service-card:hover .hot-service-card__action {
    color: #f97316;
}

.hot-service-card__action i {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    background: rgba(249, 115, 22, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #f97316;
    transition: all 0.3s ease;
}

.hot-service-card:hover .hot-service-card__action i {
    background: #f97316;
    color: white;
    transform: translateX(2px);
}

/* Service Card Footer */
.hot-service-card__footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-top: auto;
}

/* Service Card Rating Star - Bottom Left */
.hot-service-card__rating {
    position: absolute;
    bottom: 12px;
    left: 16px;
    color: #fbbf24;
    font-size: 0.9rem;
    opacity: 0.7;
}

.hot-service-card:hover .hot-service-card__rating {
    opacity: 1;
}

/* Responsive Hot Services */
@media (max-width: 1200px) {
    .hot-service-card {
        flex: 0 0 calc(25% - 12px);
    }
}

@media (max-width: 992px) {
    .hot-service-card {
        flex: 0 0 calc(33.333% - 10px);
    }

    .hot-services__title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .hot-services__header {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .hot-services__title-wrapper {
        flex: 1;
    }

    .hot-services__subtitle {
        font-size: 0.85rem;
    }

    /* Horizontal scroll slider on mobile - swipe to navigate */
    .hot-services__slider {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE/Edge */
    }

    .hot-services__slider::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .hot-services__track {
        display: flex;
        gap: 10px;
        padding-bottom: 5px;
    }

    .hot-service-card {
        flex: 0 0 45%;
        min-width: 150px;
        scroll-snap-align: start;
        padding: 15px 12px;
    }

    .hot-service-card__icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .hot-service-card__title {
        font-size: 0.95rem;
    }

    .hot-service-card__action {
        font-size: 0.8rem;
    }

    /* Hide nav buttons on mobile - use swipe instead */
    .hot-services__nav-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .hot-services__icon-box {
        width: 40px;
        height: 40px;
    }

    .hot-services__icon-box i {
        font-size: 1.1rem;
    }

    .hot-services__title {
        font-size: 1.2rem;
    }

    .hot-service-card {
        flex: 0 0 48%;
        min-width: 140px;
        padding: 12px 10px;
        gap: 8px;
    }

    .hot-service-card__icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hot-service-card__badge {
        font-size: 0.7rem;
        padding: 2px 6px;
    }

    .hot-service-card__title {
        font-size: 0.85rem;
    }
}

/* ========================================
   Slider Dots Indicator - Mobile Only
   ======================================== */
.slider-dots {
    display: none;
    /* Hidden by default on desktop */
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 15px 0 5px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.slider-dot.active {
    width: 24px;
    border-radius: 4px;
    background: linear-gradient(90deg, #f97316, #ef4444);
}

/* Show slider dots on mobile */
@media (max-width: 768px) {
    .slider-dots {
        display: flex;
    }
}

/* Section Divider after Hot Services */
.hot-services-section+.trust-section {
    position: relative;
}

.hot-services-section+.trust-section::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
}

/* ========================================
   Customer Reviews Section - Khách Hàng Nói Gì
   ======================================== */
.customer-reviews-section {
    margin: 30px 0;
    padding: 0;
    position: relative;
    background: transparent;
    overflow: visible;
}

/* Nav buttons for slider */
.customer-reviews__nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.customer-reviews__nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-reviews__nav-btn:hover {
    background: #ef4444;
    border-color: #ef4444;
}

.customer-reviews__slider {
    overflow: hidden;
    padding: 0;
}

.customer-reviews__track {
    display: flex;
    gap: 15px;
    transition: transform 0.4s ease;
}

/* Review Card */
.review-card {
    flex: 0 0 calc(25% - 12px);
    min-width: 240px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
    background: linear-gradient(145deg,
            rgba(30, 41, 59, 0.98),
            rgba(20, 30, 48, 0.95));
    border-radius: 12px;
    border: 1px solid rgba(100, 116, 139, 0.2);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    border-color: rgba(139, 92, 246, 0.4);
}

.review-card__header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.review-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #facc15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.review-card__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-card__name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
}

.review-card__date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-card__stars {
    display: flex;
    gap: 2px;
    margin-left: auto;
}

.review-card__stars i {
    color: #facc15;
    font-size: 0.9rem;
}

.review-card__content {
    flex: 1;
}

.review-card__comment {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-card__footer {
    padding-top: 10px;
    border-top: 1px solid rgba(100, 116, 139, 0.2);
}

.review-card__type {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: #a78bfa;
}

.review-card__type i {
    font-size: 0.8rem;
}

/* Trust Badge */
.customer-reviews__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 30px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    color: #10b981;
    font-weight: 600;
    font-size: 0.95rem;
}

.customer-reviews__trust i {
    font-size: 1rem;
}

/* Responsive - Customer Reviews */
@media (max-width: 1200px) {
    .review-card {
        flex: 0 0 calc(33.333% - 10px);
    }
}

@media (max-width: 992px) {
    .review-card {
        flex: 0 0 calc(50% - 8px);
    }
}

@media (max-width: 768px) {

    /* Horizontal scroll slider on mobile - swipe to navigate */
    .customer-reviews__slider {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .customer-reviews__slider::-webkit-scrollbar {
        display: none;
    }

    .customer-reviews__track {
        display: flex;
        gap: 10px;
        padding-bottom: 5px;
    }

    .review-card {
        flex: 0 0 45%;
        min-width: 180px;
        scroll-snap-align: start;
        padding: 12px;
    }

    .review-card__avatar {
        width: 35px;
        height: 35px;
    }

    .review-card__name {
        font-size: 0.9rem;
    }

    .review-card__date {
        font-size: 0.75rem;
    }

    .review-card__stars i {
        font-size: 0.8rem;
    }

    .review-card__comment {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    /* Hide nav buttons on mobile - use swipe instead */
    .customer-reviews__nav-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .review-card {
        flex: 0 0 75%;
        min-width: 200px;
        padding: 10px;
        gap: 8px;
    }

    .review-card__header {
        gap: 8px;
    }

    .review-card__avatar {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .review-card__name {
        font-size: 0.85rem;
    }

    .review-card__comment {
        font-size: 0.8rem;
    }

    .review-card__type {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
}

/* ========================================
   Lightning Border Effect
   ======================================== */
.lightning-frame {
    /* Basic border */
    border: 1px solid rgba(255, 255, 255, .10) !important;
    box-shadow:
        0 18px 40px rgba(0, 0, 0, .40),
        inset 0 0 0 1px rgba(255, 255, 255, .06) !important;
    position: relative;
    border-radius: 16px;
    /* Ensure existing styles don't conflict */
    background: transparent;
}

/* Lightning spinning layer */
.lightning-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: conic-gradient(from 0deg,
            transparent 0 12%,
            rgba(140, 220, 255, .0) 12% 18%,
            rgba(140, 220, 255, .95) 18% 20%,
            rgba(255, 255, 255, .95) 20% 21%,
            rgba(120, 100, 255, .95) 21% 23%,
            rgba(140, 220, 255, .0) 23% 30%,
            transparent 30% 100%);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    filter: drop-shadow(0 0 14px rgba(140, 220, 255, .55));
    opacity: .95;
    animation: lightning-rotate 2.2s linear infinite;
    pointer-events: none;
    z-index: 10;
}

/* Soft glow layer */
.lightning-frame__glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow:
        0 0 0 1px rgba(140, 220, 255, .10) inset,
        0 0 28px rgba(140, 220, 255, .12);
    animation: lightning-pulse 1.6s ease-in-out infinite;
    z-index: 10;
}

@keyframes lightning-rotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes lightning-pulse {

    0%,
    100% {
        opacity: .35;
    }

    50% {
        opacity: .75;
    }
}

/* Hover effect */
.lightning-frame:hover::before {
    filter: drop-shadow(0 0 18px rgba(140, 220, 255, .80));
    opacity: 1;
    animation-duration: 1.6s;
}

/* Override Hero Banner for Lightning Frame */
.hero-banner.lightning-frame {
    border: none !important;
    overflow: visible !important;
    /* Allow lightning to show outside */
}

.hero-banner.lightning-frame .banner-link {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.hero-banner.lightning-frame .hero-banner__img {
    border-radius: 16px;
}

/* Override Hero Sidebar for Lightning Frame */
.hero-sidebar.lightning-frame {
    border: none !important;
    overflow: visible !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04)) !important;
    backdrop-filter: blur(8px);
}

.hero-sidebar.lightning-frame .hero-sidebar__header {
    background: rgba(0, 0, 0, .22) !important;
    border-bottom: 1px solid rgba(255, 255, 255, .10) !important;
}

.hero-sidebar.lightning-frame .hero-sidebar__item {
    background: rgba(0, 0, 0, .22) !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    border-radius: 12px;
    margin-bottom: 10px;
}