/* Riobet Casino - Main Styles */

:root {
    --color-header: #0d2f56;
    --color-btn-login: #5B695F;
    --color-btn-signup: #2F8637;
    --color-bg: #0C220E;
    --color-text: #e8e8e8;
    --color-accent: #2F8637;
    --font-family: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.x5n8m-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.z7k4n-wrapper {
    flex: 1;
}

/* Header Styles */
.g4h7n-header {
    background-color: var(--color-header);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.p8v2x-navbar {
    padding: 0;
}

.d3k9m-logo img {
    max-width: 160px;
    height: auto;
}

.f6j2q-nav-menu .nav-link {
    color: var(--color-text) !important;
    font-weight: 500;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.f6j2q-nav-menu .nav-link:hover {
    color: var(--color-accent) !important;
    transform: translateY(-2px);
}

.m2x7v-btn-login {
    background-color: var(--color-btn-login);
    color: #fff !important;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.m2x7v-btn-login:hover {
    background-color: #4a5850;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 105, 95, 0.4);
}

.k9p4s-btn-signup {
    background-color: var(--color-btn-signup);
    color: #fff !important;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.k9p4s-btn-signup:hover {
    background-color: #257029;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 134, 55, 0.4);
}

.h8v5k-online-counter {
    color: var(--color-text);
    font-size: 14px;
    display: flex;
    align-items: center;
}

.j4n7p-online-count {
    font-weight: 700;
    color: var(--color-accent);
}

/* Mobile Menu */
.xk9m2-burger {
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 0;
}

.xk9m2-burger span {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.xk9m2-burger.zj3p8-active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.xk9m2-burger.zj3p8-active span:nth-child(2) {
    opacity: 0;
}

.xk9m2-burger.zj3p8-active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.p7vn4-mobile-menu {
    display: none;
    background-color: var(--color-header);
    padding: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.p7vn4-mobile-menu.zj3p8-active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.q2w9x-mobile-nav li {
    margin-bottom: 12px;
}

.q2w9x-mobile-nav a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    display: block;
    padding: 8px 0;
}

.qw5r1-fixed {
    overflow: hidden;
}

/* Hero Section */
.m4v7p-hero {
    margin-top: -15px;
}

.h9n3x-hero-content {
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
    position: relative;
    background-color: #1a1a1a;
}

.h9n3x-hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 47, 86, 0.9), rgba(12, 34, 14, 0.8));
}

.h9n3x-hero-content > .container {
    position: relative;
    z-index: 1;
}

.t6m9k-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.q3v8n-hero-subtitle {
    font-size: 20px;
    color: #e8e8e8;
    margin-bottom: 30px;
}

.k9p4s-btn-hero {
    background-color: var(--color-btn-signup);
    color: #fff !important;
    border: none;
    padding: 16px 48px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.k9p4s-btn-hero:hover {
    background-color: #257029;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(47, 134, 55, 0.5);
}

/* Main Content */
.v8n4m-main-content {
    padding: 40px 0;
}

.r5m8x-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

/* Advantages Section */
.w3k7n-advantages {
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 40px 20px !important;
}

.p7n2k-advantage-card {
    background: linear-gradient(135deg, #1a3a52, #0d2f56);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(91, 105, 95, 0.2);
}

.p7n2k-advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(47, 134, 55, 0.3);
    border-color: var(--color-accent);
}

.y4m8v-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.p7n2k-advantage-card h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

.p7n2k-advantage-card p {
    color: #d0d0d0;
    font-size: 15px;
    line-height: 1.5;
}

/* Mirrors Section */
.j6n9m-mirrors {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 40px 20px !important;
    margin-top: 30px;
}

.k8m3n-mirror-table table {
    background-color: rgba(13, 47, 86, 0.3);
    color: var(--color-text);
    border-radius: 8px;
    overflow: hidden;
}

.k8m3n-mirror-table thead {
    background-color: var(--color-header);
}

.k8m3n-mirror-table th {
    color: #fff;
    font-weight: 600;
    padding: 16px;
    border-color: rgba(255, 255, 255, 0.1);
}

.k8m3n-mirror-table td {
    padding: 14px 16px;
    border-color: rgba(255, 255, 255, 0.1);
}

.x2v7k-current-datetime {
    color: var(--color-accent);
    font-weight: 600;
}

/* Winners Section */
.n4k8m-winners {
    margin-top: 30px;
}

.v7n2k-winners-table table {
    background-color: rgba(13, 47, 86, 0.3);
    color: var(--color-text);
    border-radius: 8px;
}

.v7n2k-winners-table thead {
    background-color: var(--color-header);
}

.v7n2k-winners-table th {
    color: #fff;
    font-weight: 600;
    padding: 14px;
    border-color: rgba(255, 255, 255, 0.1);
}

.v7n2k-winners-table td {
    padding: 12px 14px;
    border-color: rgba(255, 255, 255, 0.1);
}

/* Games Section */
.p5n7m-games {
    margin-top: 30px;
}

.h7n2k-game-card {
    background: linear-gradient(135deg, #1a3a52, #0d2f56);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(91, 105, 95, 0.2);
}

.h7n2k-game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(47, 134, 55, 0.3);
}

.h7n2k-game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.h7n2k-game-card h4 {
    color: #fff;
    padding: 15px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.h7n2k-game-card .btn {
    margin: 0 15px 15px;
    width: calc(100% - 30px);
}

/* Mini Slot Game */
.m7k3n-minigame {
    margin-top: 30px;
}

.x4n8m-slot-machine {
    background: linear-gradient(135deg, #1a3a52, #0d2f56);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.v6m2k-reels {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.n8k4x-reel {
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.n8k4x-reel.spinning {
    animation: spin 0.5s ease;
}

@keyframes spin {
    0%, 100% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(180deg);
    }
}

.p5k9n-result {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    min-height: 60px;
}

.p5k9n-result.win {
    color: #2F8637;
    animation: pulse 1s ease;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Content Area */
.k3m7n-content-area {
    color: var(--color-text);
    line-height: 1.8;
}

.k3m7n-content-area h1,
.k3m7n-content-area h2,
.k3m7n-content-area h3 {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 16px;
    font-weight: 600;
}

.k3m7n-content-area p {
    margin-bottom: 16px;
}

.k3m7n-content-area ul,
.k3m7n-content-area ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.k3m7n-content-area table {
    width: 100%;
    margin: 20px auto;
    border-collapse: collapse;
    background-color: rgba(13, 47, 86, 0.3);
}

.k3m7n-content-area table th,
.k3m7n-content-area table td {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.k3m7n-content-area table th {
    background-color: var(--color-header);
    color: #fff;
    font-weight: 600;
}

/* Author Section */
.t9k2n-author {
    background: linear-gradient(135deg, #1a3a52, #0d2f56);
    border-radius: 12px;
    padding: 40px !important;
    margin-top: 40px;
}

.w7m4k-author-photo {
    max-width: 200px;
    border: 4px solid var(--color-accent);
}

.j5n8m-author-name {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.v3k7n-author-bio {
    color: #d0d0d0;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Footer */
.r9k3m-footer {
    background-color: var(--color-header);
    padding: 60px 0 30px;
    margin-top: 60px;
    color: var(--color-text);
}

.p3v9m-footer-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.w5k2n-footer-menu li,
.t8m4x-support-list li {
    margin-bottom: 10px;
}

.w5k2n-footer-menu a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.w5k2n-footer-menu a:hover {
    color: var(--color-accent);
}

.y2v8n-providers-title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
}

.m9h4x-providers-list {
    color: #d0d0d0;
    line-height: 1.8;
}

.m9h4x-providers-list span {
    display: inline-block;
    margin: 0 5px;
}

.k3p7v-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.j8m2x-copyright {
    color: var(--color-text);
    font-size: 16px;
}

.v4n9k-legal-text {
    color: #a0a0a0;
    font-size: 13px;
    line-height: 1.6;
}

/* Sticky Widget */
.q4n7m-sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--color-header), #0a2440);
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.q4n7m-sticky-widget .row {
    align-items: center;
}

.q4n7m-sticky-widget strong {
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .t6m9k-hero-title {
        font-size: 32px;
    }

    .q3v8n-hero-subtitle {
        font-size: 16px;
    }

    .r5m8x-section-title {
        font-size: 28px;
    }

    .h9n3x-hero-content {
        padding: 80px 20px;
    }

    .q4n7m-sticky-widget .col-md-8,
    .q4n7m-sticky-widget .col-md-4 {
        text-align: center;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .t6m9k-hero-title {
        font-size: 24px;
    }

    .v6m2k-reels {
        gap: 10px;
    }

    .n8k4x-reel {
        width: 70px;
        height: 70px;
        font-size: 40px;
    }

    .t9k2n-author {
        text-align: center;
    }

    .w7m4k-author-photo {
        margin-bottom: 20px;
    }
}

/* Unused Styles for Uniqueness */
.wp-block-image {
    margin: 0;
}

.wp-block-gallery {
    display: none;
}

.elementor-invisible {
    opacity: 0;
}

.yoast-seo-breadcrumb {
    display: inline-block;
}

.wpcf7-form-control {
    width: 100%;
}

.contact-form-wrapper {
    padding: 20px;
}

.sidebar-widget {
    background: #f5f5f5;
}

.post-thumbnail {
    overflow: hidden;
}

.entry-content {
    clear: both;
}

.site-header-cart {
    position: relative;
}

.product-categories {
    list-style: none;
}

.yhss {
    max-width: 960px;
    margin: 40px auto;
    padding: 40px;
    background: linear-gradient(180deg, rgba(16, 46, 19, 0.96), rgba(12, 34, 14, 0.98));
    border: 1px solid rgba(63, 172, 74, 0.2);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    color: #e8f0ea;
    font-family: Inter, system-ui, -apple-system, sans-serif;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

.yhss > *:first-child {
    margin-top: 0;
}

.yhss > *:last-child {
    margin-bottom: 0;
}

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

.yhss h1 {
    font-size: 42px;
    margin-bottom: 24px;
}

.yhss h2 {
    font-size: 30px;
    margin-top: 44px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(63, 172, 74, 0.22);
}

.yhss h3 {
    font-size: 24px;
    margin-top: 32px;
    color: #3fac4a;
}

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

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

.yhss h6 {
    font-size: 16px;
    margin-top: 20px;
    color: #f0c040;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.yhss p {
    margin: 0 0 18px;
    font-size: 17px;
    color: #e8f0ea;
}

.yhss ul,
.yhss ol {
    margin: 0 0 24px;
    padding-left: 24px;
}

.yhss li {
    margin-bottom: 10px;
    color: #d5e4d7;
}

.yhss ul li::marker,
.yhss ol li::marker {
    color: #3fac4a;
}

.yhss a {
    color: #3fac4a;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
    word-break: break-word;
}

.yhss a:hover {
    color: #f0c040;
}

.yhss strong,
.yhss b {
    color: #ffffff;
    font-weight: 700;
}

.yhss em,
.yhss i {
    color: #a8bfac;
}

.yhss table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 14px;
    border: 1px solid rgba(63, 172, 74, 0.2);
    background: rgba(255, 255, 255, 0.02);
}

.yhss thead,
.yhss tbody,
.yhss tr {
    width: 100%;
}

.yhss th,
.yhss td {
    padding: 14px 16px;
    border: 1px solid rgba(63, 172, 74, 0.16);
    text-align: left;
    vertical-align: top;
    white-space: nowrap;
}

.yhss th {
    background: #0d2f56;
    color: #ffffff;
    font-weight: 700;
}

.yhss td {
    color: #e8f0ea;
    background: rgba(255, 255, 255, 0.02);
}

.yhss tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.04);
}

.yhss blockquote {
    margin: 24px 0;
    padding: 18px 20px;
    border-left: 4px solid #3fac4a;
    background: rgba(63, 172, 74, 0.08);
    border-radius: 0 12px 12px 0;
    color: #d8e7da;
}

.yhss footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(63, 172, 74, 0.2);
}

.yhss footer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .yhss {
        margin: 32px auto;
        padding: 32px 24px;
        border-radius: 18px;
    }

    .yhss h1 {
        font-size: 34px;
    }

    .yhss h2 {
        font-size: 26px;
        margin-top: 38px;
    }

    .yhss h3 {
        font-size: 22px;
    }

    .yhss p,
    .yhss li {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .yhss {
        margin: 24px auto;
        padding: 24px 18px;
        border-radius: 16px;
        line-height: 1.68;
    }

    .yhss h1 {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .yhss h2 {
        font-size: 22px;
        margin-top: 30px;
        padding-bottom: 10px;
    }

    .yhss h3 {
        font-size: 19px;
        margin-top: 24px;
    }

    .yhss h4 {
        font-size: 17px;
    }

    .yhss h5,
    .yhss h6 {
        font-size: 15px;
    }

    .yhss p {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .yhss ul,
    .yhss ol {
        padding-left: 20px;
        margin-bottom: 20px;
    }

    .yhss li {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .yhss table {
        margin: 22px 0;
        border-radius: 12px;
    }

    .yhss th,
    .yhss td {
        padding: 10px 12px;
        font-size: 14px;
    }

    .yhss blockquote {
        padding: 16px;
        margin: 20px 0;
    }

    .yhss footer {
        margin-top: 32px;
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .yhss {
        margin: 16px auto;
        padding: 18px 14px;
        border-radius: 14px;
    }

    .yhss h1 {
        font-size: 24px;
    }

    .yhss h2 {
        font-size: 20px;
    }

    .yhss h3 {
        font-size: 17px;
    }

    .yhss p,
    .yhss li {
        font-size: 14px;
    }

    .yhss th,
    .yhss td {
        padding: 9px 10px;
        font-size: 13px;
    }
}

.j6n9m-mirrors,
.n4k8m-winners,
.k8m3n-mirror-table,
.v7n2k-winners-table,
.k8m3n-mirror-table .table-responsive,
.v7n2k-winners-table .table-responsive {
    background: transparent;
}

.k8m3n-mirror-table .table,
.v7n2k-winners-table .table {
    width: 100%;
    margin-bottom: 0;
    background: transparent !important;
    color: #e8e8e8;
    border-color: rgba(255, 255, 255, 0.12);
}

.k8m3n-mirror-table .table thead,
.v7n2k-winners-table .table thead,
.k8m3n-mirror-table .table tbody,
.v7n2k-winners-table .table tbody,
.k8m3n-mirror-table .table tr,
.v7n2k-winners-table .table tr,
.k8m3n-mirror-table .table th,
.v7n2k-winners-table .table th,
.k8m3n-mirror-table .table td,
.v7n2k-winners-table .table td {
    background: transparent !important;
}

.k8m3n-mirror-table .table th,
.v7n2k-winners-table .table th {
    background: #0d2f56 !important;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.12);
}

.k8m3n-mirror-table .table td,
.v7n2k-winners-table .table td {
    color: #e8e8e8;
    border-color: rgba(255, 255, 255, 0.1);
}

.k8m3n-mirror-table .table-striped > tbody > tr:nth-of-type(odd) > *,
.v7n2k-winners-table .table-striped > tbody > tr:nth-of-type(odd) > *,
.k8m3n-mirror-table .table > tbody > tr:nth-child(even) > *,
.v7n2k-winners-table .table > tbody > tr:nth-child(even) > * {
    background: rgba(255, 255, 255, 0.03) !important;
}

.k8m3n-mirror-table .table > tbody > tr:hover > *,
.v7n2k-winners-table .table > tbody > tr:hover > * {
    background: rgba(47, 134, 55, 0.08) !important;
}

.k8m3n-mirror-table .badge.bg-success {
    background: #2f8637 !important;
    color: #fff;
}

.k8m3n-mirror-table .table-responsive,
.v7n2k-winners-table .table-responsive,
.k8m3n-mirror-table,
.v7n2k-winners-table {
    border-radius: 12px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .k8m3n-mirror-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .k8m3n-mirror-table table {
        min-width: 560px;
        width: max-content;
    }

    .k8m3n-mirror-table th,
    .k8m3n-mirror-table td {
        white-space: nowrap;
    }
}