* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PT Sans', sans-serif;
    background-color: #323234;
    color: #f0f0f0;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tv9k-header {
    background-color: #000000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.xy4n-header-row {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    gap: 20px;
}

.pm7x-header-logo {}

.kv2z-logo-link {
    display: block;
}

.kv2z-logo-link img {
    max-width: 100%;
    height: auto;
}

.fw8q-header-nav {}

.dc5m-nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.rs3k-nav-link {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
}

.rs3k-nav-link:hover {
    color: #00fbc8;
    text-decoration: none;
}

.wq6p-header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nz8v-online-counter {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 251, 200, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
}

.mx4k-online-icon {
    font-size: 18px;
}

.hb2t-online-text {
    color: #f0f0f0;
    font-size: 14px;
}

.yk7n-online-count {
    color: #00fbc8;
    font-weight: 700;
    font-size: 16px;
}

.bt3x-auth-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.gp9m-btn-login {
    background-color: #00fbc8;
    color: #000000;
}

.gp9m-btn-login:hover {
    background-color: #00e0b3;
    color: #000000;
    text-decoration: none;
    transform: translateY(-2px);
}

.lx4v-btn-signup {
    background-color: #ff2e09;
    color: #ffffff;
}

.lx4v-btn-signup:hover {
    background-color: #e02808;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

.qw5n-burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.zx8m-burger-line {
    width: 25px;
    height: 3px;
    background-color: #f0f0f0;
    transition: all 0.3s;
}

.qw5n-burger-btn.active .zx8m-burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.qw5n-burger-btn.active .zx8m-burger-line:nth-child(2) {
    opacity: 0;
}

.qw5n-burger-btn.active .zx8m-burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.pv7k-mobile-menu {
    background-color: #000000;
    padding: 0;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    z-index: 999;
    opacity: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.pv7k-mobile-menu.active {
    max-height: 600px;
    padding: 20px;
    opacity: 1;
}

.cn2x-mobile-auth {
    display: none;
}

.ks8p-mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ks8p-mobile-menu-list li {
    margin-bottom: 0;
    border-bottom: 1px solid #323234;
}

.ks8p-mobile-menu-list li:last-child {
    border-bottom: none;
}

.mw3v-mobile-link {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding: 15px 10px;
    transition: all 0.3s;
}

.mw3v-mobile-link:hover,
.mw3v-mobile-link:active {
    color: #00fbc8;
    background-color: rgba(0, 251, 200, 0.1);
    text-decoration: none;
    padding-left: 20px;
}

.kq2z-hero-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.m8fn-hero-slider {
    position: relative;
    height: 500px;
}

.pv3x-slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s;
    display: flex;
    align-items: center;
}

.pv3x-slider-item.active {
    opacity: 1;
}

.pv3x-slider-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.r4tn-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.yw7k-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.dg5m-hero-text {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.fx9p-btn-primary {
    background-color: #ff2e09;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 18px;
}

.fx9p-btn-primary:hover {
    background-color: #e02808;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 46, 9, 0.4);
}

.k3vy-slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 2;
}

.ql7n-prev-btn,
.ql7n-next-btn {
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: 2px solid #00fbc8;
    font-size: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.ql7n-prev-btn:hover,
.ql7n-next-btn:hover {
    background: #00fbc8;
    color: #000;
}

.ht8w-info-section,
.lx9h-jackpots-section,
.bt5n-mirrors-section,
.gx6p-tournaments-section,
.np8v-app-section,
.rh9k-games-section,
.vk5m-wheel-section,
.hw9m-review-section,
.qx5n-author-section {
    padding: 60px 0;
}

.zm4q-section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #00fbc8;
}

.bx6k-info-wrapper {
    background: #1a1a1c;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.uc2m-info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
}

.uc2m-info-table tr {
    border-bottom: 1px solid #323234;
}

.uc2m-info-table tr:last-child {
    border-bottom: none;
}

.pr5w-param {
    padding: 15px;
    font-weight: 700;
    color: #00fbc8;
    width: 40%;
    text-align: left;
}

.jk9v-value {
    padding: 15px;
    color: #f0f0f0;
    text-align: left;
}

.ry3p-jackpots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.wp4z-jackpot-card {
    background: linear-gradient(135deg, #1a1a1c 0%, #2a2a2c 100%);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.wp4z-jackpot-card:hover {
    transform: translateY(-5px);
}

.mc7k-jackpot-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.nf2x-jackpot-name {
    font-size: 24px;
    font-weight: 700;
    color: #f0f0f0;
    margin-bottom: 15px;
}

.vq8t-jackpot-amount {
    font-size: 32px;
    font-weight: 700;
    color: #00fbc8;
}

.pd9m-updated-time {
    text-align: center;
    color: #00fbc8;
    margin-bottom: 30px;
    font-size: 18px;
}

.fk3v-mirrors-wrapper {
    background: #1a1a1c;
    padding: 30px;
    border-radius: 15px;
    overflow-x: auto;
}

.ux7w-mirrors-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
}

.ux7w-mirrors-table thead {
    background: #000000;
}

.ux7w-mirrors-table th {
    padding: 15px;
    color: #00fbc8;
    font-weight: 700;
    text-align: left;
    border: 2px solid #323234;
}

.ux7w-mirrors-table td {
    padding: 15px;
    color: #f0f0f0;
    border: 1px solid #323234;
}

.qv8n-mirror-link {
    color: #00fbc8;
    text-decoration: none;
}

.qv8n-mirror-link:hover {
    color: #00e0b3;
    text-decoration: underline;
}

.zt4m-status-active {
    color: #00fbc8;
    font-weight: 700;
}

.hn2k-btn-small {
    background-color: #ff2e09;
    color: #ffffff;
    padding: 8px 15px;
    font-size: 14px;
}

.hn2k-btn-small:hover {
    background-color: #e02808;
    color: #ffffff;
}

.km8z-tournaments-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sw3n-tournament-card {
    background: #1a1a1c;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.sw3n-tournament-card:hover {
    transform: translateY(-5px);
}

.rd7p-tournament-header {
    background: linear-gradient(135deg, #ff2e09 0%, #ff5e09 100%);
    padding: 20px;
}

.hq5v-tournament-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.mx4t-tournament-body {
    padding: 25px;
}

.yc9n-tournament-desc {
    color: #f0f0f0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.kp2w-tournament-prize {
    font-size: 28px;
    font-weight: 700;
    color: #00fbc8;
    text-align: center;
    margin-bottom: 20px;
}

.vn7x-tournament-timer {
    background: #000000;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.timer-label {
    color: #00fbc8;
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 20px;
    font-weight: 700;
    color: #f0f0f0;
}

.ql4m-btn-tournament {
    width: 100%;
    background-color: #00fbc8;
    color: #000000;
}

.ql4m-btn-tournament:hover {
    background-color: #00e0b3;
    color: #000000;
}

.wt5k-app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.xm9p-app-info {
    background: #1a1a1c;
    padding: 30px;
    border-radius: 15px;
}

.dq7v-app-table {
    width: 100%;
    border-collapse: collapse;
}

.dq7v-app-table tr {
    border-bottom: 1px solid #323234;
}

.fp4n-app-download {
    background: linear-gradient(135deg, #1a1a1c 0%, #2a2a2c 100%);
    padding: 40px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cx8m-download-title {
    font-size: 28px;
    font-weight: 700;
    color: #00fbc8;
    margin-bottom: 30px;
}

.bv3q-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.gk7t-download-btn {
    display: block;
    transition: transform 0.3s;
}

.gk7t-download-btn:hover {
    transform: scale(1.05);
}

.gk7t-download-btn img {
    width: 100%;
    height: auto;
}


.ty6x-games-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.jm3w-game-card {
    background: #1a1a1c;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.jm3w-game-card:hover {
    transform: translateY(-5px);
}

.ps8n-game-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    background-color: #000;
}

.ps8n-game-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.jm3w-game-card:hover .ps8n-game-image img {
    transform: scale(1.1);
}

.zq4v-game-title {
    font-size: 20px;
    font-weight: 700;
    color: #f0f0f0;
    padding: 15px;
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wm7p-btn-game {
    width: calc(100% - 30px);
    margin: 0 15px 15px;
    background-color: #00fbc8;
    color: #000000;
    margin-top: auto;
}

.wm7p-btn-game:hover {
    background-color: #00e0b3;
    color: #000000;
}

.nc8p-wheel-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.qt9x-wheel-container {
    position: relative;
}

#wheelCanvas {
    max-width: 100%;
    height: auto;
}

.hp2k-wheel-pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 25px solid #ff2e09;
    z-index: 10;
}

.fr7n-wheel-controls {
    text-align: center;
}

.lw4v-spin-btn {
    font-size: 20px;
    padding: 15px 50px;
}

.mx6q-wheel-result {
    margin-top: 30px;
    background: #1a1a1c;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
}

.bd3z-result-text {
    font-size: 24px;
    font-weight: 700;
    color: #00fbc8;
    margin-bottom: 20px;
}


.zv7t-review-content {
    background: #1a1a1c;
    padding: 40px;
    border-radius: 15px;
    line-height: 1.8;
}

.pk4x-review-h1 {
    font-size: 42px;
    font-weight: 700;
    color: #00fbc8;
    margin-bottom: 30px;
    text-align: center;
}

.zv7t-review-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #00fbc8;
    margin: 30px 0 20px;
}

.zv7t-review-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #f0f0f0;
    margin: 25px 0 15px;
}

.zv7t-review-content p {
    color: #f0f0f0;
    margin-bottom: 20px;
    line-height: 1.8;
}

.zv7t-review-content ul,
.zv7t-review-content ol {
    color: #f0f0f0;
    margin: 20px 0;
    padding-left: 30px;
}

.zv7t-review-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.zv7t-review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #000000;
}

.zv7t-review-content table th,
.zv7t-review-content table td {
    padding: 15px;
    border: 2px solid #323234;
    text-align: left;
}

.zv7t-review-content table th {
    background: #1a1a1c;
    color: #00fbc8;
    font-weight: 700;
}

.zv7t-review-content table td {
    color: #f0f0f0;
}

.zv7t-review-content a {
    color: #00fbc8;
    text-decoration: none;
}

.zv7t-review-content a:hover {
    color: #00e0b3;
    text-decoration: underline;
}


.mt8k-author-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    background: #1a1a1c;
    padding: 30px;
    border-radius: 15px;
}

.dw3p-author-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.bn4m-author-name {
    font-size: 28px;
    font-weight: 700;
    color: #00fbc8;
    margin-bottom: 10px;
}

.xv9t-author-title {
    font-size: 18px;
    color: #f0f0f0;
    margin-bottom: 15px;
    font-style: italic;
}

.rk2w-author-bio {
    color: #f0f0f0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.fp8z-author-social {}

.vt3n-social-link {
    color: #00fbc8;
    text-decoration: none;
    font-weight: 700;
}

.vt3n-social-link:hover {
    color: #00e0b3;
    text-decoration: underline;
}

.hx9v-footer {
    background-color: #000000;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.qn3k-footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.vw7m-footer-section {}

.tc5x-footer-logo img {
    max-width: 180px;
    margin-bottom: 20px;
}

.pz8n-footer-desc {
    color: #f0f0f0;
    line-height: 1.6;
}

.rk2m-footer-title {
    font-size: 20px;
    font-weight: 700;
    color: #00fbc8;
    margin-bottom: 20px;
}

.dy6p-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dy6p-footer-menu li {
    margin-bottom: 10px;
}

.mb4v-footer-link {
    color: #f0f0f0;
    text-decoration: none;
    transition: color 0.3s;
}

.mb4v-footer-link:hover {
    color: #00fbc8;
    text-decoration: none;
}

.jx8n-payment-logos,
.wp4n-provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.jx8n-payment-logos img,
.wp4n-provider-logos img {
    max-width: 60px;
    height: auto;
}

.zq7m-footer-bottom {
    border-top: 1px solid #323234;
    padding-top: 30px;
}

.nx5v-footer-legal {
    text-align: center;
    margin-bottom: 20px;
}

.kg8t-copyright,
.mv3k-warning {
    color: #f0f0f0;
    font-size: 14px;
    margin-bottom: 10px;
}

.bn9x-footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.wy4p-legal-link {
    color: #00fbc8;
    text-decoration: none;
    font-size: 14px;
}

.wy4p-legal-link:hover {
    color: #00e0b3;
    text-decoration: underline;
}

.gn4v-sticky-widget {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff2e09 0%, #ff5e09 100%);
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
    z-index: 999;
    transition: bottom 0.3s;
}

.gn4v-sticky-widget.visible {
    bottom: 0;
}

.pr8m-widget-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kx5t-widget-text {}

.zy9n-widget-bonus {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.hq3w-widget-btn {
    background-color: #000000;
    color: #00fbc8;
    padding: 12px 30px;
    font-size: 18px;
}

.hq3w-widget-btn:hover {
    background-color: #1a1a1c;
    color: #00fbc8;
}


.gk7t-download-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
}

.gk7t-download-btn:hover {
    transform: translateY(-3px);
    text-decoration: none;
}

.gk7t-download-ios {
    background-color: #000000;
    border: 2px solid #444;
}

.gk7t-download-ios:hover {
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
    border-color: #888;
}

.gk7t-download-android {
    background-color: #000000;
    border: 2px solid #444;
}

.gk7t-download-android:hover {
    box-shadow: 0 6px 20px rgba(0, 251, 200, 0.2);
    border-color: #00fbc8;
}

.gk7t-download-apk {
    background-color: #000000;
    border: 2px solid #444;
}

.gk7t-download-apk:hover {
    background-color: #e02808;
    box-shadow: 0 6px 20px rgba(255, 46, 9, 0.4);
    border-color: #e02808;
}

.gk7t-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.gk7t-texts {
    display: flex;
    flex-direction: column;
}

.gk7t-sub {
    font-size: 12px;
    color: #aaa;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 3px;
}

.gk7t-download-apk .gk7t-sub {
    color: rgba(255, 255, 255, 0.75);
}

.gk7t-main {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.xr9m-unused { display: none; }
.kv3p-hidden { visibility: hidden; }
.zt7n-old { opacity: 0; }
.mw4x-deprecated { color: transparent; }
.bp8q-legacy { position: absolute; left: -9999px; }
.hn7v-unused-element { }
.tx4m-old-class { }
.vw9n-deprecated-style { }
