* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #F5F5F5;
    --secondary-bg: #FFFFFF;
    --primary-text: #333333;
    --secondary-text: #666666;
    --accent: #007bff;
    --error: #DC3545;
    --success: #28A745;
    --primary-color: #f16a10;
    --secondary-color: #f58f58;
    --text-color: #333;
    --white: #fff;
    --light-gray: #f5f5f5;
    --dark-gray: #444;
    --shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    --transition: all 0.1s ease;
}

img {
    max-width: 100%;
}

html {
    font-size: 16px;
}

#page {
    margin: 0 auto;
    max-width: 992px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 50px;
    background: #fff;
    overflow: hidden;
}

/* Removed blocks */
.nocomments,
.copyrights,
#cookie-notice {
    display: none;
}

/* Typography */
body {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--primary-text);
    background-color: var(--primary-bg);
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0.5em;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.3rem; }
    h5 { font-size: 1.1rem; }
    h6 { font-size: 1rem; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.4rem; }
    h4 { font-size: 1.2rem; }
    h5 { font-size: 1rem; }
    h6 { font-size: 0.9rem; }
    
    h1, h2, h3, h4, h5, h6 {
        margin-bottom: 0.4em;
        line-height: 1.3;
    }
}

p {
    margin-bottom: 1rem;
}

a {
    color: #df691a;
    text-decoration: none;
    transition: color 0.15s ease;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

ul,
ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
}

blockquote {
    padding: 0.5rem 1rem;
    margin: 0 0 1rem;
    border-left: 5px solid var(--secondary-text);
    font-style: italic;
}

code {
    font-family: monospace;
    background-color: rgba(0, 0, 0, 0.05);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
}

small {
    font-size: 80%;
}

strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    border-bottom: 3px solid var(--primary-color);
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
}

.header__logo {
    display: flex;
    align-items: center;
}

.header__logo-img {
    display: block;
    max-height: 38px;
    width: auto;
}

/* Navigation */
.nav {
    position: relative;
}

.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__item {
    position: relative;
    margin: 0 5px;
}

.nav__link {
    display: inline-block;
    padding: 10px 15px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border-radius: 4px;
}

.nav__link:hover {
    color: var(--primary-color);
    background-color: rgba(241, 106, 16, 0.1);
    text-decoration: none;
}

.nav__link.active {
    color: var(--primary-color);
    background-color: rgba(241, 106, 16, 0.1);
}

.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    min-width: 220px;
    max-width: 80vw;
    display: none;
    list-style: none;
    transform: translateX(-45%);
    transition: var(--transition);
    z-index: 10;
    border-radius: 4px;
    padding: 10px 0;
}

.nav__dropdown--long {
    display: none;
    grid-template-columns: repeat(3, 1fr);
}

.nav__item:hover>.nav__dropdown {
    display: grid;
    transform: translateY(0) translateX(-50%);
}

.nav__dropdown-item:hover>.nav__dropdown--sub {
    display: grid;
    transform: translateX(0);
}

.nav__dropdown-item {
    position: relative;
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 0;
}

.nav__dropdown-link {
    display: block;
    padding: 6px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
    white-space: nowrap;
}

.nav__dropdown-link:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
    text-decoration: none;
}

.nav__dropdown .nav__dropdown,
.nav__dropdown--sub {
    top: 0;
    left: 100%;
    transform: translateX(10px);
}

.nav__dropdown--sub {
    position: absolute;
    background-color: var(--white);
    box-shadow: var(--shadow);
    min-width: 220px;
    list-style: none;
    transition: var(--transition);
    z-index: 11;
    border-radius: 4px;
    padding: 10px 0;
}

.nav__link--has-children::after {
    content: '▼';
    display: inline-block;
    margin-left: 5px;
    font-size: 10px;
    transition: var(--transition);
}

.nav__dropdown-link--has-children {
    display: flex;
    align-items: center;
}

.nav__dropdown-link--has-children::after {
    content: '▶';
    margin-left: 5px;
    font-size: 10px;
}

.header__mobile-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
}

.nav__dropdown-toggle {
    display: none;
    background: none;
    border: none;
    position: absolute;
    right: 0;
    top: 2px;
    width: 40px;
    height: 40px;
    color: var(--text-color);
    cursor: pointer;
    z-index: 5;
}

.nav__dropdown-toggle--sub {
    top: 0;
}

.nav__dropdown-toggle::before {
    content: '+';
    font-size: 18px;
}

.nav__dropdown-toggle.active::before {
    content: '-';
}

@media (max-width: 1024px) {
    .header__container {
        height: 60px;
    }

    .nav__link {
        padding: 10px;
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .nav__dropdown--long {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .nav__item:hover>.nav__dropdown,
    .nav__item:hover>.nav__dropdown--long {
        transform: none;
    }

    .header__container {
        position: relative;
    }

    .header__mobile-btn {
        display: block;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.15s ease;
    }

    .nav.active {
        max-height: 80vh;
        overflow-y: auto;
    }

    .nav__list {
        flex-direction: column;
    }

    .nav__item {
        margin: 0;
        border-bottom: 1px solid var(--light-gray);
    }

    .nav__link {
        padding: 15px 20px;
        display: block;
        width: calc(100% - 50px);
    }

    .nav__link--has-children::after {
        display: none;
    }

    .nav__dropdown-toggle {
        display: block;
    }

    .nav__dropdown,
    .nav__dropdown--sub {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.1s ease;
        column-count: 1;
        max-width: none;
        margin-bottom: 0;
    }

    .nav__dropdown.active,
    .nav__dropdown--sub.active {
        max-height: 50vh;
        overflow-y: auto;
        display: block;
    }

    .nav__dropdown-link {
        padding-left: 40px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .nav__dropdown .nav__dropdown-link {
        padding-left: 35px;
    }

    .nav__dropdown--sub .nav__dropdown-link {
        padding-left: 55px;
    }

    .nav__dropdown-link--has-children::after {
        display: none;
    }

    .nav__dropdown .nav__dropdown {
        padding-left: 0;
    }
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 40px 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer__top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer__section {
    margin-bottom: 20px;
}

.footer__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
    text-transform: uppercase;
}

.footer__nav-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__item {
    margin-bottom: 8px;
}

.footer__link {
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
    transition: var(--transition);
}

.footer__link:hover {
    opacity: 1;
    color: var(--primary-color);
    text-decoration: none;
}

.footer__text {
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer__badges {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__badge {
    margin-left: 15px;
}

.footer__badge img {
    height: 25px;
    width: auto;
    opacity: 0.8;
    transition: var(--transition);
}

.footer__badge img:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer__top {
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer__badges {
        margin-top: 15px;
    }

    .footer__badge {
        margin-left: 0;
        margin-right: 15px;
    }
}

table:not(.tablepress) {
    width: 100%;
    margin-bottom: 1.5em;
    border-collapse: collapse;
    border-spacing: 0;
}

table:not(.tablepress) th,
table:not(.tablepress) td {
    padding: 0.5em 0.75em;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
}

table:not(.tablepress) th {
    background-color: #f5f5f5;
    font-weight: bold;
}

table:not(.tablepress) tr:nth-child(even) {
    background-color: #f9f9f9;
}

table:not(.tablepress) tr:hover {
    background-color: #f0f0f0;
}

table:not(.tablepress) caption {
    font-style: italic;
    margin-bottom: 0.5em;
    text-align: center;
}

.table-wrapper {
    overflow-x: auto;
}

.table-wrapper table {
    width: 100%;
    min-width: 600px;
}

/* CTA List */
.cta-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.cta-cell {
    text-align: center;
    background-color: var(--white);
    border-radius: 6px;
    box-shadow: var(--shadow);
    padding: 15px 10px;
    transition: var(--transition);
}

.cta-cell:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.cta-cell a {
    display: block;
    color: var(--primary-text);
    font-weight: 600;
    text-decoration: none;
}

.cta-cell a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.cta-cell img {
    max-width: 60px;
    height: auto;
    margin-bottom: 10px;
    transition: var(--transition);
}

.cta-cell:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .cta-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .cta-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-cell {
        padding: 10px 5px;
    }
    
    .cta-cell img {
        max-width: 50px;
    }
}

/* TablePress */
table.tablepress {
    width: 100%;
    margin-bottom: 1.5em;
    border-collapse: separate;
    border-spacing: 0 15px;
    background: transparent;
    border: none;
}

table.tablepress br,
table.tablepress thead {
    display: none;
}

table.tablepress tbody tr {
    display: grid;
    grid-template-columns: 20% 25% 30% 25%;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 15px;
    transition: var(--transition);
    align-items: center;
}

table.tablepress tbody tr:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

table.tablepress tbody td {
    padding: 15px;
    border: none;
}

table.tablepress tbody td .hp-tables-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
}

table.tablepress .casino-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

table.tablepress .casino-logo img {
    display: block;
    transition: transform 0.15s ease;
    max-width: 100%;
    height: auto;
}

table.tablepress .casino-logo img:hover {
    transform: scale(1.05);
}

table.tablepress .casino-det {
    display: flex;
    flex-direction: column;
    text-align: center;
}

table.tablepress .casino-det strong {
    color: #0F853C !important;
}

table.tablepress .redeem {
    font-size: 14px;
    margin-top: 5px;
}

table.tablepress .redeem strong {
    color: #0F853C !important;
}

table.tablepress .daily-promotion {
    text-align: center;
}

table.tablepress .check-boxes {
    color: #14a44a;
    font-weight: bold;
}

table.tablepress .hp-tables-playnow {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.15s ease;
}

table.tablepress .hp-tables-playnow:hover {
    background-color: #d85600;
    text-decoration: none;
}

table.tablepress .hp-tables-review {
    display: inline-block;
    color: #666;
    margin-top: 8px;
    font-size: 14px;
    text-decoration: none;
}

table.tablepress .hp-tables-review:hover {
    color: var(--primary-color);
    text-decoration: none;
}

table.tablepress tr:empty,
table.tablepress td:empty {
    display: none;
}

table.tablepress .animated-number {
    display: inline-block;
    color: var(--primary-color);
}

@media (max-width: 768px) {

    table.tablepress tbody tr {
        grid-template-columns: 1fr 1fr 1fr;
    }

    table.tablepress tbody td.column-4 {
        display: none;
    }
    
}

@media (max-width: 480px) {
    table.tablepress tbody td {
        padding: 0px;
    }

    table.tablepress tbody tr {
        margin-bottom: -1px;
        border-radius: 0;
        border: 1px solid #d8d8d8;
    }

    table.tablepress tbody tr:hover {
        transform: none;
    }

    table.tablepress .casino-logo img {
        max-width: 65px;
    }

    table.tablepress .hp-tables-playnow {
        font-size: 12px;
        padding: 6px 12px;
    }

    table.tablepress .hp-tables-review {
        font-size: 13px;
        line-height: normal;
        margin-top: 2px;
    }

    table.tablepress .casino-det,
    table.tablepress .casino-det strong {
        font-size: 12px !important;
        line-height: normal !important;
    }

    table.tablepress .redeem {
        font-size: 13px !important;
        line-height: normal !important;
    }

    table.tablepress tbody td .hp-tables-cell {
        padding-top: 10px;
        padding-bottom: 5px;
    }

    table.tablepress {
        margin-left: -15px;
        width: calc(100% + 30px);
    }
}

#myBtns {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 10px;
    transition: background-color 0.15s ease;
}

#myBtns:hover {
    background-color: #d85600;
    text-decoration: none;
}

/* Review Box */
.cb-skin-base {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin: 20px 0 30px 0;
    overflow: hidden;
}

.cb-review-block {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

.cb-review-pad {
    padding: 10px;
}

.cb-title-block {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
}

.cb-title-block .cb-aff-button {
    margin-left: auto;
}

.cb-review-fi {
    margin-right: 20px;
}

.cb-review-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
}

.cb-criteria-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cb-bar {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 13px;
    background-color: #f5f5f5;
    border-radius: 0;
    overflow: hidden;
    height: 30px;
    margin: 0 10px;
}

.cb-criteria {
    flex: 1;
    margin-top: -3px;
    padding-left: 15px;
    font-weight: 600;
    z-index: 2;
}

.cb-criteria-score {
    width: 40px;
    text-align: center;
    font-weight: bold;
    z-index: 2;
}

.cb-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 1;
}

.cb-overlay span {
    display: block;
    height: 100%;
    background: #25c633 !important;
}

.cb-votes-count {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-left: 10px;
}

.cb-pros-cons-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cb-pros,
.cb-cons {
    background-color: #f9f9f9;
    border-radius: 6px;
    padding: 15px;
}

.cb-block-header {
    padding-bottom: 6px;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    font-weight: 700;
}

.cb-pros-title {
    color: #28A745;
}

.cb-cons-title {
    color: #DC3545;
}

.cb-pros-cons {
    position: relative;
    padding: 3px 8px 3px 30px;
    margin-bottom: 3px;
    background-color: var(--white);
    border-radius: 0;
    font-size: 13px;
    font-weight: 600;
}

.cb-pros-cons::before {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'FontAwesome';
}

.cb-pro::before {
    content: "✔";
    color: #28A745;
}

.cb-con::before {
    content: "✖";
    color: #DC3545;
}

.cb-conclusion-block {
    position: relative;
    text-align: center;
}

.cb-score-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
}

.cb-review-conclusion-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.cb-review-conclusion {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.cb-aff-block {
    text-align: center;
}

.cb-aff-button a {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
}

.cb-aff-button a:hover {
    background-color: #d85600;
    transform: translateY(-2px);
    text-decoration: none;
}

.cb-icon-wrap {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-left: 10px;
    text-align: center;
    line-height: 30px;
    display: none !important;
}

.cb-review-fi img {
    display: block;
    max-width: 150px;
    height: auto;
    width: auto;
    background: #fff;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {

    .cb-title-block {
        flex-wrap: wrap;
    }

    .cb-review-title {
        order: 3;
        width: 100%;
    }

    .cb-pros-cons-block {
        grid-template-columns: 1fr;
    }

    .cb-review-title {
        font-size: 1.5rem;
    }

    .cb-score-box {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .cb-aff-button a {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cb-title-block {
      	min-height: 210px;
        flex-direction: column;
        text-align: center;
    }

    .cb-review-title {
        order: initial;
        font-size: 20px;
        margin-top: -6px;
    }

    .cb-title-block .cb-aff-button {
        margin-left: 0;
        margin-top: 10px;
        margin-bottom: 6px;
    }

    .cb-review-fi {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .cb-bar {
        margin: 0 10px;
    }

    .cb-criteria {
        font-size: 0.9rem;
    }

    .cb-score-box {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
}

/* Breadcrumbs */
#breadcrumbs {
    font-size: 0.875rem;
    margin: 15px 0 5px;
    color: var(--secondary-text);
    display: flex;
    flex-wrap: wrap;
}

#breadcrumbs a {
    margin-right: 10px;
    color: var(--secondary-text);
    text-decoration: none;
    transition: var(--transition);
}

#breadcrumbs a + span {
    margin-left: 10px;
}

#breadcrumbs a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

#breadcrumbs .breadcrumb_last {
    margin-left: 10px;
    color: #BE550E;
    font-weight: 600;
}

#breadcrumbs span {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 480px) {
    #breadcrumbs {
        font-size: 0.8rem;
        margin: 10px 0 20px;
    }
    
    #breadcrumbs a::after,
    #breadcrumbs .breadcrumb_last::before {
        margin: 0 5px;
    }
}

.widget_search {
    display: none;
}

.content {
    display: flex;
    gap: 20px;
}

@media (max-width: 1024px) {
    .content {
        flex-direction: column;
        gap: 0;
    }
    
}

article {
    flex: 1;
    background-color: var(--white);
}

aside {
    margin-top: 25px;
    max-width: 300px;
    background-color: var(--white);
}

@media (max-width: 1024px) {
    aside {
        max-width: 100%;
    }
    
}

.sidebar_list > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Author Widget */
.mks_author_widget {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 20px;
    margin-bottom: 25px;
    text-align: center;
    transition: var(--transition);
}

.mks_author_widget h3 {
    color: var(--primary-text);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.mks_author_widget h3:first-child {
    text-transform: uppercase;
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.mks_author_widget img.avatar {
    border-radius: 50%;
    margin: 0 auto 12px;
    display: block;
    width: 90px;
    height: 90px;
    border: 3px solid var(--light-gray);
    transition: transform 0.15s ease;
}

.mks_author_widget:hover img.avatar {
    transform: scale(1.05);
}

.mks_author_widget p {
    font-size: 0.9rem;
    color: var(--secondary-text);
    line-height: 1.5;
    margin-bottom: 15px;
}

.mks_autor_link_wrap {
    margin-top: 15px;
}

.mks_author_link {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.mks_author_link:hover {
    background-color: #d85600;
    transform: translateY(-2px);
    text-decoration: none;
}

@media (max-width: 768px) {
    .mks_author_widget {
        padding: 15px;
    }
    
    .mks_author_widget img.avatar {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .mks_author_widget h3 {
        font-size: 1.1rem;
    }
    
    .mks_author_widget h3:first-child {
        font-size: 0.9rem;
    }
    
    .mks_author_widget p {
        font-size: 0.85rem;
    }
}

/* Media Image Widget */
.widget_media_image {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 20px;
    margin-bottom: 25px;
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
}

.widget_media_image h3 {
    color: var(--primary-text);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.widget_media_image a {
    display: block;
    transition: var(--transition);
}

.widget_media_image img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    transition: transform 0.15s ease;
}

.widget_media_image:hover img {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .widget_media_image {
        padding: 15px;
    }
    
    .widget_media_image h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .widget_media_image {
        padding: 12px;
    }
    
    .widget_media_image h3 {
        font-size: 0.95rem;
    }
}

.widget_custom_html {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 20px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.widget_custom_html h3 {
    color: var(--primary-text);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.widget_custom_html h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.widget_custom_html .textwidget {
    padding: 5px 0;
}

.widget_custom_html .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.widget_custom_html .tag {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--light-gray);
    color: var(--primary-text);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.widget_custom_html .tag:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    text-decoration: none;
}

@media (max-width: 768px) {
    .widget_custom_html {
        padding: 15px;
    }
    
    .widget_custom_html h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .widget_custom_html .tag {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .widget_custom_html {
        padding: 12px;
    }
    
    .widget_custom_html h3 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .widget_custom_html .tags {
        gap: 8px;
    }
    
    .widget_custom_html .tag {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
}

/* Related Posts */
.related-posts {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 20px;
    margin: 30px 0;
    transition: var(--transition);
}

.related-posts h3 {
    color: var(--primary-text);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 12px;
}

.related-posts h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.related-posts .postauthor-top ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.related-posts .postauthor-top li {
    background-color: var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.related-posts .postauthor-top li:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.related-posts .relatedthumb {
    display: flex;
    flex-direction: column;
    padding: 15px;
    color: var(--primary-text);
    text-decoration: none;
    height: 100%;
}

.related-posts .relatedthumb:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.related-posts .rthumb {
    display: none !important;
}

.related-posts .relatedthumb span {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    display: block;
    margin-bottom: 8px;
}

.related-posts .meta {
    display: none !important;
}

.related-posts .thetime {
    font-style: italic;
}

@media (max-width: 768px) {
    .related-posts .postauthor-top ul {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-posts {
        padding: 15px;
    }
    
    .related-posts h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .related-posts {
        padding: 12px;
        margin: 20px 0;
    }
    
    .related-posts h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .related-posts .postauthor-top ul {
        grid-template-columns: 1fr;
    }
    
    .related-posts .relatedthumb {
        padding: 12px;
    }
    
    .related-posts .relatedthumb span {
        font-size: 0.9rem;
    }
    
    .related-posts .meta {
        font-size: 0.75rem;
        padding: 8px 12px;
        margin-left: -12px;
        margin-right: -12px;
        margin-bottom: -12px;
    }
}

/* Post Info */
.post-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--secondary-text);
    padding: 8px 12px;
    background-color: rgba(245, 245, 245, 0.7);
    border-radius: 4px;
    border-left: 3px solid var(--primary-color);
}

.post-info .theauthor {
    font-weight: 600;
}

.post-info .theauthor a {
    color: var(--primary-text);
    text-decoration: none;
    transition: var(--transition);
}

.post-info .theauthor a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.post-info .thetime {
    font-style: italic;
}

@media (max-width: 480px) {
    .post-info {
        font-size: 0.8rem;
        padding: 6px 10px;
        margin-bottom: 12px;
    }
}

.alignright {
    float: right;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .alignright {
        float: none;
        margin-left: 0;
        margin-top: 10px;
    }

    img.alignright {
        display: block;
        margin: 10px auto;
        float: none;
    }
}

/* Allbrand Casino Styles */
.allbrand-casino {
    margin: 30px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
}

.allbrand-casino > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-gap: 20px;
}

.allbrand-casino > ul > li {
    margin-bottom: 0;
}

.allbrand-casino ul ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.casino-item {
    display: grid;
    grid-template-columns: 25% 45% 30%;
    align-items: center;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 15px;
    transition: var(--transition);
    height: 100%;
}

.casino-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 6px;
    overflow: hidden;
}

.image-wrap img {
    max-width: 100%;
    height: auto;
    max-height: 70px;
    transition: transform 0.15s ease;
}

.casino-item:hover .image-wrap img {
    transform: scale(1.05);
}

.casino-info {
    padding: 0 15px;
    text-align: center;
}

.casino-offer {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-text);
    margin-bottom: 5px;
}

.bonusVal {
    display: block;
    color: #0F853C;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.casino-data {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.Rating {
    position: relative;
}

.Rating ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 3px;
}

.Rating ul li {
    margin: 0;
    color: #f8c51c;
    font-size: 1.1rem;
}

.Rating ul li.full::before {
    content: "★";
}

.Rating ul li.empty::before {
    content: "☆";
}

.Play-now {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.Play-now a {
    text-align: center;
}

.Play-now .btn1 {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    margin-bottom: 8px;
    transition: var(--transition);
}

.Play-now a:hover .btn1 {
    background-color: #d85600;
    text-decoration: none;
}

.Play-now a:last-child {
    font-size: 0.9rem;
    color: var(--secondary-text);
    transition: var(--transition);
}

.Play-now a:last-child:hover {
    color: var(--primary-color);
    text-decoration: none;
}

@media (max-width: 768px) {
    .casino-item {
        grid-template-columns: 1fr 2fr;
        grid-template-rows: auto auto;
    }
    
    .casino-info {
        grid-column: span 2;
        grid-row: 2;
        padding: 15px 0 5px;
    }
    
    .casino-offer {
        font-size: 1rem;
    }
    
    .bonusVal {
        font-size: 0.9rem;
    }
    
    .Rating ul li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .allbrand-casino > ul {
        grid-gap: 15px;
    }
    
    .casino-item {
        padding: 12px;
    }
    
    .image-wrap {
        padding: 5px;
    }
    
    .image-wrap img {
        max-height: 50px;
    }
    
    .casino-offer {
        font-size: 0.95rem;
    }
    
    .bonusVal {
        font-size: 0.85rem;
    }
    
    .Play-now .btn1 {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .Play-now a:last-child {
        font-size: 0.8rem;
    }
    
    .Rating ul li {
        font-size: 0.9rem;
    }
}

/* Display Posts Listing Styles */
.display-posts-listing {
    margin: 25px 0;
}

.display-posts-listing.image-left .listing-item {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 15px;
    transition: var(--transition);
    margin-bottom: 15px;
}

.display-posts-listing.image-left .listing-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.display-posts-listing.image-left .image {
    margin-right: 20px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    width: 150px;
    height: 150px;
    display: block;
}

.display-posts-listing.image-left .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.15s ease;
}

.display-posts-listing.image-left .listing-item:hover .image img {
    transform: scale(1.05);
}

.display-posts-listing.image-left .title {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-text);
    line-height: 1.4;
    text-decoration: none;
}

.display-posts-listing.image-left .title:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.display-posts-listing.image-left .date {
    margin-left: 10px;
    font-style: italic;
    color: var(--secondary-text);
    font-size: 0.9rem;
    margin-right: 5px;
}

.display-posts-listing.image-left .author {
    color: var(--secondary-text);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .display-posts-listing.image-left .listing-item {
        padding: 12px;
    }
    
    .display-posts-listing.image-left .image {
        width: 120px;
        height: 120px;
        margin-right: 15px;
    }
    
    .display-posts-listing.image-left .title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .display-posts-listing.image-left .listing-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px;
    }
    
    .display-posts-listing.image-left .image {
        width: 100%;
        height: auto;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .display-posts-listing.image-left .image img {
        height: auto;
    }
    
    .display-posts-listing.image-left .title {
        margin-bottom: 8px;
        font-size: 0.95rem;
    }
    
    .display-posts-listing.image-left .date,
    .display-posts-listing.image-left .author {
        margin-left: 0;
        font-size: 0.8rem;
    }
}

/* tablepress */
table.tablepress tbody {
    counter-reset: rowCounter;
}

table.tablepress tbody tr {
    position: relative;
    counter-increment: rowCounter;
}

table.tablepress tbody tr::before {
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px 8px;
    color: white;
    font-size: 12px;
    font-weight: bold;
    z-index: 5;
    border-top-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

table.tablepress tbody tr:nth-child(1)::before {
    content: "Best Overall";
    background-color: #ff2600;
    color: #fff;
    text-transform: uppercase;
}

table.tablepress tbody tr:nth-child(2)::before {
    content: "Trusted Choice";
    background-color: #007BFF;
    text-transform: uppercase;
}

table.tablepress tbody tr:nth-child(3)::before {
    content: "Top Bonus";
    background-color: #28a745;
    text-transform: uppercase;
}

table.tablepress tbody tr:nth-child(n+4)::before {
    content: counter(rowCounter);
    background-color: #777777;
}

table.tablepress .payment-methods {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 6px 0 0 0;
    padding: 0;
}

table.tablepress .payment-methods li {
    display: block;
    margin: 0;
    padding: 0;
    border-radius: 4px;
    padding: 4px;
    border: 1px solid #dfdfdf;
}

table.tablepress .payment-methods img {
    display: block;
    width: 28px;
    height: 28px;
    object-fit: contain;
}

table.tablepress .payout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
}

table.tablepress .payout img {
    width: 24px;
    height: 24px;
    object-fit: contain
}

table.tablepress .payout span {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-text);
}

table.tablepress .payout strong {
    font-size: 15px;
    font-weight: bold;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    table.tablepress tbody tr::before {
        padding: 4px 6px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    table.tablepress tbody tr:nth-child(1)::before,
    table.tablepress tbody tr:nth-child(2)::before,
    table.tablepress tbody tr:nth-child(3)::before {
        top: -2px;
    }

    table.tablepress tbody tr::before {
        padding: 3px 5px;
        font-size: 9px;
        top: 2px;
        left: -3px;
    }
    
    table.tablepress tbody tr td:first-child {
        padding-left: 8px;
    }

    table.tablepress .payment-methods {
        margin: 0 0 6px 0;
        gap: 4px;
    }

    table.tablepress .payment-methods img {
        width: 14px;
        height: 12px;
    }

    table.tablepress .payout {
        gap: 2px;
    }

    table.tablepress .payout img {
        width: 16px;
        height: 16px;
    }

    table.tablepress .payout span {
        font-size: 12px;
    }

    table.tablepress .payout strong {
        font-size: 13px;
    }
    
    table.tablepress .payout strong,
    table.tablepress .payout span {
        line-height: 1.2;
    }
}

/* sticky-proposal */
.sticky-proposal {
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: #fff;
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transform: translateY(135%);
    transition: transform 0.3s ease;
}

.sticky-proposal--visible {
    transform: translateY(0);
}

.sticky-proposal__container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-proposal img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.sticky-proposal__close {
    display: block;
    position: absolute;
    top: -40px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    border: none;
    transition: transform 0.15s ease;
    box-shadow: 0 0px 6px rgba(0, 0, 0, 0.2);
}

.sticky-proposal__close::before {
    content: "✖";
    font-size: 20px;
    line-height: 28px;
    text-align: center;
}

.sticky-proposal__close:hover {
    transform: rotate(90deg);
}

.sticky-proposal__header {
    font-size: 20px;
    font-weight: 700;
    color: #292929;
    text-align: center;
}

.sticky-proposal__header .sticky-proposal__logo-link {
    display: none;
}

.sticky-proposal__month {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.sticky-proposal__bonus {
    font-size: 20px;
    font-weight: 700;
    color: #0F853C;
    text-align: center;
}

.sticky-proposal__bonus-title {
    font-size: 16px;
    font-weight: 600;
    color: #292929;
    text-align: center;
}

.sticky-proposal__buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.sticky-proposal__button.sticky-proposal__button--primary {
    background: var(--primary-color);
    color: #fff;
    padding: 9px 20px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.15s ease;
}

.sticky-proposal__button.sticky-proposal__button--primary:hover {
    background: #d85600;
    text-decoration: none;
}

@media (max-width: 768px) {
    .sticky-proposal {
        height: auto;
    }

    .sticky-proposal__container {
        height: auto;
        padding: 10px 6px;
        gap: 6px;
    }

    .sticky-proposal__container > * {
        flex: 1;
    }

    .sticky-proposal__ribbon {
        display: none;
    }

    .sticky-proposal__header {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 15px;
        line-height: 1.2;
        font-weight: 500;
    }

    .sticky-proposal__header .sticky-proposal__logo-link {
        height: 60px;
        display: block;
    }

    .sticky-proposal__month {
        display: none;
    }

    .sticky-proposal__logo-link {
        display: none;
    }

    .sticky-proposal__bonus {
        font-size: 16px;
        line-height: 1.2;
        font-weight: 600;
        text-align: center;
    }

    .sticky-proposal__buttons {
        padding: 0 10px;
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .sticky-proposal__button.sticky-proposal__button--primary {
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
}

/* Email Subscription Styles */
.email-subscription {
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 20px;
    transition: var(--transition);
    border-top: 1px solid #dfdfdf;
}

.email-subscription__container {
    max-width: 600px;
    margin: 0 auto;
}

.email-subscription__title {
    color: var(--primary-text);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.email-subscription__title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.email-subscription__text {
    color: var(--secondary-text);
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 20px;
}

.email-subscription__input-group {
    display: flex;
    margin-bottom: 15px;
}

.email-subscription__input {
    flex: 1;
    height: 40px;
    padding: 0 15px;
    border: 2px solid #dfdfdf;
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-size: 0.9rem;
    color: var(--primary-text);
}

.email-subscription__input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.email-subscription__button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 0 20px;
    height: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.email-subscription__button:hover {
    background-color: #d85600;
}

.email-subscription__privacy {
    font-size: 0.8rem;
    color: var(--secondary-text);
}

.email-subscription__checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.email-subscription__checkbox {
    margin-right: 8px;
    margin-top: 3px;
}

.email-subscription__privacy a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.email-subscription__privacy a:hover {
    text-decoration: underline;
}

/* Exit Intent Popup Styles */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.exit-popup--visible {
    opacity: 1;
    visibility: visible;
}

.exit-popup__container {
    position: relative;
    max-width: 450px;
    width: 90%;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    animation: popup-entrance 0.4s ease-out;
    border-top: 3px solid var(--primary-color);
}

@keyframes popup-entrance {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.exit-popup__close {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    border: none;
    transition: transform 0.15s ease;
    box-shadow: 0 0px 6px rgba(0, 0, 0, 0.2);
}

.exit-popup__close::before {
    content: "✖";
    font-size: 20px;
    line-height: 28px;
    text-align: center;
}

.exit-popup__close:hover {
    transform: rotate(90deg);
}

.exit-popup__header {
    background-color: #f9f9f9;
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.exit-popup__timer {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.exit-popup__timer-label {
    font-size: 0.9rem;
    color: var(--secondary-text);
    margin-bottom: 5px;
}

.exit-popup__timer-display {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    background-color: rgba(241, 106, 16, 0.1);
    padding: 5px 15px;
    border-radius: 4px;
}

.exit-popup__content {
    padding: 20px;
    text-align: center;
}

.exit-popup__title {
    color: var(--primary-text);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.exit-popup__bonus {
    font-size: 1.1rem;
    color: #14a44a;
    margin-bottom: 20px;
    line-height: 1.4;
}

.exit-popup__features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.exit-popup__feature {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--primary-text);
    font-size: 1rem;
}

.exit-popup__icon {
    flex-shrink: 0;
    margin-right: 10px;
}

.exit-popup__button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
}

.exit-popup__button:hover {
    background-color: #d85600;
    transform: translateY(-2px);
    text-decoration: none;
}

.exit-popup__logo {
    display: flex;
    justify-content: center;
}

.exit-popup__logo img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .exit-popup__container {
        width: 85%;
    }
}

@media (max-width: 480px) {
    .exit-popup__container {
        width: 95%;
    }
    
    .exit-popup__title {
        font-size: 1.2rem;
    }
    
    .exit-popup__bonus {
        font-size: 1rem;
    }
    
    .exit-popup__timer-display {
        font-size: 1.3rem;
    }
    
    .exit-popup__button {
        width: 100%;
        padding: 10px 15px;
        font-size: 1rem;
    }
}

.comparison-table-wrapper {
    overflow: hidden;
    background: #ffffff;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--primary-text);
    background: transparent;
    margin-bottom: 0 !important;
}

.comparison-table td {
    border: none !important;
}

.comparison-table th {
    padding: 20px 15px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none !important;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    background: none !important;
}

.comparison-table .col-accent {
    font-weight: 600;
    font-size: 14px;
}

.comparison-table tr:hover {
    background: none !important;
}

.comparison-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: none !important;
}

.comparison-table td {
    padding: 18px 15px;
    text-align: center;
    border: none;
    vertical-align: middle;
    font-weight: 500;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--primary-text);
    background: rgba(245, 245, 245, 0.5);
    background: none !important;
}

.comparison-table th:nth-child(2),
.comparison-table td:nth-child(2) {
    background: rgba(255, 221, 221, 0.3) !important;
}

.comparison-table th:nth-child(3),
.comparison-table td:nth-child(3) {
    background: rgba(230, 255, 216, 0.3) !important;
}

.status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 25px;
    font-weight: 500;
    min-width: 60px;
    height: 27px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.status-yes {
    color: #45a049;
    border: 1px solid rgba(76, 175, 80, 0.3);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.status-yes:hover {
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.status-no {
    color: #d32f2f;
    border: 1px solid rgba(244, 67, 54, 0.3);
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.3);
}

.status-no:hover {
    box-shadow: 0 6px 20px rgba(244, 67, 54, 0.4);
}

.ico {
    font-size: 13px;
    font-weight: bold;
}

.badge-num {
    border: 1px solid rgba(241, 106, 16, 0.3);
    color: var(--primary-color);
    border-radius: 38px;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    min-width: 60px;
    height: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(241, 106, 16, 0.3);
    transition: all 0.3s ease;
}

.badge-num:hover {
    box-shadow: 0 6px 20px rgba(241, 106, 16, 0.4);
}

.comparison-table-btn {
    display: inline-flex;
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 80px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.comparison-table-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.comparison-table-btn:hover {
    background: linear-gradient(135deg, #388E3C 0%, #4CAF50 100%);
    box-shadow: 0 6px 12px rgba(76, 175, 80, 0.4);
    text-decoration: none;
}

.comparison-table-btn:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .table-wrapper {
        padding: 15px;
        margin: 20px 0;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-table th {
        padding: 15px 10px;
        font-size: 16px;
    }
    
    .comparison-table td {
        padding: 15px 10px;
    }
    
    .status {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .badge-num {
        padding: 8px 16px;
        font-size: 14px;
        min-width: 50px;
    }
}

@media (max-width: 480px) {
    .table-wrapper {
        padding: 10px;
        margin: 15px 0;
    }
    
    .comparison-table {
        font-size: 12px;
    }
    
    .comparison-table th {
        padding: 12px 8px;
        font-size: 14px;
    }
    
    .comparison-table td {
        padding: 12px 8px;
    }
    
    .comparison-table td:first-child {
        text-align: center;
    }
    
    .status {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .badge-num {
        padding: 6px 12px;
        font-size: 12px;
        min-width: 40px;
    }

    .comparison-table-btn {
        padding: 9px 15px;
        font-size: 14px;
    }
}

.casino-recommendation-wrap {
    margin: 15px 0;
    padding: 0 10px;
}

.casino-recommendation-block {
    border: 2px solid #f16a10;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
    box-shadow: 0 4px 12px rgba(241, 106, 16, 0.1);
}

.recommendation-notice {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    color: #856404;
}

.recommendation-notice p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.recommendation-notice .recommend {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #28a745;
    color: #fff;
    border-radius: 4px;
    padding: 0px 8px 2px 8px;
    font-size: 14px;
    font-weight: 600;
}

.recommendation-notice .not-recommend {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f04b4b;
    color: #fff;
    border-radius: 4px;
    padding: 0px 8px 2px 8px;
    font-size: 14px;
    font-weight: 600;
}

.recommendation-action {
    text-align: center;
    margin-top: 20px;
}

.recommendation-action .comparison-table-btn {
    background-color: #f16a10;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.recommendation-action .comparison-table-btn:hover {
    background-color: #e55a0a;
    color: #fff;
}

@media (max-width: 480px) {
    .casino-recommendation-block {
        padding: 15px;
    }

    .recommendation-notice p {
        font-size: 14px;
    }

    .recommendation-action .comparison-table-btn {
        width: 100%;
        padding: 10px;
        font-size: 14px;
    }
    
}