/*
Theme Name: Casino Online Uruguay Revista
Theme URI: https://guiacasinosuy.com
Author: Web Developer
Description: Custom light SEO theme for Uruguay sports betting and casino market.
Version: 1.0.0
Tested up to: 6.5
Requires PHP: 7.4
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #0f172a;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    color: #00a2e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #059669;
}

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

.site-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex-grow: 1;
    padding-top: 70px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

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

.site-logo a {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.site-logo span {
    color: #00a2e8;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 24px;
}

.desktop-menu a {
    color: #334155;
    font-weight: 500;
    font-size: 15px;
}

.desktop-menu a:hover {
    color: #00a2e8;
}

.header-search-form {
    display: flex;
    align-items: center;
    position: relative;
}

.header-search-form input[type="search"] {
    padding: 8px 12px;
    padding-right: 35px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    width: 200px;
    transition: border-color 0.3s ease, width 0.3s ease;
}

.header-search-form input[type="search"]:focus {
    border-color: #00a2e8;
    width: 240px;
}

.header-search-form button {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-search-form svg {
    width: 16px;
    height: 16px;
    fill: #64748b;
}

.burger-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 100001;
}

.burger-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #0f172a;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.lightbox-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 100000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.lightbox-nav.is-open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-container {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.lightbox-nav .header-search-form input[type="search"] {
    width: 100%;
    padding: 14px 16px;
    padding-right: 45px;
    font-size: 16px;
    border-radius: 8px;
}

.lightbox-nav .header-search-form input[type="search"]:focus {
    width: 100%;
}

.lightbox-nav .header-search-form button {
    right: 15px;
}

.lightbox-nav .header-search-form svg {
    width: 20px;
    height: 20px;
}

.lightbox-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.lightbox-menu a {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
}

.burger-menu-btn.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-menu-btn.is-active span:nth-child(2) {
    opacity: 0;
}

.burger-menu-btn.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

body.is-front-page h1 {
    display: none !important;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.post-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.post-card-content {
    padding: 20px;
}

.post-card h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.post-card h2 a {
    color: #0f172a;
}

.post-card h2 a:hover {
    color: #00a2e8;
}

.post-card p {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 15px;
}

.site-footer {
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 60px 0 30px;
    color: #334155;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-info-block h4 {
    color: #0f172a;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
}

.footer-contact-item span:first-child {
    font-weight: 600;
    color: #0f172a;
}

.footer-badge-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 15px;
}

.badge-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 3px solid #dc2626;
    color: #dc2626;
    border-radius: 50%;
    font-weight: 800;
    font-size: 18px;
}

.responsible-text {
    font-size: 12px;
    color: #64748b;
    text-align: right;
    max-width: 250px;
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copy {
    color: #64748b;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #64748b;
}

.footer-links a:hover {
    color: #00a2e8;
}

@media (max-width: 991px) {
    .desktop-nav {
        display: none;
    }
    .burger-menu-btn {
        display: flex;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-badge-block {
        align-items: flex-start;
    }
    .responsible-text {
        text-align: left;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 320px) {
    .site-logo a {
        font-size: 17px;
    }
    .site-header {
        height: 60px;
    }
    .main-content {
        padding-top: 60px;
    }
}

.lightbox-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100002;
}

.lightbox-close-btn svg {
    width: 32px;
    height: 32px;
    fill: #0f172a;
    transition: fill 0.3s ease;
}

.lightbox-close-btn inline-flex:hover svg {
    fill: #00a2e8;
}

.admin-bar .lightbox-close-btn {
    top: 52px;
}

@media (max-width: 782px) {
    .admin-bar .lightbox-close-btn {
        top: 66px;
    }
}

@media (max-width: 320px) {
    .lightbox-close-btn {
        top: 15px;
        right: 15px;
    }
}

.hero-section {
    position: relative;
    width: 100%;
    height: 450px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.95) 30%, rgba(255, 255, 255, 0.4) 100%), url('http://casinorevista.com/wp-content/uploads/Casino-Online-Uruguay-Tendencias-Bonos-y-Mejores-Operadores-en-2026.webp');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 60px;
    margin: 30px 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.hero-content {
    max-width: 650px;
    width: 100%;
}

.hero-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -1px;
}

@media (max-width: 991px) {
    .hero-section {
        height: 380px;
        padding: 0 40px;
    }
    .hero-content h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 320px;
        background-image: linear-gradient(to top, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.7) 100%), url('http://casinorevista.com/wp-content/uploads/Casino-Online-Uruguay-Tendencias-Bonos-y-Mejores-Operadores-en-2026.webp');
        padding: 30px;
        align-items: flex-end;
    }
    .hero-content h1 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: auto;
        min-height: 280px;
        padding: 20px;
        margin: 15px 0;
    }
    .hero-content h1 {
        font-size: 22px;
    }
}

@media (max-width: 300px) {
    .hero-section {
        padding: 15px;
        min-height: 240px;
    }
    .hero-content h1 {
        font-size: 19px;
    }
}

.intro-section {
    margin-bottom: 40px;
}

.article-body {
    margin: 0 auto;
}

.article-body p {
    font-size: 16px;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

@media (max-width: 768px) {
    .article-body p {
        font-size: 15px;
        margin-bottom: 15px;
        text-align: left;
    }
}

@media (max-width: 300px) {
    .article-body p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 12px;
    }
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 30px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.content-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: #0f172a;
    margin-top: 25px;
    margin-bottom: 12px;
}

.content-section p {
    font-size: 16px;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 20px;
}

.cta-box {
    background-color: #f0f9ff;
    border-left: 4px solid #00a2e8;
    border-top: 1px solid #e0f2fe;
    border-right: 1px solid #e0f2fe;
    border-bottom: 1px solid #e0f2fe;
    border-radius: 0 8px 8px 0;
    padding: 24px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-content p {
    font-size: 16px;
    font-weight: 600;
    color: #0369a1;
    margin-bottom: 0;
}

.btn-cta {
    display: inline-block;
    background-color: #059669;
    color: #ffffff;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 6px;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #047857;
    color: #ffffff;
}

@media (max-width: 768px) {
    .content-section h2 {
        font-size: 24px;
    }
    .content-section h3 {
        font-size: 18px;
    }
    .cta-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        border-radius: 4px;
        border-left: 4px solid #00a2e8;
    }
    .btn-cta {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 300px) {
    .content-section h2 {
        font-size: 20px;
    }
    .content-section h3 {
        font-size: 16px;
    }
    .content-section p, .cta-content p {
        font-size: 14px;
    }
    .cta-box {
        padding: 15px;
    }
    .btn-cta {
        padding: 10px 16px;
    }
}

.content-section {
    margin-top: 40px;
    margin-bottom: 50px;
}

.content-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 40px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.content-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 35px;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

.content-section p {
    font-size: 16px;
    color: #334155;
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 20px;
}

.editorial-list {
    margin-top: 0;
    margin-bottom: 30px;
    padding-left: 24px;
}

.editorial-list li {
    font-size: 16px;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 12px;
}

.operators-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
    width: 100%;
}

.operator-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.operator-card:hover {
    transform: translateY(-2px);
    border-color: #00a2e8;
    box-shadow: 0 8px 24px rgba(0, 162, 232, 0.05);
}

.operator-header {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 180px;
}

.operator-name {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
}

.operator-badge {
    background-color: #0f172a;
    color: #00ffcc;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #00ffcc;
}

.operator-details {
    display: flex;
    gap: 40px;
    flex-grow: 1;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    font-weight: 600;
}

.detail-value {
    font-size: 15px;
    color: #1e293b;
    font-weight: 500;
}

.btn-operator {
    display: inline-block;
    background-color: #0f172a;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 6px;
    text-align: center;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-operator:hover {
    background-color: #00a2e8;
    color: #ffffff;
}

@media (max-width: 991px) {
    .operator-card {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 15px;
    }
    .operator-header {
        justify-content: space-between;
        min-width: auto;
    }
    .operator-details {
        flex-direction: column;
        gap: 10px;
        border-top: 1px solid #f1f5f9;
        border-bottom: 1px solid #f1f5f9;
        padding: 12px 0;
    }
    .btn-operator {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .content-section h2 {
        font-size: 26px;
    }
    .content-section h3 {
        font-size: 20px;
    }
}

@media (max-width: 300px) {
    .content-section h2 {
        font-size: 22px;
    }
    .content-section h3 {
        font-size: 18px;
    }
    .content-section p, .editorial-list li {
        font-size: 14px;
    }
    .operator-name {
        font-size: 18px;
    }
}

.editorial-list {
    margin-top: 0;
    margin-bottom: 30px;
    padding-left: 24px;
    list-style-type: cubic-bezier;
}

.editorial-list li {
    font-size: 16px;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 12px;
}

@media (max-width: 300px) {
    .editorial-list {
        padding-left: 18px;
    }
    .editorial-list li {
        font-size: 14px;
        line-height: 1.6;
    }
}

.crypto-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 15px;
    margin-bottom: 30px;
}

.crypto-adv-item {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.crypto-adv-item strong {
    font-size: 16px;
    color: #0f172a;
    font-weight: 700;
}

.crypto-adv-item span {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .crypto-advantages {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 25px;
    }
    .crypto-adv-item {
        padding: 15px;
    }
}

@media (max-width: 300px) {
    .crypto-adv-item strong {
        font-size: 14px;
    }
    .crypto-adv-item span {
        font-size: 13px;
        line-height: 1.5;
    }
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 40px;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 24px;
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.4;
}

.faq-answer p {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .faq-item {
        padding: 16px;
    }
    .faq-question {
        font-size: 16px;
    }
    .faq-answer p {
        font-size: 14px;
    }
}

@media (max-width: 300px) {
    .faq-list {
        gap: 12px;
    }
    .faq-item {
        padding: 12px;
    }
    .faq-question {
        font-size: 15px;
        margin-bottom: 8px;
    }
}

html {
    scroll-behavior: smooth;
}

body.admin-bar .site-main {
    margin-top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-main {
        margin-top: 46px;
    }
}

.page-header, .post-header {
    margin-bottom: 25px;
}

.page-title, .post-title {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin: 0 0 15px 0;
}

.post-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #64748b;
}

.post-meta a {
    color: #00a2e8;
    font-weight: 600;
}

.post-meta a:hover {
    color: #0f172a;
}

.post-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.post-toc-container {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    max-width: 100%;
}

.toc-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 8px;
}

.toc-list li:last-child {
    margin-bottom: 0;
}

.toc-link {
    font-size: 15px;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
}

.toc-link:hover {
    color: #00a2e8;
}

.post-content {
    width: 100%;
}

.related-posts-section {
    margin-top: 50px;
    border-top: 1px solid #e2e8f0;
    padding-top: 35px;
}

.related-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 25px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.related-post-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.related-thumb-link {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 6px;
    overflow: hidden;
    background-color: #f1f5f9;
}

.related-post-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.related-post-item:hover .related-post-thumb {
    transform: scale(1.04);
}

.related-thumb-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e2e8f0;
}

.related-post-item-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.related-post-item-title a {
    color: #1e293b;
    text-decoration: none;
}

.related-post-item-title a:hover {
    color: #00a2e8;
}

@media (max-width: 991px) {
    .related-posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .related-post-item:nth-child(4),
    .related-post-item:nth-child(5) {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-title, .post-title {
        font-size: 26px;
    }
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .related-post-item:nth-child(3) {
        display: none;
    }
}

@media (max-width: 480px) {
    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .related-post-item, .related-post-item:nth-child(3), .related-post-item:nth-child(4), .related-post-item:nth-child(5) {
        display: flex;
    }
}

@media (max-width: 300px) {
    .page-title, .post-title {
        font-size: 20px;
    }
    .post-meta {
        flex-direction: column;
        gap: 6px;
    }
    .toc-link {
        font-size: 13px;
    }
    .related-post-item-title {
        font-size: 13px;
    }
}

.archive-header {
    margin-bottom: 35px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 20px;
}

.archive-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin: 0;
}

.archive-title span {
    color: #00a2e8;
}

.archive-description, .search-no-results-p {
    margin-top: 10px;
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

.posts-archive-loop {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.archive-post-card {
    display: flex;
    gap: 25px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    align-items: center;
}

.archive-card-thumb {
    display: block;
    width: 240px;
    min-width: 240px;
    aspect-ratio: 16 / 10;
    border-radius: 6px;
    overflow: hidden;
    background-color: #f1f5f9;
}

.archive-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.archive-thumb-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e2e8f0;
}

.archive-card-content {
    flex-grow: 1;
}

.archive-card-meta {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
}

.archive-card-meta a {
    color: #00a2e8;
    font-weight: 600;
}

.archive-card-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 10px 0;
}

.archive-card-title a {
    color: #0f172a;
    text-decoration: none;
}

.archive-card-title a:hover {
    color: #00a2e8;
}

.archive-card-excerpt p {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.theme-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px 0;
}

.theme-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 6px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
}

.theme-pagination .page-numbers.current {
    background-color: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

.theme-pagination .page-numbers:hover:not(.current) {
    border-color: #00a2e8;
    color: #00a2e8;
}

.author-profile-header {
    display: flex;
    gap: 25px;
    align-items: center;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 35px;
}

.author-avatar-box img {
    border-radius: 50%;
    display: block;
}

.author-profile-name {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.author-profile-bio {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.error-404-block {
    text-align: center;
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.error-title {
    font-size: 96px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
    margin: 0 0 10px 0;
    letter-spacing: -2px;
}

.error-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 15px 0;
}

.error-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.error-search-form {
    display: flex;
    gap: 10px;
    margin: 0 auto 30px auto;
    max-width: 450px;
    width: 100%;
}

.error-search-form input {
    flex-grow: 1;
    height: 46px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0 15px;
    font-size: 15px;
    background-color: #ffffff;
}

.error-search-form button {
    height: 46px;
    background-color: #0f172a;
    color: #ffffff;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    padding: 0 20px;
    cursor: pointer;
    white-space: nowrap;
}

.error-search-form button:hover {
    background-color: #00a2e8;
}

.btn-back-home {
    display: inline-block;
    background-color: #f1f5f9;
    color: #0f172a;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
}

.btn-back-home:hover {
    background-color: #e2e8f0;
}

@media (max-width: 768px) {
    .archive-post-card {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 15px;
    }
    .archive-card-thumb {
        width: 100%;
        min-width: auto;
    }
    .archive-title {
        font-size: 26px;
    }
    .author-profile-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .error-title {
        font-size: 72px;
    }
}

@media (max-width: 480px) {
    .error-search-form {
        flex-direction: column;
        gap: 8px;
    }
    .error-search-form input, .error-search-form button {
        width: 100%;
    }
}

@media (max-width: 300px) {
    .archive-title {
        font-size: 20px;
    }
    .archive-card-title {
        font-size: 17px;
    }
    .archive-card-excerpt p, .author-profile-bio, .error-text {
        font-size: 13px;
    }
    .author-profile-name {
        font-size: 18px;
    }
    .error-title {
        font-size: 56px;
    }
    .error-subtitle {
        font-size: 18px;
    }
}

.ury-market-trends-sec {
    margin-top: 45px;
    margin-bottom: 55px;
    width: 100%;
}

.ury-main-heading {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-top: 0;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.ury-content-wrapper {
    width: 100%;
}

.ury-paragraph-accent {
    font-size: 17px;
    line-height: 1.75;
    color: #0f172a;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 22px;
}

.ury-paragraph-regular {
    font-size: 16px;
    line-height: 1.7;
    color: #334155;
    margin-top: 0;
    margin-bottom: 20px;
}

.ury-inline-cta-box {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #059669;
    border-radius: 4px 8px 8px 4px;
    padding: 22px 24px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ury-inline-cta-text {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.5;
}

.ury-inline-cta-btn {
    display: inline-block;
    background-color: #059669;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.ury-inline-cta-btn:hover {
    background-color: #047857;
    color: #ffffff;
}

@media (max-width: 991px) {
    .ury-inline-cta-box {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 18px;
    }
    .ury-inline-cta-btn {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .ury-main-heading {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .ury-paragraph-accent {
        font-size: 16px;
    }
    .ury-paragraph-regular {
        font-size: 15px;
    }
}

@media (max-width: 300px) {
    .ury-main-heading {
        font-size: 21px;
    }
    .ury-paragraph-accent, .ury-paragraph-regular, .ury-inline-cta-text {
        font-size: 14px;
    }
    .ury-inline-cta-box {
        padding: 12px;
        margin: 20px 0;
    }
    .ury-inline-cta-btn {
        padding: 10px 16px;
    }
}

.ury-best-casinos-sec {
    margin-bottom: 50px;
    width: 100%;
}

.ury-best-heading {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 40px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.ury-best-text {
    font-size: 16px;
    line-height: 1.7;
    color: #334155;
    margin-top: 0;
    margin-bottom: 20px;
}

.ury-best-text-lead {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 25px;
    margin-bottom: 20px;
}

.ury-best-cards-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.ury-best-card-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ury-best-card-item:hover {
    border-color: #00a2e8;
    box-shadow: 0 6px 20px rgba(0, 162, 232, 0.05);
}

.ury-best-card-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 16px;
}

.ury-best-brand-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ury-best-brand-name {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.ury-best-license-tag {
    display: inline-block;
    align-self: flex-start;
    background-color: #f1f5f9;
    color: #475569;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
}

.ury-best-bonus-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 4px;
}

.ury-best-bonus-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.ury-best-bonus-val {
    font-size: 16px;
    font-weight: 800;
    color: #059669;
}

.ury-best-card-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ury-best-detail-row {
    font-size: 15px;
    line-height: 1.5;
    color: #334155;
}

.ury-best-detail-row strong {
    color: #0f172a;
    font-weight: 600;
}

.ury-best-card-action {
    margin-top: 4px;
}

.ury-best-btn {
    display: block;
    width: 100%;
    background-color: #0f172a;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 20px;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.ury-best-btn:hover {
    background-color: #00a2e8;
    color: #ffffff;
}

@media (max-width: 768px) {
    .ury-best-heading {
        font-size: 26px;
    }
    .ury-best-card-main {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .ury-best-bonus-box {
        align-items: flex-start;
        text-align: left;
        background-color: #f8fafc;
        padding: 10px;
        border-radius: 6px;
    }
}

@media (max-width: 300px) {
    .ury-best-heading {
        font-size: 21px;
    }
    .ury-best-text, .ury-best-text-lead, .ury-best-detail-row {
        font-size: 14px;
    }
    .ury-best-card-item {
        padding: 12px;
        gap: 12px;
    }
    .ury-best-brand-name {
        font-size: 18px;
    }
    .ury-best-bonus-val {
        font-size: 14px;
    }
    .ury-best-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}

.ury-bonus-glossary-sec {
    margin-bottom: 55px;
    width: 100%;
}

.ury-bonus-heading {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 40px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.ury-bonus-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #334155;
    margin-top: 0;
    margin-bottom: 30px;
}

.ury-bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    margin-bottom: 30px;
}

.ury-bonus-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-sizing: border-box;
}

.ury-bonus-term {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

.ury-bonus-definition {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
}

.ury-bonus-summary {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    font-style: italic;
    margin-top: 0;
    margin-bottom: 35px;
}

.ury-bonus-cta-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
}

.ury-bonus-cta-p {
    font-size: 16px;
    line-height: 1.7;
    color: #1e293b;
    margin: 0;
}

.ury-bonus-cta-link {
    display: block;
    width: 100%;
    background-color: #059669;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 24px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    transition: background-color 0.2s ease;
}

.ury-bonus-cta-link:hover {
    background-color: #047857;
    color: #ffffff;
}

@media (max-width: 991px) {
    .ury-bonus-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .ury-bonus-heading {
        font-size: 26px;
    }
    .ury-bonus-cta-card {
        padding: 20px;
    }
}

@media (max-width: 300px) {
    .ury-bonus-heading {
        font-size: 21px;
    }
    .ury-bonus-intro, .ury-bonus-summary, .ury-bonus-cta-p {
        font-size: 14px;
    }
    .ury-bonus-item {
        padding: 12px;
        gap: 6px;
    }
    .ury-bonus-term {
        font-size: 15px;
    }
    .ury-bonus-definition {
        font-size: 13px;
    }
    .ury-bonus-cta-link {
        padding: 10px 16px;
        font-size: 14px;
    }
}

.ury-games-trending-sec {
    margin-bottom: 50px;
    width: 100%;
}

.ury-games-heading {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 40px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.ury-games-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #334155;
    margin-top: 0;
    margin-bottom: 20px;
}

.ury-games-lead {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 25px;
    margin-bottom: 20px;
}

.ury-games-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    margin-bottom: 25px;
}

.ury-games-cat-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 24px;
    box-sizing: border-box;
}

.ury-games-cat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.ury-games-cat-icon {
    font-size: 24px;
    line-height: 1;
}

.ury-games-cat-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.ury-games-cat-text {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

.ury-games-footer-text {
    font-size: 16px;
    line-height: 1.7;
    color: #334155;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .ury-games-heading {
        font-size: 26px;
    }
    .ury-games-categories-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .ury-games-cat-card {
        padding: 16px;
    }
}

@media (max-width: 300px) {
    .ury-games-heading {
        font-size: 21px;
    }
    .ury-games-intro, .ury-games-lead, .ury-games-footer-text {
        font-size: 14px;
    }
    .ury-games-cat-title {
        font-size: 16px;
    }
    .ury-games-cat-text {
        font-size: 13px;
    }
    .ury-games-cat-card {
        padding: 12px;
    }
}

.ury-payments-sec {
    margin-bottom: 50px;
    width: 100%;
}

.ury-payments-heading {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 40px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.ury-payments-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #334155;
    margin-top: 0;
    margin-bottom: 20px;
}

.ury-payments-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 25px;
}

.ury-payments-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.ury-payments-card:hover {
    border-color: #00a2e8;
}

.ury-payments-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.ury-payments-card-icon {
    font-size: 22px;
    line-height: 1;
}

.ury-payments-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.ury-payments-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

@media (max-width: 768px) {
    .ury-payments-heading {
        font-size: 26px;
    }
    .ury-payments-card {
        padding: 16px;
    }
}

@media (max-width: 300px) {
    .ury-payments-heading {
        font-size: 21px;
    }
    .ury-payments-intro {
        font-size: 14px;
    }
    .ury-payments-card-title {
        font-size: 16px;
    }
    .ury-payments-card-text {
        font-size: 13px;
    }
    .ury-payments-card {
        padding: 12px;
    }
}

.ury-mobile-innovations-sec, .ury-future-2026-sec {
    margin-bottom: 50px;
    width: 100%;
}

.ury-mob-heading {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 40px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.ury-mob-text {
    font-size: 16px;
    line-height: 1.7;
    color: #334155;
    margin-top: 0;
    margin-bottom: 20px;
}

.ury-mob-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
    margin-bottom: 25px;
    width: 100%;
}

.ury-mob-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ury-mob-benefit-dot {
    width: 6px;
    height: 6px;
    min-width: 6px;
    background-color: #00a2e8;
    border-radius: 50%;
    margin-top: 10px;
}

.ury-mob-benefit-p {
    font-size: 15px;
    line-height: 1.6;
    color: #334155;
    margin: 0;
}

.ury-future-cta-card {
    background: #0f172a;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 30px;
}

.ury-future-cta-p {
    font-size: 16px;
    line-height: 1.7;
    color: #f1f5f9;
    margin: 0;
}

.ury-future-cta-btn {
    display: block;
    width: 100%;
    background-color: #059669;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 24px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    transition: background-color 0.2s ease;
}

.ury-future-cta-btn:hover {
    background-color: #047857;
    color: #ffffff;
}

@media (max-width: 768px) {
    .ury-mob-heading {
        font-size: 26px;
    }
    .ury-future-cta-card {
        padding: 20px;
    }
}

@media (max-width: 300px) {
    .ury-mob-heading {
        font-size: 21px;
    }
    .ury-mob-text, .ury-future-cta-p, .ury-mob-benefit-p {
        font-size: 14px;
    }
    .ury-future-cta-card {
        padding: 12px;
        gap: 16px;
    }
    .ury-future-cta-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}

.ury-faq-final-sec {
    margin-bottom: 60px;
    width: 100%;
}

.ury-faq-heading {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 40px;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.ury-faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.ury-faq-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 24px;
    box-sizing: border-box;
}

.ury-faq-question {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 1.4;
}

.ury-faq-answer p {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin-top: 0;
    margin-bottom: 12px;
}

.ury-faq-answer p:last-child {
    margin-bottom: 0;
}

.ury-faq-steps-list {
    margin: 12px 0 0 0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ury-faq-steps-list li {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
}

@media (max-width: 768px) {
    .ury-faq-heading {
        font-size: 26px;
    }
    .ury-faq-card {
        padding: 16px;
    }
    .ury-faq-question {
        font-size: 16px;
    }
}

@media (max-width: 300px) {
    .ury-faq-heading {
        font-size: 21px;
    }
    .ury-faq-question {
        font-size: 15px;
    }
    .ury-faq-answer p, .ury-faq-steps-list li {
        font-size: 13px;
    }
    .ury-faq-card {
        padding: 12px;
    }
    .ury-faq-steps-list {
        padding-left: 16px;
    }
}

.ury-content-zone {
    width: 100%;
}

.ury-content-zone p {
    font-size: 16px;
    line-height: 1.7;
    color: #334155;
    margin-top: 0;
    margin-bottom: 20px;
}

.ury-content-zone p:last-child {
    margin-bottom: 0;
}

.ury-content-zone h1,
.ury-content-zone h2,
.ury-content-zone h3,
.ury-content-zone h4,
.ury-content-zone h5,
.ury-content-zone h6 {
    color: #0f172a;
    font-weight: 800;
    line-height: 1.25;
    margin-top: 35px;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.ury-content-zone h1 { font-size: 32px; }
.ury-content-zone h2 { font-size: 28px; }
.ury-content-zone h3 { font-size: 24px; }
.ury-content-zone h4 { font-size: 20px; }

.ury-content-zone img,
.ury-content-zone .wp-block-image img,
.ury-content-zone figure {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box;
}

.ury-content-zone ul,
.ury-content-zone ol {
    margin-top: 0;
    margin-bottom: 20px;
    padding-left: 24px;
}

.ury-content-zone li {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .ury-content-zone p {
        font-size: 15px;
    }
    .ury-content-zone h1 { font-size: 28px; }
    .ury-content-zone h2 { font-size: 24px; }
    .ury-content-zone h3 { font-size: 21px; }
}

@media (max-width: 300px) {
    .ury-content-zone p,
    .ury-content-zone li {
        font-size: 14px;
    }
    .ury-content-zone h1 { font-size: 22px; }
    .ury-content-zone h2 { font-size: 20px; }
    .ury-content-zone h3 { font-size: 18px; }
    .ury-content-zone ul,
    .ury-content-zone ol {
        padding-left: 16px;
    }
}