:root {
    --primary-color: #f3c000;
    --bg-dark: #0f0f0f;
    --bg-card: #1a1a1a;
    --text-main: #ffffff;
    --text-muted: #aaaaaa;
    --transition: all 0.3s ease;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
}

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

/* Header */
.header {
    background: rgba(0,0,0,0.9);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav-menu a {
    color: var(--text-main);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.auth-buttons button {
    padding: 10px 20px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
}

.btn-login {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--text-main) !important;
    margin-right: 10px;
}

.btn-register {
    background: var(--primary-color);
    color: #000;
}

.btn-register:hover {
    background: #fff;
}

/* Slider */
.hero-slider {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-bottom: 30px;
}

.slider-container {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
}

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

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
}

#sliderRange {
    width: 100%;
    accent-color: var(--primary-color);
    cursor: pointer;
}

/* Categories */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.cat-item {
    background: var(--bg-card);
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.cat-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    background: #252525;
}

.cat-item img {
    width: 40px;
    height: 40px;
    display: block;
    margin: 0 auto 10px;
}

/* Slots */
.slots-section {
    margin-top: 40px;
}

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

.section-title {
    font-size: 1.8rem;
    color: #fff;
    text-transform: capitalize;
}

.btn-view-all {
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-view-all:hover {
    background: var(--primary-color);
    color: #000;
}

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

.slot-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.slot-card:hover {
    box-shadow: 0 10px 20px rgba(243, 192, 0, 0.2);
    transform: scale(1.02);
}

.slot-img-wrapper {
    width: 100%;
    height: 164px;
    overflow: hidden;
}

.slot-img-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.slot-info {
    padding: 15px;
    text-align: center;
}

.slot-info h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.provider-name {
    color: var(--text-muted);
    font-size: 0.8rem;
    display: block;
    margin-bottom: 15px;
}

.slot-btns {
    display: flex;
    gap: 10px;
}

.btn-demo, .btn-real {
    flex: 1;
    padding: 8px 0;
    font-size: 0.8rem;
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

.btn-demo {
    background: #444;
    color: #fff;
    border: none;
}

.btn-real {
    background: var(--primary-color);
    color: #000;
}

.show-all-wrapper {
    text-align: center;
    margin: 40px 0;
}

.btn-show-all {
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: var(--transition);
}

.btn-show-all:hover {
    background: var(--primary-color);
    color: #000;
}

/* Promo Section */
.promo-box {
    background: linear-gradient(135deg, #222, #111);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
}

.promo-input-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.promo-input-group input {
    padding: 10px;
    background: #000;
    border: 1px solid #444;
    color: var(--primary-color);
    font-weight: bold;
    width: 200px;
    text-align: center;
}

.promo-input-group button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
}

#btnActivate { background: var(--primary-color); color: #000; }
#btnCopy { background: #555; color: #fff; }

/* Text Blocks */
.content-text {
    margin: 60px 0;
}

.content-text h1 {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background: #1a1a1a;
}

.info-table td {
    padding: 12px;
    border: 1px solid #333;
}

.info-table td:first-child {
    font-weight: bold;
    width: 30%;
    color: var(--text-muted);
}

.styled-text p {
    margin-bottom: 15px;
}

.styled-text span {
    color: var(--primary-color);
    font-weight: bold;
}

.styled-text ul {
    margin: 15px 0 15px 30px;
}

/* Footer */
.footer {
    background: #000;
    padding: 60px 0 20px;
    border-top: 1px solid #222;
}

.footer-partners {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.payment-icons img, .provider-icons img {
    height: 30px;
    margin: 0 10px;
    filter: grayscale(1) opacity(0.7);
    transition: 0.3s;
}

.payment-icons img:hover, .provider-icons img:hover {
    filter: grayscale(0) opacity(1);
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 30px;
}

.footer-logo {
    height: 30px;
    margin-bottom: 15px;
}

.age-badge {
    width: 40px;
    margin-bottom: 15px;
    display: block;
    margin: 0 auto 15px;
}

.license-text {
    font-size: 0.8rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #333;
    padding: 20px;
    width: 300px;
    border-radius: 8px;
    z-index: 10000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    display: block;
}

.cookie-modal p {
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.cookie-modal button {
    background: var(--primary-color);
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
}

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

@media (max-width: 600px) {
    .header-container { flex-direction: column; gap: 15px; }
    .nav-menu { display: none; }
    .slots-grid, .cat-grid { grid-template-columns: 1fr; }
    .hero-slider { height: 250px; }
    .promo-input-group { flex-direction: column; align-items: center; }
    .section-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Inner page styles */
/* Game Section Styles */
.game-section {
    padding: 40px 0;
}

.game-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    border: 1px solid #333;
}

.game-wrapper:fullscreen {
    max-width: none;
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    border: none;
}

.game-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    z-index: 2;
}

.btn-game-primary,
.btn-game-secondary {
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.btn-game-primary {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 4px 15px rgba(243, 192, 0, 0.4);
}

.btn-game-primary:hover {
    transform: scale(1.05);
    background: #fff;
}

.btn-game-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid var(--primary-color);
}

.btn-game-secondary:hover {
    background: var(--primary-color);
    color: #000;
}

#gameIframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: none;
    z-index: 5;
}

.game-controls {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    display: none;
    gap: 10px;
}

.btn-control {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: 1px solid #555;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-control:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-close:hover {
    border-color: #ff4444;
    color: #ff4444;
}

/* Detailed SEO Content Styles */
.seo-content {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    border: 1px solid #222;
}

.seo-content h1,
.seo-content h2,
.seo-content h3 {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.seo-content h1 {
    font-size: 2.2rem;
    text-align: center;
    margin-top: 0;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.seo-content h2 {
    font-size: 1.8rem;
}

.seo-content h3 {
    font-size: 1.4rem;
}

.seo-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #cccccc;
    line-height: 1.7;
}

.seo-content span {
    color: var(--primary-color);
    font-weight: bold;
    background: rgba(243, 192, 0, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.seo-content ul,
.seo-content ol {
    margin: 0 0 25px 25px;
    color: #cccccc;
    line-height: 1.7;
}

.seo-content li {
    margin-bottom: 10px;
    padding-left: 5px;
}

.seo-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: #111;
    border-radius: 8px;
    overflow: hidden;
}

.seo-content th,
.seo-content td {
    padding: 15px;
    border: 1px solid #333;
    text-align: left;
}

.seo-content th {
    background: #222;
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.seo-content td:first-child {
    font-weight: 600;
    color: #fff;
}

.seo-content blockquote {
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(90deg, #222 0%, #1a1a1a 100%);
    border-left: 5px solid var(--primary-color);
    font-style: italic;
    color: #aaa;
    border-radius: 0 8px 8px 0;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .game-overlay .btn-game-primary,
    .game-overlay .btn-game-secondary {
        padding: 12px 25px;
        font-size: 0.9rem;
        width: 80%;
        text-align: center;
    }
    
    .seo-content {
        padding: 20px;
    }
    
    .seo-content h1 {
        font-size: 1.8rem;
    }
}
/* AI-Skeleton */
img { background: #e9ecef; min-height: 50px; }
/* AI-Skeleton */
img { background: #e9ecef; min-height: 50px; }
.slot-more-games {
    padding: 34px 0 54px;
    background: #120d0b;
}

.slot-more-games-title {
    margin: 0 0 14px;
    color: #f6b325;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 800;
}

.slot-more-games-text {
    margin: 0 0 28px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.5;
}

.slot-more-games-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.slot-more-game-card {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.slot-more-game-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.slot-more-game-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

@media (max-width: 992px) {
    .slot-more-games-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .slot-more-games {
        padding: 28px 0 42px;
    }

    .slot-more-games-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .slot-more-games-title {
        font-size: 17px;
    }

    .slot-more-games-text {
        font-size: 14px;
        margin-bottom: 22px;
    }
}


.pfb-hero-carousel {
    position: relative;
    width: min(100% - 32px, 1280px);
    height: 330px;
    margin: 24px auto 34px;
    overflow: hidden;
    border-radius: 10px;
    background: #050505;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.pfb-hero-carousel__viewport {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.pfb-hero-carousel__track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.65s ease;
}

.pfb-hero-carousel__slide {
    min-width: 100%;
    height: 100%;
    overflow: hidden;
}

.pfb-hero-carousel__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pfb-hero-carousel__progress {
    position: absolute;
    left: 50%;
    bottom: 20px;
    z-index: 5;
    width: 150px;
    height: 5px;
    transform: translateX(-50%);
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
}

.pfb-hero-carousel__progress-fill {
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: #f6b325;
    transition: width 0.1s linear;
}

@media (max-width: 1200px) {
    .pfb-hero-carousel {
        width: min(100% - 28px, 1100px);
        height: 300px;
        margin-top: 22px;
    }
}

@media (max-width: 992px) {
    .pfb-hero-carousel {
        width: calc(100% - 24px);
        height: 270px;
        margin: 20px auto 30px;
        border-radius: 9px;
    }

    .pfb-hero-carousel__progress {
        bottom: 18px;
        width: 130px;
    }
}

@media (max-width: 768px) {
    .pfb-hero-carousel {
        width: calc(100% - 20px);
        height: 230px;
        margin: 18px auto 26px;
    }

    .pfb-hero-carousel__progress {
        bottom: 16px;
        width: 110px;
        height: 4px;
    }
}

@media (max-width: 520px) {
    .pfb-hero-carousel {
        width: calc(100% - 16px);
        height: 190px;
        margin: 14px auto 24px;
        border-radius: 8px;
    }

    .pfb-hero-carousel__slide img {
        object-fit: cover;
        object-position: center;
    }

    .pfb-hero-carousel__progress {
        bottom: 14px;
        width: 92px;
        height: 4px;
    }
}

@media (max-width: 390px) {
    .pfb-hero-carousel {
        height: 170px;
    }
}

.content-text {
    padding: 48px 0 64px;
    background: #0f0f0f;
    color: #ffffff;
}

.content-text .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
}

.content-text h1,
.content-text h2,
.content-text h3,
.content-text h4,
.content-text h5,
.content-text h6 {
    margin: 0 0 18px;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.25;
}

.content-text h1 {
    font-size: clamp(30px, 4vw, 48px);
    margin-bottom: 24px;
}

.content-text h2 {
    font-size: clamp(24px, 3vw, 34px);
    margin-top: 42px;
}

.content-text h3 {
    font-size: clamp(20px, 2.4vw, 26px);
    margin-top: 34px;
}

.content-text h4 {
    font-size: 20px;
    margin-top: 28px;
}

.content-text h5 {
    font-size: 18px;
    margin-top: 24px;
}

.content-text h6 {
    font-size: 16px;
    margin-top: 22px;
    color: #f6b325;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.content-text p {
    margin: 0 0 18px;
    color: #e7e7e7;
    font-size: 17px;
    line-height: 1.75;
}

.content-text a {
    color: #f6b325;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.content-text a:hover {
    color: #ffd45f;
}

.content-text strong,
.content-text b {
    color: #ffffff;
    font-weight: 800;
}

.content-text em,
.content-text i {
    color: #f2f2f2;
}

.content-text span {
    color: inherit;
}

.content-text ul,
.content-text ol {
    margin: 0 0 24px;
    padding-left: 24px;
    color: #e7e7e7;
    font-size: 17px;
    line-height: 1.7;
}

.content-text ul {
    list-style: none;
    padding-left: 0;
}

.content-text ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
}

.content-text ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #f6b325;
    box-shadow: 0 0 10px rgba(246, 179, 37, 0.45);
}

.content-text ol {
    counter-reset: content-counter;
    list-style: none;
    padding-left: 0;
}

.content-text ol li {
    position: relative;
    counter-increment: content-counter;
    padding-left: 40px;
    margin-bottom: 12px;
}

.content-text ol li::before {
    content: counter(content-counter);
    position: absolute;
    left: 0;
    top: 0.15em;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f6b325;
    color: #111111;
    font-size: 13px;
    font-weight: 800;
}

.content-text blockquote {
    margin: 34px 0;
    padding: 24px 28px;
    border-left: 4px solid #f6b325;
    border-radius: 0 18px 18px 0;
    background: rgba(246, 179, 37, 0.08);
    color: #ffffff;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 600;
}

.content-text blockquote p:last-child {
    margin-bottom: 0;
}

.content-text table {
    width: 100%;
    margin: 28px 0 34px;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 16px;
    background: #171717;
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.content-text table thead {
    background: #f6b325;
    color: #111111;
}

.content-text table th,
.content-text table td {
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    vertical-align: top;
}

.content-text table th {
    font-weight: 800;
    color: #111111;
}

.content-text table td {
    color: #e8e8e8;
}

.content-text table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.035);
}

.content-text table tbody tr:hover {
    background: rgba(246, 179, 37, 0.08);
}

.content-text img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 28px auto;
    border-radius: 16px;
}

.content-text figure {
    margin: 32px 0;
}

.content-text figure img {
    margin: 0 auto;
}

.content-text figcaption {
    margin-top: 10px;
    color: #b8b8b8;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.content-text hr {
    margin: 38px 0;
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(246, 179, 37, 0.7), transparent);
}

.content-text code {
    padding: 3px 7px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    color: #f6b325;
    font-size: 0.92em;
}

.content-text pre {
    margin: 28px 0;
    padding: 20px;
    overflow-x: auto;
    border-radius: 16px;
    background: #050505;
    color: #eeeeee;
    font-size: 15px;
    line-height: 1.6;
}

.content-text pre code {
    padding: 0;
    background: transparent;
    color: inherit;
}

.content-text iframe {
    max-width: 100%;
    border-radius: 16px;
}

@media (max-width: 768px) {
    .content-text {
        padding: 36px 0 48px;
    }

    .content-text p,
    .content-text ul,
    .content-text ol {
        font-size: 16px;
        line-height: 1.68;
    }

    .content-text table {
        display: block;
        overflow-x: auto;
        border-radius: 12px;
    }

    .content-text table th,
    .content-text table td {
        padding: 13px 14px;
        font-size: 15px;
        white-space: nowrap;
    }

    .content-text blockquote {
        padding: 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .content-text {
        padding: 30px 0 42px;
    }

    .content-text .container {
        padding: 0 14px;
    }

    .content-text h1 {
        margin-bottom: 20px;
    }

    .content-text h2 {
        margin-top: 34px;
    }

    .content-text h3 {
        margin-top: 28px;
    }

    .content-text ol li {
        padding-left: 36px;
    }

    .content-text blockquote {
        margin: 28px 0;
        border-radius: 0 14px 14px 0;
    }
}
.pfb-feature-tiles {
    padding: 42px 0;
    background: #181818;
}

.pfb-feature-tiles__grid {
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.pfb-feature-tile {
    position: relative;
    display: block;
    min-height: 235px;
    overflow: hidden;
    border-radius: 4px;
    background: #111;
    color: #fff;
    text-decoration: none;
    isolation: isolate;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.pfb-feature-tile--large {
    border-radius: 18px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 18px 38px rgba(0, 0, 0, 0.32);
}

.pfb-feature-tile img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.pfb-feature-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
            radial-gradient(circle at 75% 35%, rgba(255, 190, 38, 0.16), transparent 34%),
            linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0.22) 100%);
}

.pfb-feature-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.pfb-feature-tile:hover img {
    transform: scale(1.08);
    filter: saturate(1.12);
}

.pfb-feature-tile:hover .pfb-feature-tile__content {
    transform: translateY(-4px);
}

.pfb-feature-tile__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 18px;
    border-radius: 999px;
    background: #f6b325;
    color: #050505;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.pfb-feature-tile__content {
    position: absolute;
    left: 20px;
    right: 18px;
    bottom: 22px;
    transition: transform 0.3s ease;
}

.pfb-feature-tile__content h2 {
    margin: 0 0 6px;
    color: #ffffff;
    font-size: clamp(24px, 2.3vw, 34px);
    line-height: 0.96;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 2px 3px 0 rgba(0, 0, 0, 0.65);
}

.pfb-feature-tile__content p {
    margin: 0;
    max-width: 360px;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.22;
    font-weight: 700;
    text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.55);
}

@media (max-width: 992px) {
    .pfb-feature-tiles__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pfb-feature-tile {
        min-height: 220px;
    }
}

@media (max-width: 640px) {
    .pfb-feature-tiles {
        padding: 32px 0;
    }

    .pfb-feature-tiles__grid {
        width: calc(100% - 24px);
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pfb-feature-tile,
    .pfb-feature-tile--large {
        min-height: 205px;
        border-radius: 14px;
    }

    .pfb-feature-tile__content {
        left: 16px;
        right: 16px;
        bottom: 18px;
    }

    .pfb-feature-tile__content h2 {
        font-size: 26px;
    }

    .pfb-feature-tile__content p {
        font-size: 17px;
    }
}

.pf-cookie-box {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 9999;
    width: min(340px, calc(100% - 32px));
    padding: 18px;
    border-radius: 10px;
    background: #2b2b2b;
    color: #ffffff;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.pf-cookie-box.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pf-cookie-box__content p {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.55;
}

.pf-cookie-box__content a {
    color: #f6b325;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pf-cookie-box__btn {
    width: 100%;
    min-height: 38px;
    border: 0;
    border-radius: 5px;
    background: #f6b325;
    color: #111111;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.pf-cookie-box__btn:hover {
    background: #ffd15c;
    transform: translateY(-1px);
}

@media (max-width: 520px) {
    .pf-cookie-box {
        left: 16px;
        bottom: 16px;
        width: calc(100% - 32px);
        padding: 16px;
    }
}
.pfb-sports-promo {
    padding: 42px 0;
    background: #120d0b;
}

.pfb-sports-promo__grid {
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.pfb-sports-promo__card {
    grid-column: span 2;
    display: block;
    min-height: 190px;
    overflow: hidden;
    border-radius: 12px;
    background: #181818;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pfb-sports-promo__card--center {
    grid-column: 3 / span 2;
}

.pfb-sports-promo__card img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.pfb-sports-promo__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.38);
}

.pfb-sports-promo__card:hover img {
    transform: scale(1.045);
    filter: saturate(1.08);
}

@media (max-width: 992px) {
    .pfb-sports-promo__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .pfb-sports-promo__card,
    .pfb-sports-promo__card--center {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    .pfb-sports-promo {
        padding: 32px 0;
    }

    .pfb-sports-promo__grid {
        width: calc(100% - 24px);
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pfb-sports-promo__card {
        min-height: 175px;
        border-radius: 10px;
    }

    .pfb-sports-promo__card img {
        min-height: 175px;
    }
}
.pf-live-odds {
    padding: 42px 0;
    background: #0f0f0f;
    color: #ffffff;
}

.pf-live-odds .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
}

.pf-live-odds__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.pf-live-odds__head span {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 900;
}

.pf-live-odds__head span::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.65);
    animation: pf-live-pulse 1.4s infinite;
}

.pf-live-odds__head a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 24px;
    border: 1px solid #f6b325;
    border-radius: 999px;
    color: #f6b325;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.pf-live-odds__head a:hover {
    background: #f6b325;
    color: #111111;
    transform: translateY(-2px);
}

.pf-live-odds__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.pf-live-match {
    position: relative;
    display: block;
    min-height: 190px;
    padding: 22px;
    overflow: hidden;
    border-radius: 18px;
    background:
            radial-gradient(circle at 85% 20%, rgba(246, 179, 37, 0.18), transparent 32%),
            linear-gradient(135deg, #1d1d1d 0%, #151515 48%, #101010 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.pf-live-match::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(246, 179, 37, 0.08), transparent 45%);
    opacity: 0;
    transition: opacity 0.22s ease;
}

.pf-live-match:hover {
    transform: translateY(-4px);
    border-color: rgba(246, 179, 37, 0.45);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.38);
}

.pf-live-match:hover::before {
    opacity: 1;
}

.pf-live-match__sport {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-bottom: 18px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(246, 179, 37, 0.16);
    color: #f6b325;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pf-live-match strong {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
}

.pf-live-match p {
    position: relative;
    z-index: 1;
    margin: 0 0 22px;
    color: #e8e8e8;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 900;
}

.pf-live-match > div {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pf-live-match > div span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    background: #f6b325;
    color: #111111;
    font-size: 16px;
    font-weight: 900;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, background 0.2s ease;
}

.pf-live-match:hover > div span {
    background: #ffd15c;
    transform: translateY(-2px);
}

@keyframes pf-live-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.65);
    }

    70% {
        box-shadow: 0 0 0 9px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

@media (max-width: 768px) {
    .pf-live-odds {
        padding: 34px 0;
    }

    .pf-live-odds__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .pf-live-odds__head span {
        font-size: 24px;
    }

    .pf-live-odds__grid {
        grid-template-columns: 1fr;
    }

    .pf-live-match {
        min-height: 175px;
        padding: 20px;
    }

    .pf-live-match p {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .pf-live-odds .container {
        padding: 0 14px;
    }

    .pf-live-match > div span {
        min-width: 70px;
        min-height: 38px;
        font-size: 15px;
    }
}
.age-badge {
    display: block;
    width: clamp(34px, 5vw, 56px);
    height: auto;
    margin: 14px auto 0;
    padding: 0;
    background: transparent;
    object-fit: contain;
}

@media (max-width: 768px) {
    .age-badge {
        width: 42px;
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .age-badge {
        width: 38px;
        margin-top: 10px;
    }
}