::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #14161b;
}
::-webkit-scrollbar-thumb {
    background: #2d313c;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #fc2458;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hero-banner {
    background-position: 50% 50%;
}
@media (max-width: 1023px) {
    .hero-banner {
        background-position: 78% 30%;
    }
}

.sidebar-item {
    color: #d1d5db;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 8px;
    margin-bottom: 4px;
}
.sidebar-item:hover {
    background: rgba(255,255,255,0.05);
    color: white;
}
.sidebar-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sidebar-item i { width: 20px; text-align: center; font-size: 16px; color: #8a93a2; }

.cat-square {
    background: #1e2027;
    border-radius: 12px;
    width: 104px;
    height: 84px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    border: 1px solid transparent;
}
.cat-square:hover {
    background: #2a2e38;
}
.cat-square.active {
    border-color: #374151;
    background: #2a2e38;
}
.cat-square span {
    font-size: 11px;
    font-weight: 600;
    color: #d1d5db;
    white-space: nowrap;
}
@media (min-width: 1024px) {
    .cat-square {
        width: 124px;
        height: 96px;
        gap: 10px;
    }
    .cat-square span {
        font-size: 13px;
    }
}

.promo-card {
    border-radius: 10px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: transform 0.2s;
    text-align: center;
}
.promo-card:hover { transform: translateY(-2px); }
.promo-card span { font-size: 11px; font-weight: 700; color: white; }

.game-card {
    border-radius: 10px;
    overflow: hidden;
    background: #1e2027;
    transition: transform 0.2s;
    position: relative;
}
.game-card:hover {
    transform: translateY(-5px);
    z-index: 10;
}

.hot-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: #fc2458;
    color: white;
    padding: 2px 6px;
    font-weight: 900;
    font-size: 10px;
    border-radius: 4px;
    z-index: 20;
}

.btn-pink {
    background-color: #fc2458;
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.2s;
}
.btn-pink:hover { background-color: #e01f4e; }

.btn-dark {
    background-color: #2b2f3a;
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.2s;
}
.btn-dark:hover { background-color: #373c4a; }

.notif-dot {
    background-color: #f59e0b;
    color: black;
    font-size: 10px;
    font-weight: 800;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -4px;
    right: -4px;
}

.pb-safe { padding-bottom: calc(env(safe-area-inset-bottom) + 8px); }

.seo-block {
    width: 100%;
    max-width: none;
    margin: 2rem 0 3rem;
    padding: 1.5rem 0;
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.7;
}
.seo-block h2 {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    margin: 2rem 0 1rem;
    padding: 0.75rem 1rem 0.75rem 1rem;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, rgba(252, 36, 88, 0.2) 0%, transparent 100%);
    border-left: 4px solid #fc2458;
    border-radius: 0 6px 6px 0;
}
.seo-block h2:first-of-type {
    margin-top: 0;
}
.seo-block h3 {
    color: #e5e7eb;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    margin: 1.5rem 0 0.5rem;
    padding: 0.5rem 1rem 0.5rem 1rem;
    background: rgba(45, 49, 60, 0.5);
    border-left: 3px solid #fbbf24;
    border-radius: 0 6px 6px 0;
}
.seo-block h1 {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    margin: 0 0 1.25rem;
    padding: 1rem 1.25rem;
    letter-spacing: 0.03em;
    background: linear-gradient(90deg, rgba(252, 36, 88, 0.25) 0%, rgba(45, 49, 60, 0.4) 50%, transparent 100%);
    border-left: 5px solid #fc2458;
    border-radius: 0 8px 8px 0;
    line-height: 1.3;
}
.seo-block p {
    margin-bottom: 0.85rem;
}
.seo-block strong {
    color: #fc2458;
    font-weight: 700;
}
.seo-block em {
    color: #fbbf24;
    font-style: italic;
    font-weight: 500;
}
.seo-block ol,
.seo-block ul {
    margin: 1.25rem 0;
    padding-left: 2rem;
    padding-right: 0.5rem;
}
.seo-block ol {
    list-style: none;
    counter-reset: seo-list;
}
.seo-block ol li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.6rem;
    line-height: 1.6;
}
.seo-block ol li::before {
    counter-increment: seo-list;
    content: counter(seo-list);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, #fc2458 0%, #e01f4e 100%);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.seo-block ul {
    list-style: none;
}
.seo-block ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.6rem;
    line-height: 1.6;
}
.seo-block ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: #fc2458;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(252, 36, 88, 0.3);
}
.seo-block table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 1.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    border: 1px solid #2d313c;
}
.seo-block th,
.seo-block td {
    padding: 0.85rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid #2d313c;
}
.seo-block th {
    background: linear-gradient(180deg, #252830 0%, #1e2027 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.seo-block td {
    background: rgba(30, 32, 39, 0.5);
}
.seo-block tbody tr {
    transition: background 0.15s ease;
}
.seo-block tbody tr:hover td {
    background: rgba(45, 49, 60, 0.6);
}
.seo-block tbody tr:last-child td {
    border-bottom: none;
}
.seo-block thead th:first-child,
.seo-block tbody td:first-child {
    padding-left: 1.5rem;
}
.seo-block thead th:last-child,
.seo-block tbody td:last-child {
    padding-right: 1.5rem;
}
