:root {
    --bg-main: #121212;
    --bg-secondary: #1a1a1a;
    --bg-card: #222222;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-yellow: #f4c150;
    --accent-yellow-hover: #e0ae3e;
    --accent-green: #22c55e;
    --accent-green-hover: #1ca74e;
    --border-color: #333333;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-outline {
    border: 1px solid var(--accent-yellow);
    color: var(--accent-yellow);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(244, 193, 80, 0.1);
}

.btn-yellow {
    background-color: var(--accent-yellow);
    color: #000;
}

.btn-yellow:hover {
    background-color: var(--accent-yellow-hover);
}

.btn-green {
    background-color: var(--accent-green);
    color: #fff;
}

.btn-green:hover {
    background-color: var(--accent-green-hover);
}

.btn-full {
    width: 100%;
    margin-bottom: 10px;
}

.btn-full:last-child {
    margin-bottom: 0;
}

/* Header */
.site-header {
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 45px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.main-nav a {
    color: var(--text-primary);
    font-weight: 500;
}

.main-nav a:hover {
    color: var(--accent-yellow);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 1296px;
    margin: 20px auto;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.slider-container {
    position: relative;
    aspect-ratio: 1296 / 338;
    background: var(--bg-secondary);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--accent-yellow);
    color: #000;
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

/* Categories */
.categories-section {
    padding: 30px 0;
}

.category-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 10px;
}

.category-list::-webkit-scrollbar {
    display: none;
}

.cat-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.cat-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.cat-btn:hover, .cat-btn.active {
    background: #333;
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
}

/* Games Grid */
.games-section {
    padding: 40px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.section-title {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.title-icon {
    width: 24px;
    height: 24px;
}

.btn-show-all {
    color: var(--accent-yellow);
    font-size: 14px;
    font-weight: 600;
    background: rgba(244, 193, 80, 0.1);
    padding: 6px 15px;
    border-radius: var(--radius-sm);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.game-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.game-img-wrap {
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 15px;
    aspect-ratio: 4/3;
}

.game-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.game-card:hover .game-img-wrap img {
    transform: scale(1.05);
}

.game-info {
    text-align: center;
    margin-bottom: 15px;
}

.game-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #fff;
}

.game-info p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Promo Section */
.promo-section {
    padding: 40px 0;
}

.promo-box {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.promo-box h2 {
    margin-bottom: 15px;
    font-size: 24px;
}

.promo-box p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.promo-action {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.promo-code {
    border: 2px dashed var(--accent-yellow);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 18px;
}

.promo-code span {
    color: var(--text-secondary);
    font-size: 14px;
}

.promo-code strong {
    color: var(--accent-yellow);
    letter-spacing: 1px;
}

/* Text Content / SEO */
.content-section {
    padding: 40px 0;
    background: var(--bg-secondary);
}

.text-content h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.text-content h3 {
    font-size: 20px;
    margin: 25px 0 15px;
}

.text-content p {
    color: white;
    margin-bottom: 15px;
}

.text-content span {
    color: var(--accent-yellow);
    font-weight: 600;
}

.text-content ul, .text-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.text-content li {
    margin-bottom: 10px;
    color: white;
}

.text-content li strong {
    color: var(--text-primary);
}

/* FAQ */
.faq-section {
    padding: 60px 0;
}

.faq-section h2 {
    margin-bottom: 30px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header .icon {
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--text-secondary);
    border-bottom: 2px solid var(--text-secondary);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header .icon {
    transform: rotate(-135deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--bg-main);
}

.accordion-item.active .accordion-content {
    max-height: 300px;
}

.accordion-content p {
    padding: 0 20px 20px;
    color: var(--text-secondary);
}

/* Payments */
.payments-section {
    padding: 20px 0 40px;
    border-bottom: 1px solid var(--border-color);
}

.payments-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    opacity: 0.6;
}

.payments-grid img {
    height: 30px;
    filter: grayscale(100%);
    transition: var(--transition);
    background-color: #121212;
}

.payments-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Footer */
.site-footer {
    background: var(--bg-secondary);
    padding: 50px 0 30px;
    text-align: center;
}

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

.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.providers-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.providers-logos img {
    height: 25px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.providers-logos img:hover {
    opacity: 1;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-badges img {
    height: 30px;
}

.footer-text p {
    font-size: 11px;
    color: #666;
    margin-bottom: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: var(--radius-md);
    width: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    z-index: 1000;
    transform: translateX(150%);
    transition: transform 0.4s ease-in-out;
}

.cookie-modal.show {
    transform: translateX(0);
}

.cookie-content p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-left nav, .header-right.auth-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }

    .slider-container {
        aspect-ratio: 16/9;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .promo-action {
        flex-direction: column;
        align-items: stretch;
    }
    
    .promo-action .btn {
        width: 100%;
    }

    .cookie-modal {
        width: calc(100% - 40px);
        bottom: 20px;
        right: 20px;
        transform: translateX(150%);
    }
}/* AI-Skeleton */
img { background: #e9ecef; min-height: 50px; }

/* Inner page styles */

/* =========================================
   NEW STYLES FOR SLOT INTERNAL PAGE 
   ========================================= */

/* Slot Player Block */
.slot-player-section {
    padding: 40px 0;
    background: var(--bg-main);
}

.slot-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    transition: border-radius 0.3s ease;
}

.slot-cover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    background: #111;
}

.slot-cover-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    transition: opacity 0.4s ease;
}

.slot-wrapper:hover .slot-cover-bg {
    opacity: 0.4;
}

.slot-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    border: 1px solid var(--accent-yellow);
    z-index: 10;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.slot-buttons {
    position: relative;
    z-index: 10;
    display: flex;
    gap: 20px;
}

.slot-buttons .btn {
    padding: 16px 36px;
    font-size: 16px;
    min-width: 220px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Iframe Container */
.slot-iframe-container {
    position: absolute;
    inset: 0;
    background: #000;
    z-index: 15;
    display: none;
}

.slot-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Iframe Controls */
.iframe-controls {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    z-index: 20;
}

.control-btn {
    background: rgb(0 0 0 / 18%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.control-btn:hover {
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
}

.control-btn img {
    width: 20px;
    height: 20px;
    filter: invert(1);
    transition: var(--transition);
}

.control-btn:hover img {
    filter: invert(0);
}

/* Formatted Text Styles (Typography) */
.slot-content-section {
    padding: 50px 0 70px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.formatted-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.formatted-text h1 {
    color: var(--text-primary);
    font-size: 32px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.formatted-text h2 {
    color: var(--text-primary);
    font-size: 24px;
    margin: 35px 0 15px;
}

.formatted-text h3 {
    color: var(--text-primary);
    font-size: 20px;
    margin: 30px 0 15px;
}

.formatted-text p {
    margin-bottom: 18px;
}

.formatted-text span {
    color: var(--text-primary);
    font-weight: 700;
}

.formatted-text a {
    color: var(--accent-yellow);
    text-decoration: none;
    border-bottom: 1px dashed var(--accent-yellow);
    transition: var(--transition);
}

.formatted-text a:hover {
    color: var(--accent-yellow-hover);
    border-bottom-style: solid;
}

.formatted-text ul,
.formatted-text ol {
    margin: 0 0 25px 25px;
}

.formatted-text li {
    margin-bottom: 10px;
}

.formatted-text li strong {
    color: var(--text-primary);
}

.formatted-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.formatted-text th,
.formatted-text td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.formatted-text th {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.formatted-text tr:last-child td {
    border-bottom: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slot-buttons {
        flex-direction: column;
        gap: 15px;
        width: 80%;
    }
    
    .slot-buttons .btn {
        min-width: 100%;
    }
    
    .slot-wrapper {
        aspect-ratio: 4/3;
    }
    
    .slot-badge {
        top: 15px;
        left: 15px;
        font-size: 12px;
    }
    
    .formatted-text h1 {
        font-size: 26px;
    }
    
    .formatted-text table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}
.game-cats {
    margin: 18px 0 16px;
}

.game-cats__rail {
    position: relative;
    overflow: hidden;
}

.game-cats__list {
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 10px 2px;
    list-style: none;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x proximity;
}

.game-cats__list::-webkit-scrollbar {
    display: none;
}

.game-cats__item {
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.game-cats__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 11px 16px;
    border: 1px solid #2a2a2a;
    border-radius: 999px;
    background: #1a1a1a;
    color: #eaeaea;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .2px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .1s ease;
}

.game-cats__link:hover {
    background: #222;
    border-color: #3a3a3a;
    color: #fff;
    text-decoration: none;
}

.game-cats__link:focus-visible {
    outline: 2px solid #ffd266;
    outline-offset: 3px;
}

.game-cats__link:active {
    transform: translateY(1px);
}

.game-cats__item.is-active .game-cats__link {
    background: #242424;
    border-color: #f6b325;
    color: #fff;
    box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, .06),
            0 0 0 1px rgba(246, 179, 37, .18);
}

.game-cats__icon {
    font-size: 18px;
    line-height: 1;
}

.game-cats__text {
    color: inherit;
}

@media (min-width: 960px) {
    .game-cats__list {
        justify-content: space-between;
        overflow: visible;
    }

    .game-cats__item {
        flex: 1 1 auto;
    }

    .game-cats__link {
        width: 100%;
    }
}
.show-all-center {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 34px 0 10px;
}

.show-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 190px;
    min-height: 48px;
    padding: 14px 26px;
    border: 1px solid #f6b325;
    border-radius: 12px;
    background: linear-gradient(180deg, #f6b325, #ffd266);
    color: #111;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(246, 179, 37, .28);
    transition: transform .12s ease, box-shadow .2s ease, filter .2s ease;
}

.show-all-btn:hover {
    color: #111;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(246, 179, 37, .38);
    filter: brightness(1.04);
}

.show-all-btn:active {
    transform: translateY(1px);
    box-shadow: 0 5px 14px rgba(246, 179, 37, .25);
}

.show-all-btn:focus-visible {
    outline: 2px solid #ffd266;
    outline-offset: 3px;
}

.show-all-btn span {
    font-size: 16px;
    line-height: 1;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    margin-bottom: 22px;
    text-align: left;
}

.section-title {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin: 0;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.2px;
    text-align: left;
}

.section-title .pf-dot {
    display: inline-block;
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f6b325;
    box-shadow: 0 0 14px rgba(246, 179, 37, 0.9);
}

.btn-show-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 9px 15px;
    border-radius: 6px;
    background: rgba(246, 179, 37, 0.12);
    color: #f6b325;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.btn-show-all:hover {
    background: rgba(246, 179, 37, 0.2);
    color: #ffd266;
    text-decoration: none;
}

.btn-show-all:active {
    transform: translateY(1px);
}

@media (max-width: 640px) {
    .section-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .section-title {
        font-size: 20px;
    }
}
.content-section a {
    color: #f4c150;
}
h1,
h2,
h3,
.section-title {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
    font-weight: 800;
}
.framed-img {

}
.content-section table {
    width: 100%;
    margin: 24px 0 28px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    background: #181818;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.content-section table thead {
    background: #252525;
}

.content-section table th {
    padding: 15px 18px;
    color: #f6b325;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
    text-align: left;
    border-bottom: 1px solid #303030;
}

.content-section table td {
    padding: 14px 18px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.45;
    vertical-align: top;
    border-bottom: 1px solid #242424;
}

.content-section table tbody tr {
    background: #181818;
    transition: background 0.18s ease;
}

.content-section table tbody tr:nth-child(even) {
    background: #1d1d1d;
}

.content-section table tbody tr:hover {
    background: #222222;
}

.content-section table tbody tr:last-child td {
    border-bottom: none;
}

.content-section table a {
    color: #f6b325;
    font-weight: 700;
    text-decoration: none;
}

.content-section table a:hover {
    color: #ffd266;
    text-decoration: underline;
}

@media (max-width: 760px) {
    .content-section table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        border-radius: 10px;
    }

    .content-section table th,
    .content-section table td {
        padding: 12px 14px;
        font-size: 14px;
    }
}
.text-content img{
    display: block;
    padding: 4px;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.85);
}