:root {
    --bg0: #08120d;
    --bg1: #0d1a14;
    --panel: #13261d;
    --panel2: #193126;

    --text: #eafff4;
    --muted: rgba(234, 255, 244, .78);

    --line: rgba(255, 255, 255, .10);
    --line2: rgba(255, 255, 255, .16);

    --glass: rgba(255, 255, 255, .06);
    --glass2: rgba(255, 255, 255, .10);

    --accent: #4cff9a;
    --accent2: #1fd18a;

    --good: #4cff9a;

    --deep-blue: #1fd18a;
    --deep-cyan-glow: 0 0 0 1px rgba(79, 255, 154, .22), 0 18px 45px rgba(31, 209, 138, .18);

    --shadow1: 0 12px 28px rgba(0, 0, 0, .35);
    --shadow2: 0 18px 55px rgba(0, 0, 0, .55);

    --glow-cyan: 0 0 0 1px rgba(79, 255, 154, .22), 0 18px 45px rgba(31, 209, 138, .18);
    --glow-gold: 0 0 0 1px rgba(79, 255, 154, .22), 0 18px 45px rgba(31, 209, 138, .18);

    --r12: 12px;
    --r14: 14px;
    --r16: 16px;
}

body {
    font-family: Quicksand, sans-serif;
    color: var(--text);
    background: radial-gradient(900px 520px at 12% -10%, rgba(79, 255, 154, .22), transparent 60%),
    radial-gradient(900px 520px at 95% 0%, rgba(31, 209, 138, .22), transparent 55%),
    radial-gradient(1000px 700px at 75% 110%, rgba(24, 180, 120, .18), transparent 55%),
    linear-gradient(180deg, #08120d, #0d1a14);
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(79, 255, 154, .65) rgba(8, 18, 13, .55);
    box-sizing: border-box;
}

.navbar-nav .nav-link:hover {
    background: linear-gradient(
            90deg,
            rgba(79, 255, 154, .28),
            rgba(31, 209, 138, .22)
    );
    color: var(--text) !important;
    transform: translateY(-1px);
    box-shadow: var(--glow-cyan);
    border-color: rgba(79, 255, 154, .28);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    height: 2px;
    bottom: 7px;
    left: 10px;
    right: 10px;
    background: linear-gradient(
            90deg,
            rgba(140, 255, 200, 1),
            rgba(31, 209, 138, 1)
    );
    opacity: 0;
    transform: scaleX(.85);
    transition: opacity .18s ease, transform .18s ease;
    border-radius: 999px;
}

.list-categories li.active a {
    background: linear-gradient(
            90deg,
            rgba(140, 255, 200, 1),
            rgba(31, 209, 138, 1)
    );
    color: #062014;
    border-color: rgba(79, 255, 154, .75);
    box-shadow: var(--glow-cyan);
}

nav.greedy button:focus-visible,
nav.greedy button:hover,
nav.greedy button:active {
    background: rgba(255, 255, 255, .10);
    border-color: rgba(79, 255, 154, .35) !important;
    box-shadow: 0 18px 40px rgba(31, 209, 138, .25);
    transform: translateY(-1px);
}

nav.greedy button::after {
    content: attr(count);
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
            180deg,
            rgba(140, 255, 200, 1),
            rgba(31, 209, 138, 1)
    );
    color: #062014;
    border-radius: 50%;
    font-size: 14px;
    line-height: 14px;
    margin-left: 1rem;
    box-shadow: 0 16px 30px rgba(31, 209, 138, .28);
}

h3.item-title:hover::before {
    transform: translateY(-55%) rotate(0deg) scale(1.08);
    filter: drop-shadow(0 0 12px rgba(140, 255, 200, .95)) drop-shadow(0 0 28px rgba(31, 209, 138, .65));
}

h3.item-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(
            90deg,
            rgba(160, 255, 210, 1),
            rgba(79, 255, 154, .95),
            rgba(31, 209, 138, .95)
    );
    box-shadow: 0 0 14px rgba(140, 255, 200, .75),
    0 0 30px rgba(31, 209, 138, .55);
}

.action-btn > div:hover {
    transform: translateY(-1px);
    border-color: rgba(79, 255, 154, .35);
    box-shadow: 0 18px 40px rgba(31, 209, 138, .22);
}

.ubg-chat-btn {
    background: linear-gradient(
            90deg,
            rgba(140, 255, 200, 1),
            rgba(31, 209, 138, 1)
    );
    color: #062014;
    padding: 9px 16px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    border: none;
    outline: none;
    transition: transform .14s ease, box-shadow .14s ease, filter .14s ease;
    box-shadow: 0 18px 45px rgba(31, 209, 138, .32);
}

.ubg-chat-btn:hover {
    filter: brightness(1.08);
    box-shadow: 0 22px 55px rgba(31, 209, 138, .45);
    transform: translateY(-1px);
}



a {
    text-decoration: none;
}

/* ---------- Header + Navbar ---------- */

header {
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow: var(--shadow1);
    backdrop-filter: blur(10px);
    padding: 0 1rem;
}

.search-container {
    display: flex;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    overflow: hidden;
    margin-left: 10px;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .22);
}

@media (min-width: 992px) {
    .search-container {
        width: 320px;
    }
}

.show .search-container {
    display: flex;
}

.search-input {
    border: none;
    padding: 9px 12px;
    flex: 1;
    color: var(--text);
    background: transparent;
    outline: none;
}

.search-input::placeholder {
    color: rgba(234, 240, 255, .55);
}

.search-button:hover {
    color: initial;
}

.navbar {
    font-weight: 700;
    padding: 0 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-item {
    position: relative;
    margin: 0 6px;
}

.navbar-nav .nav-link {
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
    position: relative;
    padding: 10px 12px;
    border-radius: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    color: rgba(234, 240, 255, .90);
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
}


.navbar-nav .nav-link:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.navbar-nav .nav-link span {
    margin-left: 6px;
}

@media (min-width: 992px) {
    #navcol-1 {
        justify-content: end;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        display: grid;
        grid-template-rows: 50px;
        margin-top: 12px;
        padding: 0 10px;
        gap: .5rem;
        transition: height .5s ease-in-out;
        height: 430px;
        overflow: hidden;
    }

    .navbar-nav {
        grid-row: 2;
        width: 100%;
        gap: .5rem;
    }

    .search-container,
    .navbar-nav .nav-link,
    .nav-item {
        margin: 0;
    }

    .search-container {
        display: none;
    }
}


.nav-categories {
    padding: 8px 0;
    white-space: nowrap;
    width: 100%;
    background: rgba(255, 255, 255, .04);
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 999;
    overflow: visible !important;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .22);
}

nav.greedy {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 700;
    overflow: visible !important;
}

ul.links {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.links.list-categories {
    list-style-type: none;
    padding: 0;
    margin-bottom: 0;
    overflow: visible !important;
}

.links.list-categories li {
    display: block;
}

.list-categories a {
    float: left;
    display: block;
    text-align: center;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .14);
    margin: 8px 14px 8px 0;
    color: rgba(234, 240, 255, .92);
    background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .04));
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .16);
}

.list-categories a:hover {
    transform: translateY(-1px);
    border-color: rgba(76, 185, 251, .26);
    box-shadow: var(--glow-cyan);
}


nav.greedy button {
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .14);
    margin: 0;
    color: rgba(234, 240, 255, .92);
    background: rgba(255, 255, 255, .06);
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}


/* dropdown */
ul.hidden-links {
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 1000;
    text-align: left;
    list-style: none;
    background: linear-gradient(180deg, rgba(20, 21, 42, .98), rgba(12, 13, 28, .98));
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 14px;
    padding-left: 0;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .50);
    overflow: visible !important;
}

ul.hidden-links a {
    color: rgba(234, 240, 255, .92);
}

ul.hidden-links li {
    padding: .9rem 1rem;
    min-width: 220px;
}

ul.hidden-links.hidden {
    display: none;
}

ul.hidden-links li:hover,
ul.hidden-links li.active {
    background-color: rgba(255, 255, 255, .06);
}

/* ---------- Section Titles ---------- */

/* ===== BEAUTIFIED SECTION TITLE + GAMING ICON ===== */

h3.item-title {
    position: relative;
    font-weight: 900;
    padding-bottom: 14px;
    padding-left: 44px;
    font-size: 1.35rem;
    margin: 26px 0 22px;
    text-transform: uppercase;
    letter-spacing: .08em;

    color: rgba(236, 242, 255, .98);
    border-bottom: none;
}

/* glowing gradient underline */
/* ===== ULTRA BEAUTIFIED GAMING SECTION TITLE ===== */

h3.item-title {
    position: relative;
    font-weight: 900;
    padding: 16px 0 18px 0;
    font-size: 1.38rem;
    margin: 15px 0 20px;
    text-transform: uppercase;
    letter-spacing: .09em;

    color: rgba(240, 245, 255, 1);

    /* depth */
    text-shadow: 0 2px 6px rgba(0, 0, 0, .55),
    0 0 18px rgba(76, 185, 251, .18);
}

/* icon micro motion */


/* MAIN GLOW UNDERLINE */


/* SOFT SHINE LINE ABOVE */
h3.item-title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 1px;
    background: linear-gradient(
            90deg,
            rgba(255, 255, 255, .35),
            transparent 70%
    );
}

/* SHINE SWEEP EFFECT */
h3.item-title::marker {
    display: none;
}

h3.item-title::selection {
    background: rgba(76, 185, 251, .25);
}

.item-title svg, .item-title i {
    /*margin-right: 9px;*/
}


.game-container .row,
.home-container .row {
    row-gap: 20px;
}

.item-grid,
.item-right {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

/* tile */
.list-game {
    margin-bottom: 0;
    border-radius: var(--r16);
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: var(--shadow1);
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
    padding: 9px;
    position: relative;
}

.list-game::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: var(--r16);
    pointer-events: none;
    opacity: .0;
    background: radial-gradient(420px 120px at 50% 0%, rgba(76, 185, 251, .20), transparent 60%);
    transition: opacity .16s ease;
}

.list-game:hover {
    transform: translateY(-3px);
    border-color: rgba(76, 185, 251, .22);
    box-shadow: var(--shadow2);
}

.list-game:hover::after {
    opacity: 1;
}

.list-thumbnail.square-thumb {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}

/* image */
.list-thumbnail.square-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px; /* smoother than 5px */
    transition: transform .16s ease, filter .16s ease;
    filter: saturate(1.05) contrast(1.05);
}

.list-game:hover .list-thumbnail.square-thumb img {
    transform: scale(1.05);
    filter: saturate(1.12) contrast(1.10);
}

/* ---------- Game Title Bar (keep behavior) ---------- */

.hover-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    transform: none !important;
    opacity: 1 !important;

    background: linear-gradient(180deg, rgba(10, 12, 22, .20), rgba(10, 12, 22, .88));
    backdrop-filter: blur(10px);

    padding: 10px 12px;
    text-align: left;
    font-weight: 800;
    border-top: 1px solid rgba(255, 255, 255, .10);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.hover-info span {
    display: block;
    font-size: 13px;
    line-height: 1.2;
    color: rgba(234, 240, 255, .92);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list-game:hover .hover-info {
    transform: none !important;
}

/* ---------- Sidebar Tile Size ---------- */

.sidebar .list-game {
    padding: 8px;
    border-radius: 14px;
}

.sidebar .list-thumbnail.square-thumb {
    border-radius: 14px;
}

.sidebar .hover-info {
    padding: 8px 10px;
}

.sidebar .hover-info span {
    font-size: 12px;
}

/* ---------- Article Typography ---------- */

article h1, article h2, article h3, article h4 {
    margin-top: 1.2em;
    margin-bottom: .6em;
    font-weight: 800;
    color: rgba(234, 240, 255, .95);
}

article h1 {
    font-size: 28px;
}

article h2 {
    font-size: 22px;
}

article h3 {
    font-size: 18px;
}

article h4 {
    font-size: 16px;
}

article p {
    font-size: 16px;
    margin: .5em 0;
    line-height: 1.65;
    color: rgba(234, 240, 255, .85);
}

article ul, article ol {
    margin: 1em 0;
    padding-left: 1.5em;
    color: rgba(234, 240, 255, .85);
}

article li {
    margin: .5em 0;
}

article a {
    color: var(--accent2);
    text-decoration: none;
}

article a:hover {
    text-decoration: underline;
}

/* ---------- Footer ---------- */

footer {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: #fff;
    box-shadow: 0 -18px 55px rgba(0, 0, 0, .45);
    backdrop-filter: blur(10px);
    text-align: center;
}

h4.widget-title a {
    font-weight: 800;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, .92);
    text-align: center;
    text-decoration: auto;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: rgba(255, 255, 255, .85);
    transition: color .18s ease;
}

footer ul li a:hover {
    color: var(--good);
}

footer i, footer svg {
    margin-right: 5px;
}

.pages a {
    color: var(--good);
}

/* ---------- Game Page (iframe fixed) ---------- */

.game-content {
    margin-bottom: 30px;
}

.game-player {
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
    border-radius: 16px;
    color: white;
    box-shadow: var(--shadow2);
    border: 1px solid rgba(255, 255, 255, .10);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.game-iframe-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--bg0);
}

.game-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: var(--bg0);
}

.single-info-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .03);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-left img {
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .30);
}

h1.single-title {
    margin: 0;
    font-weight: 800;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, .95);
}

/* like/dislike/bug buttons area */
.action-btn {
    display: flex;
    gap: 18px;
}

.action-btn > div {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}


.stats-vote i {
    font-size: 28px;
    padding: 6px;
    transition: color .16s ease, transform .16s ease;
}

.stats-vote i:hover {
    color: var(--good);
    transform: translateY(-1px);
}

.action-btn i, .action-btn img {
    color: white;
    font-size: 16px;
}

.info-the-game .rating {
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(149, 149, 209, .92);
}

.info-the-game .rating i {
    margin-right: 5px;
}

.star-on {
    color: #ffa73f;
    margin-right: 5px;
    margin-bottom: -3px;
    width: 16px;
    display: inline-block;
    font-size: 13.5px;
    position: relative;
    left: 1px;
    top: -1px;
}

.social-share {
    position: relative;
    top: -2px;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.sidebar {
    display: block;
}

.sidebar .widget {
    margin-bottom: 20px;
}

/* ---------- FIX GRID COUNT ---------- */

/* Desktop: 8 per row */
@media (min-width: 992px) {
    .game-container .row > .item-grid,
    .home-container .row > .item-grid {
        flex: 0 0 12.5% !important;
        max-width: 12.5% !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .game-container .row > .item-grid,
    .home-container .row > .item-grid {
        flex: 0 0 16.6667% !important;
        max-width: 16.6667% !important;
    }
}

/* Mobile: 3 per row */
@media (max-width: 767px) {
    .game-container .row > .item-grid,
    .home-container .row > .item-grid {
        flex: 0 0 33.3333% !important;
        max-width: 33.3333% !important;
    }
}

.singlepage-title {
    padding-bottom: 10px;
    font-weight: 800;
    font-size: 1.75rem;
    color: rgba(234, 240, 255, .95);
}

button.btn.hidden {
    display: none;
}

/* ---------- Chat Button ---------- */


.ubg-chat-btn:active {
    transform: scale(.97);
}

.ubg-chat-btn .chat-icon {
    font-size: 16px;
    position: relative;
}

.ubg-chat-btn .chat-icon::after {
    content: "";
    width: 8px;
    height: 8px;
    background: #ff2d55;
    border-radius: 50%;
    position: absolute;
    top: -2px;
    right: -2px;
    box-shadow: 0 0 0 3px rgba(255, 45, 85, .18);
}

/* ---------- Adsense Ignore ---------- */

.adsense-auto-ads-ignore {
    google-auto-ads: ignore;
}

/* Apply the dark background to the root element (HTML) */
html {
    background-color: var(--bg0);
    scroll-behavior: smooth;
}

.logo-img {
    max-width: 200px;
}

.copyright {
    margin: 1rem auto;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999999;
    opacity: 0;
    transition: .3s opacity;
}

.scroll-top.show {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    padding: 1rem;
    opacity: 1;
    border-radius: 12px;
    border: 2px solid #a29f9f;
}

.scroll-top i {

}

.nav-link i {
    /*width: 18px;*/
    height: 18px;
}

.all-games {
    display: flex;
    padding: 12px 30px;
    font-size: 18px;
    color: #fff;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin: 1.5rem auto;
    text-align: center;
    font-weight: bolder;
    width: fit-content;
}

.more-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 1.5rem 0;
    text-transform: uppercase;
}

.search-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 1.5rem 0;
}

.detail-desc {
    font-size: 16px;
    line-height: 1.5;
    color: #9a9a9a;
}

.detail-desc {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media screen and (min-width: 768px) {
    .detail-desc {
        -webkit-line-clamp: 3;
    }
}

.desc_btn {
    background: #07de4b;
    padding: 10px 10px;
    border-radius: 5px;
    width: fit-content;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-top: 1rem;
    line-height: 1;
}

.justify-center {
    display: flex;
    justify-content: center;
}

.game-guide {
    color: #7979ff;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: start;
    margin: 1rem 0;
    font-weight: bold;
    font-size: 14px;
}

.game-guide a,.game-guide p {
    color: #7979ff;
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

.game-info {
    width: 100%;
    position: relative;
    border-radius: 10px;
    display: flex;
    align-items:center;
    justify-content: center;
}
.game-bg {
    background: rgba(51, 51, 51, 0.4);
    width: 100%;
    filter: blur(8px);
}

.game-bg img {
    width: 100%;
    aspect-ratio: 5/3;
    border-radius: 10px 0 10px 0;
    filter: blur(6px);
}

.game-play {
    position: absolute;
    max-wdth: 95%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    justify-content: center;
    margin: auto;
    text-align: center;
    width: fit-content;
}

.game-play img {
    width: 100%;
    aspect-ratio: 1;
    border: 4px solid green;
    border-radius: 15px;
    max-width: 120px;
    margin: auto;
}

.game-title {
    font-family: "Times New Roman", serif;
    font-weight: bold;
    font-size: 24px;
    color: #fff;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.play-btn {
    background: green;
    border: none;
    outline: none;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    max-width: 150px;
    font-size: 22px;
    color: #fff;
    font-family: "Times New Roman", serif;
    font-weight: 1000;
    margin: auto;
}

.detail-info p, .detail-info li {
    font-size: 16px;
    color: #dedede;
    margin-bottom: 15px;
    line-height: 1.3;
}

.detail-info li {
    list-style: disc;
}

.detail-info ul {
    padding-left: 30px;
    list-style: disc;
}

.detail-info h1, .detail-info h2, .detail-info h3, .detail-info h4, .detail-info h5, .detail-info h6 {
    color: #dedede;
    margin: 10px 0;
    font-weight: bold;
    line-height: 1.3;
}

.detail-info h1 {
    font-size: 26px;
}

.detail-info h2 {
    font-size: 24px;
}

.detail-info h3 {
    font-size: 22px;
}

.detail-info h4 {
    font-size: 20px;
}

.detail-info h5, .detail-info h6 {
    font-size: 18px;
}

.detail-info a {
    color: #49fd3b;
}


@media screen and (max-width: 768px){
    .item-last:last-child {
        display: none;
    }

    /*.item-last-2:nth-last-child(-n+2) {*/
    /*    display: none;*/
    /*}*/

    .hover-info {
        padding: 10px 5px;
        font-weight: 700;
    }

    .gap-2 {
        gap: 2rem;
    }
}