#beryl_20251216 {
    position: relative;
    width: 100%;
    overflow: hidden;
    user-select: none;
}

.faradayViewport_20251216 {
    overflow: hidden;
}

.faradayTrack_20251216 {
    display: flex;
    transition: transform 0.5s ease;
    cursor: grab;
}

.faradayTrack_20251216:active {
    cursor: grabbing;
}

.faradayItem_20251216 {
    flex: 0 0 100%;
    max-height: 318px;
    display: block;
}

.faradayItem_20251216 img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 767px) {
    .faradayItem_20251216 {
        flex: 0 0 100%;
        height: 218px;
        display: block;
    }

    .faradayItem_20251216 img {
        width: 100%;
        height: 218px;
        display: block;
        object-fit: cover;
    }
}


.faradayArrow_20251216 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    color: #fff !important;
    border: none;
    width: 40px !important;
    height: 40px;
    font-size: 18px !important;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.faradayArrow_20251216.prev {
    left: 16px;
}

.faradayArrow_20251216.next {
    right: 16px;
}

.faradayDots_20251216 {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.faradayDots_20251216 span {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.faradayDots_20251216 span.active {
    background: #fff;
}


@media (min-width: 1024px) {
    #beryl_20251216 {
        max-width: 1400px;
        margin: auto;
    }
}


.promo-carousel-section {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 20px;
    color: white;
    margin: 20px 0;
    width: 100%;
    max-width: 940px;
    box-sizing: border-box;
    position: relative;

}

@media (max-width: 767px) {
    .promo-carousel-section {
        width: 100%;
        max-width: 335px;
    }
}


.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.header-text h3 {
    font-size: 16px;
    color: #ff9800;
    margin: 0;
}

.header-text p {
    font-size: 12px;
    color: #ccc;
    margin: 0;
}


.slider-outer-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}


.slider-viewport {
    overflow: hidden;
    width: 100%;
    scroll-behavior: smooth;
    padding: 5px 0;

}

.slider-track {
    display: flex;
    gap: 15px;
    width: max-content;
}


.game-slide {
    flex: 0 0 260px;
    width: 260px;
}

.img-wrap {
    position: relative;
    width: 260px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    background: #333;
}

.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);

    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;

    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    outline: none;
}

.nav-arrow:hover {
    background: #ff6041;
    border-color: white;
}

.prev {
    left: -15px;
}


.next {
    right: -15px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.game-name-link {
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: block;
    max-width: 140px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dl-btn {
    background: #ff6041;
    color: white;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 11px;
}


@media (max-width: 768px) {
    .nav-arrow {
        display: none !important;
    }


    .slider-viewport {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .game-slide {
        flex: 0 0 240px;
        width: 240px;
    }

    .img-wrap {
        width: 240px;
        height: 135px;
    }

    .slider-viewport::-webkit-scrollbar {
        display: none;
    }
}


.trending-list-section {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 20px;
    color: white;
    max-width: 940px;

    margin: 20px auto;
    box-sizing: border-box;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fire-icon {
    font-size: 24px;
}

.header-info h3 {
    margin: 0;
    font-size: 18px;
    color: #fff;
}

.header-info p {
    margin: 0;
    font-size: 12px;
    color: #888;
}

.view-all {
    color: #ff6041;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
}

.list-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trending-item {
    display: flex;
    align-items: center;
    background: #252525;
    padding: 12px;
    border-radius: 16px;
    transition: transform 0.2s;
}

.trending-item:hover {
    background: #2d2d2d;
    transform: translateX(5px);
}


.rank-number {
    font-size: 18px;
    font-weight: 800;
    color: #555;
    width: 30px;
    text-align: center;
    font-style: italic;
}

.rank-number.top-rank {
    color: #ff9800;

}


.item-img-link {
    width: 70px;
    height: 70px;
    margin-left: 10px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.item-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-detail {
    flex-grow: 1;
    padding: 0 15px;
}

.item-title {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
    transition: color 0.2s;
}

.item-title:hover {
    color: #ff6041;
}

.item-meta {
    font-size: 12px;
    color: #888;
    display: flex;
    gap: 8px;
}

.play-btn {
    background: #ff6041;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: scale 0.2s;
}

.play-btn:hover {
    scale: 1.1;
    background: #ff7c63;
}


@media (max-width: 600px) {
    .item-img-link {
        width: 70px;
        height: 70px;
    }

    .item-title {
        font-size: 14px;
    }

    .rank-number {
        width: 20px;
        font-size: 16px;
    }
}


.game-section-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding: 20px 15px;
    background-color: #fff;
    max-width: 940px;
    margin: 0 auto;
    overflow: hidden;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-icon {
    font-size: 20px;
}

.header-title {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
}

.header-title a {
    color: #333;
    text-decoration: none;
}

.header-more {
    color: #ff6041;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}


.game-slider-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    display: block;
    width: 100%;
    cursor: grab;

    padding-bottom: 10px;

    -webkit-overflow-scrolling: touch;
}

.game-slider-viewport:active {
    cursor: grabbing;
}


.game-slider-viewport::-webkit-scrollbar {
    height: 6px;
}

.game-slider-viewport::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.game-slider-viewport::-webkit-scrollbar-thumb {
    background: #ff6041;
    border-radius: 10px;
}

.game-card-group {
    display: flex;
    gap: 16px;
    width: max-content;
}


.game-card {
    width: 260px;
    flex-shrink: 0;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
    background: #eee;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.game-card:hover .image-wrapper img {
    transform: scale(1.05);
}

.badge-lightning {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.card-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.info-left {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}

.game-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
}

.text-meta {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.game-name {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-rating {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

.btn-download {
    background: #ff6041;
    color: #fff;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    flex-shrink: 0;
}


@media (max-width: 768px) {
    .game-section-container {
        max-width: 100%;
    }

    .game-card {
        width: 220px;
    }

    .image-wrapper {
        height: 130px;
    }

    .game-slider-viewport {
        scrollbar-width: none;

        padding-bottom: 0;
    }

    .game-slider-viewport::-webkit-scrollbar {
        display: none;

    }
}

@media (max-width: 767px) {
    .game-section-container {
        max-width: 335px;
    }
}


.community-section-wrapper {
    width: 100%;
    margin: 20px auto;
    box-sizing: border-box;
}

.community-container {
    max-width: 920px;

    margin: 0 auto;
    background: linear-gradient(135deg, #ff8c52 0%, #ff6041 100%);

    border-radius: 20px;
    padding: 15px 20px;
    color: white;
    position: relative;
    box-sizing: border-box;
}


.community-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: bold;
}


.community-slider-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}


.community-slider-viewport::-webkit-scrollbar {
    height: 4px;
}

.community-slider-viewport::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
}

.community-item-group {
    display: flex;
    gap: 20px;
    width: max-content;
    padding-bottom: 5px;
}


.community-item {
    width: 140px;

    flex-shrink: 0;
}

.app-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.icon-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.app-name {
    font-size: 13px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-rating {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2px;
}


@media (max-width: 768px) {
    .community-container {
        max-width: 325px;

        padding: 12px 5px;
    }

    .community-slider-viewport {
        scrollbar-width: none;
    }

    .community-slider-viewport::-webkit-scrollbar {
        display: none;
    }

    .community-item {
        width: 125px;

    }

    .icon-box {
        width: 56px;
        height: 56px;
    }
}


.hero-section-wrapper {
    width: 100%;
    margin: 20px auto;
    padding: 0 10px;
    box-sizing: border-box;
}

.hero-container {
    max-width: 940px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.view-all {
    color: #ff6041;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
}

.hero-slider-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    scrollbar-width: none;
}

.hero-slider-viewport::-webkit-scrollbar {
    display: none;
}

.hero-card-group {
    display: flex;
    gap: 15px;
    width: max-content;
}

.hero-card {
    width: 920px;
    flex-shrink: 0;
}

.hero-link {
    text-decoration: none;
    display: block;
}

.hero-image-box {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    background: #222;
}

.hero-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.hero-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-game-icon {
    width: 54px !important;
    height: 54px !important;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-game-name {
    color: white;
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.hero-game-desc {
    color: rgba(255, 255, 255, 0.8);
    margin: 4px 0 0;
    font-size: 13px;
}

.hero-action {
    text-align: right;
}

.hero-rating {
    color: #ffcc00;
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.hero-btn {
    background: #ff6041;
    color: white;
    padding: 8px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .hero-container {
        max-width: 335px;
    }

    .hero-card {
        width: 300px;
    }

    .hero-image-box {
        height: 180px;
    }

    .hero-game-name {
        font-size: 15px;
    }

    .hero-game-desc {
        font-size: 11px;
    }

    .hero-game-icon {
        width: 40px !important;
        height: 40px !important;
    }
}

.promo-carousel-section {
    margin: 20px auto;
    background-color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}