        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Poppins', Arial, sans-serif;
            color: #19191b;
            font-size: 15px;
            line-height: 22px;
            background: #f5f5f5;
            margin-top: 80px;
        }
        
        ul {
            list-style: none;
        }
        
        ul > li {
            display: inline-block;
        }
        
        a {
            text-decoration: none;
            transition: all 0.2s linear;
        }
        
        .content {
            margin: 0 auto;
            padding: 30px 20px;
            max-width: 984px;
        }
        
        .content.white {
            background: #fff;
            border-radius: 4px;
        }
        
        h1, h2, h3, h4, .title {
            font-weight: 700;
            color: #0179ff;
            text-transform: uppercase;
            text-align: center;
        }
        
        h1, .title.general {
            font-size: 40px;
            line-height: 48px;
            color: #fff;
            text-align: inherit;
        }
        
        h2, .title.high {
            font-size: 24px;
            line-height: 32px;
        }
        
        .title.high {
            margin-bottom: 16px;
        }
        
        h3, .title.middle {
            font-size: 15px;
            line-height: 22px;
        }

        .title2{
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            text-align: center;
        }
        
        .button {
            min-width: 200px;
            background: #d93a0c;
            color: #fff;
            font-size: 15px;
            line-height: 22px;
            font-weight: 700;
            padding: 10px 20px;
            display: inline-block;
            text-align: center;
            cursor: pointer;
            border-radius: 25px;
            text-transform: uppercase;
            border: 2px solid #d93a0c;
            transition: all 0.3s linear;
        }
        
        .button:hover {
            background: #fff;
            color: #d93a0c;
            border-color: #fff;
        }
        
        .button.white {
            color: #fff;
            background: transparent;
        }
        
        .button.white:hover {
            color: #d93a0c;
            background: #fff;
            border-color: #fff;
        }
        
        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            background: #0179ff;
            z-index: 1000;
            width: 100%;
        }
        
        .header__content {
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1024px;
            margin: 0 auto;
            min-height: 80px;
        }
        
        .logo img {
            max-height: 56px;
            display: block;
        }
        
        .header__menu {
            flex: 1;
            margin: 0 16px;
        }
        
        .header__menu ul {
            display: flex;
            align-items: center;
        }
        
        .header__menu li + li {
            margin-left: 24px;
        }
        
        .header__menu a {
            display: block;
            padding: 5px 0;
            font-size: 15px;
            color: #fff;
            white-space: nowrap;
            transition: all 0.2s;
        }
        
        .header__menu a:hover {
            color: #d93a0c;
        }
        
        /* Cover Section */
        .cover {
            background: #0156b3;
            overflow: hidden;
        }
        
        .cover__content {
            display: flex;
            align-items: center;
            min-height: 360px;
            max-width: 1024px;
            position: relative;
        }
        
        .cover__wrap {
            z-index: 100;
            text-align: left;
            max-width: 650px;
            color: #fff;
        }
        
        .cover__wrap > * + * {
            margin-top: 16px;
        }
        
        .cover__title {
            color: #fff;
            text-align: inherit;
        }
        
        .cover__desc {
            font-weight: 500;
            font-size: 15px;
            line-height: 24px;
        }
        
        .cover__rating {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            gap: 8px;
        }
        
        .cover__buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 16px;
        }
        
        .cover__image {
            position: absolute;
            right: 0;
            bottom: 39px;
            height: calc(100% - 80px);
            max-height: 281px;
            z-index: 1;
        }
        
        .cover__image img {
            height: 100%;
            object-fit: contain;
        }
        
        /* Main Content */
        .main__wrapper {
            max-width: 1544px;
            margin: 20px auto 0;
            display: flex;
            padding: 0 20px 0 20px;
        }
        
        .main__left {
            flex: 0 1 280px;
        }
        
        .main__center {
            flex: 0 1 calc(100% - 280px);
            max-width: 984px;
        }
        
        .main__center > * + * {
            margin-top: 20px;
        }
        
        /* Navigation Sidebar */
        .nav {
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 0 16px rgba(1,121,255,0.2);
            position: sticky;
            top: 96px;
        }
        
        .nav__desc {
            font-size: 14px;
            padding: 9px 16px;
            color: #fff;
            background: #0179ff;
            text-transform: uppercase;
            font-weight: 700;
        }
        
        .nav ul {
            background: #fff;
        }
        
        .nav li {
            display: block;
        }
        
        .nav a {
            display: block;
            font-size: 15px;
            padding: 8px 16px;
            color: #19191b;
            transition: all 0.2s;
        }
        
        .nav a:hover {
            color: #d93a0c;
        }

        
        
        /* Info Table */
        .info__wrapper {
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }
        
        .info__wrap {
            flex: 0 1 50%;
            border-radius: 4px;
            background: #fff;
        }
        
        .info__image {
            flex: 0 1 50%;
            border-radius: 4px;
            overflow: hidden;
        }
        
        .info__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Pros Cons */
        .pros-cons {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            margin-top: 20px;
        }
        
        .pros-cons__item {
            flex: 0 1 50%;
            border-radius: 4px;
            background: #fff;
            padding: 20px;
            border: 1px solid #e0e0e0;
        }
        
        .pros-cons__pros {
            border-left: 4px solid #4caf50;
        }
        
        .pros-cons__cons {
            border-left: 4px solid #f44336;
        }
        
        .pros-cons__header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .pros-cons__title {
            font-size: 18px;
            line-height: 24px;
            font-weight: 700;
            color: #19191b;
            text-transform: none;
            text-align: left;
            margin: 0;
        }
        
        .pros-cons__icon {
            font-size: 24px;
        }
        
        .pros-cons__desc {
            margin-bottom: 16px;
            color: #19191b;
            font-size: 15px;
            line-height: 22px;
        }
        
        .pros-cons__list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .pros-cons__list li {
            padding-left: 20px;
            display: block;
            position: relative;
            margin-bottom: 12px;
            color: #19191b;
            font-size: 15px;
            line-height: 22px;
        }
        
        .pros-cons__list li:before {
            content: "";
            width: 6px;
            height: 6px;
            background: #19191b;
            position: absolute;
            left: 0;
            top: 8px;
            border-radius: 50%;
        }
        
        .pros-cons__list li:last-child {
            margin-bottom: 0;
        }
        
        @media (max-width: 768px) {
            .pros-cons {
                flex-direction: column;
            }
            
            .pros-cons__item {
                flex: 1 1 100%;
            }
        }
        
        table {
            width: 100%;
        }
        
        table tr {
            display: flex;
            justify-content: space-between;
            border-bottom: 1px solid #0179ff;
        }
        
        table tr:last-child {
            border-bottom: none;
        }
        
        table td {
            padding: 9px 20px;
            flex: 0 1 50%;
        }
        
        table td:first-child {
            font-weight: 500;
        }
        
        /* Article Content */
        .article {
            text-align: left;
        }
        
        .article > * {
            margin-top: 16px;
        }
        
        .article > *:first-child {
            margin-top: 0;
        }
        
        .article ul li {
            padding-left: 20px;
            display: block;
            position: relative;
        }
        
        .article ul li:before {
            content: "";
            width: 6px;
            height: 6px;
            background: #19191b;
            position: absolute;
            left: 0;
            top: 8px;
            border-radius: 50%;
        }
        
        .article li + li {
            margin-top: 16px;
        }
        
        .article a:not(.button) {
            color: #d93a0c;
        }
        
        /* Article Blockquote */
        .article blockquote {
            margin: 20px 0;
            padding: 20px 24px;
            background: #f5f5f5;
            border-left: 4px solid #0179ff;
            border-radius: 4px;
            font-style: italic;
        }
        
        .article blockquote p {
            margin: 0;
            color: #19191b;
            font-size: 15px;
            line-height: 24px;
        }
        
        /* Article Images */
        .article img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0px auto;
            border-radius: 4px;
        }
        
        /* Article Tables */
        .article table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: #fff;
            border-radius: 4px;
            overflow: hidden;
            display: table;
        }
        
        .article table thead {
            background: #0179ff;
            display: table-header-group;
        }
        
        .article table thead tr {
            display: table-row;
            border-bottom: none;
        }
        
        .article table thead td {
            color: #fff;
            font-weight: 700;
            text-transform: uppercase;
            padding: 12px 20px;
            display: table-cell;
            flex: none;
        }
        
        .article table tbody {
            display: table-row-group;
        }
        
        .article table tbody tr {
            display: table-row;
            border-bottom: 1px solid #e0e0e0;
            justify-content: normal;
        }
        
        .article table tbody tr:last-child {
            border-bottom: none;
        }
        
        .article table tbody td {
            padding: 12px 20px;
            color: #19191b;
            font-size: 15px;
            line-height: 22px;
            display: table-cell;
            flex: none;
        }
        
        .article table tbody tr:nth-child(even) {
            background: #f9f9f9;
        }
        
        .article table tbody tr:hover {
            background: #f5f5f5;
        }
        
        /* Mobile Table Wrapper */
        @media (max-width: 768px) {
            
            .article table {
                display: block;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                width: 100%;
            }
            
            .article table thead,
            .article table tbody,
            .article table tr {
                display: table;
                width: 100%;
                table-layout: auto;
            }
            
            .article table td {
                white-space: normal;
                word-wrap: break-word;
                min-width: 120px;
            }
        }
        
        /* Casino Sites List */
        .sites__list > li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 4px;
            background: #fff;
            box-shadow: 0 0 16px rgba(217,58,12,0.1);
            border: 1px solid #d93a0c;
            padding: 12px 20px;
            margin-top: 16px;
            position: relative;
        }
        
        .sites__list > li:first-child {
            margin-top: 0;
        }
        
        .sites-item__number {
            position: absolute;
            left: 0;
            top: 0;
            padding: 2px 6px;
            width: 40px;
            height: 40px;
            color: #fff;
            font-weight: 700;
        }
        
        .sites-item__number:after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            border-top: 20px solid #0179ff;
            border-left: 20px solid #0179ff;
            border-bottom: 20px solid transparent;
            border-right: 20px solid transparent;
            z-index: -1;
        }
        
        .sites-item__image {
            flex: 0 1 88px;
        }
        
        .sites-item__rating {
            flex: 0 1 130px;
        }
        
        .sites-item__gift {
            flex: 1;
            text-align: center;
            font-weight: 700;
            padding: 0 20px;
        }
        
        .sites-item__buttons {
            flex: 0 1 150px;
            text-align: center;
        }
        
        .sites-item__button.button {
            padding: 7px 10px;
            min-width: 0;
            width: 100%;
        }
        
        /* Image Content */
        .image__content {
            padding: 0;
            background: transparent;
        }
        
        .image__content .image {
            border-radius: 8px;
            overflow: hidden;
            background: #fff;
            position: relative;
        }
        
        .image__content img {
            width: 100%;
            display: block;
        }
        
        .image__button {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }
        
        .image__desc {
            text-align: center;
            font-style: italic;
            margin-top: 12px;
        }
        
        /* FAQ Section */
        .faq__item {
            background: #fff;
            border-radius: 4px;
            overflow: hidden;
            margin-top: 16px;
        }
        
        .faq__item:first-child {
            margin-top: 0;
        }
        
        .faq-item__title {
            background: #0179ff;
            padding: 14px 60px 14px 20px;
            color: #fff;
            text-transform: none;
            text-align: left;
            cursor: pointer;
            position: relative;
        }
        
        .faq-item__title:before {
            content: '';
            position: absolute;
            right: 20px;
            top: calc(50% - 1px);
            height: 2px;
            width: 14px;
            background: #fff;
            border-radius: 2px;
        }
        
        .faq-item__title:after {
            content: '';
            position: absolute;
            right: 26px;
            top: calc(50% - 7px);
            height: 14px;
            width: 2px;
            background: #fff;
            border-radius: 2px;
            transition: all 0.2s;
        }
        
        .faq__item.active .faq-item__title:after {
            transform: rotate(90deg);
        }
        
        .faq-item__answer {
            padding: 8px 20px;
            display: none;
        }
        
        .faq__item.active .faq-item__answer {
            display: block;
        }
        
        /* Footer */
        .footer {
            background: #0179ff;
            color: #e6f3ff;
            margin-top: 20px;
        }
        
        .footer__content {
            background: transparent;
            max-width: 1024px;
        }
        
        .footer__content > * + * {
            margin-top: 16px;
        }
        
        .footer__wrap {
            display: flex;
            justify-content: space-between;
            gap: 30px;
        }
        
        .footer__logo {
            flex: 0 1 120px;
        }
        
        .footer__logo img {
            max-width: 175px;
            display: block;
            margin: 0 auto;
        }
        
        .footer__desc {
            flex: 1;
        }
        
        .footer__menu {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 24px;
        }
        
        .footer__menu a {
            color: #fff;
        }
        
        .footer__menu a:hover {
            text-decoration: underline;
        }
        
        .footer__copyright {
            text-align: center;
            margin-top: 24px;
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .main__wrapper {
                flex-direction: column;
            }
            
            .main__left {
                flex: 1;
                width: 100%;
            }
            
            .main__center {
                flex: 1;
                width: 100%;
                max-width: 100%;
            }
            
            .nav {
                position: static;
            }
        }
        
        @media (max-width: 768px) {
            body {
                margin-top: 60px;
            }
            
            .header__content {
                min-height: 60px;
            }
            
            .header__menu {
                display: none;
            }
            
            h1, .title.general {
                font-size: 28px;
                line-height: 36px;
            }
            
            .cover__image {
                display: none;
            }
            
            .info__wrapper {
                flex-direction: column;
            }
            
            .info__wrap,
            .info__image {
                flex: 1;
                max-width: 100%;
            }
            
            .sites__list > li {
                flex-direction: column;
                gap: 16px;
                padding: 20px;
            }
            
            .sites-item__image,
            .sites-item__rating,
            .sites-item__gift,
            .sites-item__buttons {
                flex: 1;
                width: 100%;
            }
            
        .footer__wrap {
            flex-direction: column;
        }
    }
    
    /* Sticky Banner */
    .sticky-banner {
        position: fixed;
        bottom: -175px;
        left: 20px;
        right: 20px;
        width: auto;
        background: #0156b3;
        border-radius: 12px;
        z-index: 1000;
        transition: bottom 0.3s ease-in-out;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .sticky-banner.show {
        bottom: 15px;
    }
    
    @media (min-width: 1025px) {
        .sticky-banner {
            left: auto;
            right: auto;
        }
    }
    
    .sticky-banner-content {
        display: flex;
        align-items: center;
        padding: 12px 16px;
        gap: 16px;
    }
    
    .sticky-banner-logo {
        flex-shrink: 0;
    }
    
    .sticky-logo {
        width: 60px;
        height: 60px;
        object-fit: contain;
        border-radius: 8px;
    }
    
    .sticky-banner-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    
    .sticky-banner-title {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .brand-name {
        color: #fff;
        font-weight: bold;
        font-size: 18px;
    }
    
    .rating {
        color: #fff;
        font-size: 14px;
    }
    
    .star {
        font-size: 16px;
    }
    
    .sticky-banner-description {
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .fire {
        font-size: 16px;
    }
    
    .description {
        color: #fff;
        font-size: 14px;
        font-weight: 500;
    }
    
    .sticky-banner-subtitle {
        margin-top: -5px;
    }
    
    .subtitle-line1 {
        color: #ccc;
        font-size: 12px;
        line-height: 1.0;
        margin-top: 10px;
    }
    
    .sticky-banner-button {
        flex-shrink: 0;
    }
    
    .jugar-btn {
        background: #d93a0c;
        color: #fff;
        border: none;
        border-radius: 8px;
        padding: 12px 24px;
        font-weight: bold;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        text-transform: uppercase;
        display: inline-block;
        text-decoration: none;
    }
    
    .jugar-btn:hover {
        background: #b82e09;
    }
    
    @media (max-width: 1024px) {
        .sticky-banner {
            left: 10px !important;
            right: 10px;
            width: auto !important;
            bottom: -200px;
        }
        
        .sticky-banner.show {
            bottom: 10px;
        }
        
        .sticky-banner-content {
            padding: 10px 12px;
            gap: 12px;
        }
        
        .sticky-logo {
            width: 50px;
            height: 50px;
        }
        
        .brand-name {
            font-size: 16px;
        }
        
        .rating {
            font-size: 12px;
        }
        
        .star {
            font-size: 14px;
        }
        
        .description {
            font-size: 12px;
        }
        
        .sticky-banner-subtitle {
            margin-top: -8px;
        }
        
        .subtitle-line1 {
            font-size: 10px;
            line-height: 1.2;
        }
        
        .jugar-btn {
            padding: 10px 16px;
            font-size: 14px;
        }
    }