@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    background-color: rgba(0, 0, 0, 0);
    overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #000;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 30px
}

@media(max-width: 767.98px) {
    h1 {
        font-size: 2rem
    }
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px
}

@media(max-width: 767.98px) {
    h2 {
        font-size: 1.75rem
    }
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 10px
}

@media(max-width: 767.98px) {
    h3 {
        font-size: 1.25rem
    }
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 10px
}

@media(max-width: 767.98px) {
    h4 {
        font-size: 1.1rem
    }
}

p {
    margin-bottom: 20px;
    color: #000
}

@media(max-width: 767.98px) {
    p {
        margin-bottom: 10px
    }
}

a {
    color: #000;
    text-decoration: none;
    transition: all .3s ease
}

a:hover {
    color: #000
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

ul,
ol {
    margin-bottom: 20px;
    padding-left: 30px;
    color: #fff
}

@media(max-width: 767.98px) {

    ul,
    ol {
        padding-left: 20px
    }
}

li {
    margin-bottom: 5px
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

.btn--primary {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
    background: linear-gradient(135deg, #000 0%, #000 100%);
    color: #fff;
    background: #000;
    color: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 107, 53, .25);
    font-weight: 600
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

.btn--primary:hover {
    background: linear-gradient(135deg, black 0%, black 100%)
}

.btn--primary:hover {
    background: #000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
    transform: translateY(-2px);
    color: #fff
}

.btn--secondary {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
    background: #fff;
    color: #000;
    border: 2px solid #000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    font-weight: 600
}

.btn--secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

.btn--secondary:hover {
    background: #000;
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 107, 53, .25);
    transform: translateY(-2px)
}

.btn--large {
    padding: 20px 30px;
    font-size: 1.1rem;
    font-weight: 600
}

@media(max-width: 767.98px) {
    .btn--large {
        padding: 10px 20px;
        font-size: 1rem
    }
}

.btn--small {
    padding: 5px 10px;
    font-size: .9rem;
    font-weight: 500
}

input,
textarea,
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: inherit;
    transition: all .3s ease;
    background: #fff;
    color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, .2), 0 4px 8px rgba(0, 0, 0, .15)
}

textarea {
    resize: vertical;
    min-height: 100px
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    border-radius: 4px;
    overflow: hidden
}

@media(max-width: 767.98px) {
    table {
        font-size: .9rem
    }
}

th,
td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd
}

@media(max-width: 767.98px) {

    th,
    td {
        padding: 5px
    }
}

/*th {
    background-color: #000;
    color: #fff;
    font-weight: bold
}*/

.text-center {
    text-align: center
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.hidden {
    display: none !important
}

.visible {
    display: block !important
}

@media(max-width: 767.98px) {
    .hidden-mobile {
        display: none !important
    }

    .visible-mobile {
        display: block !important
    }
}

@media(max-width: 991.98px) {
    .hidden-tablet {
        display: none !important
    }

    .visible-tablet {
        display: block !important
    }
}

/*.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #fff
}*/

@media(max-width: 767.98px) {
    .container {
        padding: 0 10px
    }
}

.section {
    padding: 40px 0
}

@media(max-width: 767.98px) {
    .section {
        padding: 30px 0
    }
}

.section--small {
    padding: 30px 0
}

@media(max-width: 767.98px) {
    .section--small {
        padding: 20px 0
    }
}

.section--large {
    padding: 50px 0
}

@media(max-width: 767.98px) {
    .section--large {
        padding: 40px 0
    }
}

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

/*.site-content {
    flex: 1;
    display: flex;
    flex-direction: column
}*/

/*.row {
    display: flex;
    flex-wrap: wrap;
    margin: -10px
}*/

@media(max-width: 767.98px) {
    .row {
        margin: -5px
    }
}

.col {
    flex: 1;
    padding: 0 10px
}

@media(max-width: 767.98px) {
    .col {
        padding: 0 5px
    }
}

.col-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 0 10px
}

@media(max-width: 767.98px) {
    .col-1 {
        padding: 0 5px
    }
}

.col-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 0 10px
}

@media(max-width: 767.98px) {
    .col-2 {
        padding: 0 5px
    }
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 10px
}

@media(max-width: 767.98px) {
    .col-3 {
        padding: 0 5px
    }
}

.col-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 0 10px
}

@media(max-width: 767.98px) {
    .col-4 {
        padding: 0 5px
    }
}

.col-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 0 10px
}

@media(max-width: 767.98px) {
    .col-5 {
        padding: 0 5px
    }
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px
}

@media(max-width: 767.98px) {
    .col-6 {
        padding: 0 5px
    }
}

.col-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 0 10px
}

@media(max-width: 767.98px) {
    .col-7 {
        padding: 0 5px
    }
}

.col-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 0 10px
}

@media(max-width: 767.98px) {
    .col-8 {
        padding: 0 5px
    }
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
    padding: 0 10px
}

@media(max-width: 767.98px) {
    .col-9 {
        padding: 0 5px
    }
}

.col-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 0 10px
}

@media(max-width: 767.98px) {
    .col-10 {
        padding: 0 5px
    }
}

.col-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 0 10px
}

@media(max-width: 767.98px) {
    .col-11 {
        padding: 0 5px
    }
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 10px
}

@media(max-width: 767.98px) {
    .col-12 {
        padding: 0 5px
    }
}

@media(max-width: 767.98px) {
    .col-mobile-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%
    }

    .col-mobile-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .col-mobile-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-mobile-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .col-mobile-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%
    }

    .col-mobile-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-mobile-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%
    }

    .col-mobile-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%
    }

    .col-mobile-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-mobile-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%
    }

    .col-mobile-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%
    }

    .col-mobile-12 {
        flex: 0 0 100%;
        max-width: 100%
    }
}

@media(max-width: 991.98px) {
    .col-tablet-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%
    }

    .col-tablet-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .col-tablet-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-tablet-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .col-tablet-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%
    }

    .col-tablet-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-tablet-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%
    }

    .col-tablet-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%
    }

    .col-tablet-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-tablet-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%
    }

    .col-tablet-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%
    }

    .col-tablet-12 {
        flex: 0 0 100%;
        max-width: 100%
    }
}

@media(max-width: 1199.98px) {
    .col-desktop-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%
    }

    .col-desktop-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }

    .col-desktop-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-desktop-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }

    .col-desktop-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%
    }

    .col-desktop-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-desktop-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%
    }

    .col-desktop-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%
    }

    .col-desktop-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-desktop-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%
    }

    .col-desktop-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%
    }

    .col-desktop-12 {
        flex: 0 0 100%;
        max-width: 100%
    }
}

.main-content {
    flex: 1;
    padding: 30px 0
}

@media(max-width: 767.98px) {
    .main-content {
        padding: 20px 0
    }
}

.content-sidebar {
    display: flex;
    gap: 30px
}

@media(max-width: 767.98px) {
    .content-sidebar {
        flex-direction: column;
        gap: 20px
    }
}

.content-sidebar .main-content {
    flex: 1
}

.content-sidebar .sidebar {
    flex: 0 0 300px
}

@media(max-width: 767.98px) {
    .content-sidebar .sidebar {
        flex: none;
        width: 100%
    }
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px
}

@media(max-width: 767.98px) {
    .two-column {
        grid-template-columns: 1fr;
        gap: 20px
    }
}

.three-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

@media(max-width: 991.98px) {
    .three-column {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width: 767.98px) {
    .three-column {
        grid-template-columns: 1fr;
        gap: 20px
    }
}

.four-column {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px
}

@media(max-width: 1199.98px) {
    .four-column {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width: 991.98px) {
    .four-column {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width: 767.98px) {
    .four-column {
        grid-template-columns: 1fr;
        gap: 20px
    }
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px
}

@media(max-width: 767.98px) {
    .card-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }
}

.masonry {
    columns: 3;
    column-gap: 30px
}

@media(max-width: 991.98px) {
    .masonry {
        columns: 2
    }
}

@media(max-width: 767.98px) {
    .masonry {
        columns: 1;
        column-gap: 20px
    }
}

.masonry .masonry-item {
    break-inside: avoid;
    margin-bottom: 30px
}

@media(max-width: 767.98px) {
    .masonry .masonry-item {
        margin-bottom: 20px
    }
}

.d-flex {
    display: flex
}

.d-inline-flex {
    display: inline-flex
}

.flex-row {
    flex-direction: row
}

.flex-column {
    flex-direction: column
}

.flex-wrap {
    flex-wrap: wrap
}

.flex-nowrap {
    flex-wrap: nowrap
}

.justify-start {
    justify-content: flex-start
}

.justify-end {
    justify-content: flex-end
}

.justify-center {
    justify-content: center
}

.justify-between {
    justify-content: space-between
}

.justify-around {
    justify-content: space-around
}

.align-start {
    align-items: flex-start
}

.align-end {
    align-items: flex-end
}

.align-center {
    align-items: center
}

.align-stretch {
    align-items: stretch
}

.m-0 {
    margin: 0 !important
}

.m-1 {
    margin: 5px !important
}

.m-2 {
    margin: 10px !important
}

.m-3 {
    margin: 20px !important
}

.m-4 {
    margin: 30px !important
}

.m-5 {
    margin: 40px !important
}

.p-0 {
    padding: 0 !important
}

.p-1 {
    padding: 5px !important
}

.p-2 {
    padding: 10px !important
}

.p-3 {
    padding: 20px !important
}

.p-4 {
    padding: 30px !important
}

.p-5 {
    padding: 40px !important
}

@media(max-width: 767.98px) {
    .m-mobile-0 {
        margin: 0 !important
    }

    .m-mobile-1 {
        margin: 5px !important
    }

    .m-mobile-2 {
        margin: 10px !important
    }

    .m-mobile-3 {
        margin: 20px !important
    }

    .p-mobile-0 {
        padding: 0 !important
    }

    .p-mobile-1 {
        padding: 5px !important
    }

    .p-mobile-2 {
        padding: 10px !important
    }

    .p-mobile-3 {
        padding: 20px !important
    }
}

.position-relative {
    position: relative
}

.position-absolute {
    position: absolute
}

.position-fixed {
    position: fixed
}

.position-sticky {
    position: sticky
}

.d-none {
    display: none !important
}

.d-block {
    display: block !important
}

.d-inline {
    display: inline !important
}

.d-inline-block {
    display: inline-block !important
}

.d-flex {
    display: flex !important
}

.d-grid {
    display: grid !important
}

@media(max-width: 767.98px) {
    .d-mobile-none {
        display: none !important
    }

    .d-mobile-block {
        display: block !important
    }

    .d-mobile-flex {
        display: flex !important
    }
}

@media(max-width: 991.98px) {
    .d-tablet-none {
        display: none !important
    }

    .d-tablet-block {
        display: block !important
    }

    .d-tablet-flex {
        display: flex !important
    }
}

.w-100 {
    width: 100% !important
}

.h-100 {
    height: 100% !important
}

.w-auto {
    width: auto !important
}

.h-auto {
    height: auto !important
}

.overflow-hidden {
    overflow: hidden !important
}

.overflow-auto {
    overflow: auto !important
}

.overflow-scroll {
    overflow: scroll !important
}

.site-header {
    background: #000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    position: relative;
    z-index: 1000
}

@media(max-width: 1199.98px) {
    .site-header {
        position: sticky;
        top: 0
    }
}

.header-top {
    background: rgba(0, 0, 0, .05);
    padding: 5px 0
}

@media(max-width: 767.98px) {
    .header-top {
        padding: 5px 0
    }
}

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

@media(max-width: 767.98px) {
    .header-top .container {
        flex-direction: column;
        gap: 5px
    }
}

.header-top .contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #fff;
    font-size: .9rem
}

@media(max-width: 767.98px) {
    .header-top .contact-info {
        gap: 10px;
        font-size: .8rem
    }
}

.header-top .contact-info a {
    color: #000;
    text-decoration: none
}

.header-top .contact-info a:hover {
    color: #000
}

.header-top .social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.header-top .social-links a {
    color: #000;
    font-size: 1.2rem;
    transition: all .3s ease
}

.header-top .social-links a:hover {
    color: #000;
    transform: translateY(-2px)
}

.header-main {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media(max-width: 1199.98px) {
    .header-main {
        flex-direction: row;
        gap: 0
    }
}

.header-main .header-logo {
    flex: 0 0 auto
}

@media(max-width: 1199.98px) {
    .header-main .header-logo {
        order: 1
    }
}

.header-main .header-logo .site-branding {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

@media(max-width: 1199.98px) {
    .header-main .header-logo .site-branding {
        flex-direction: row;
        text-align: left
    }
}

.header-main .header-logo .site-branding .site-logo img {
    max-height: 50px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

@media(max-width: 1199.98px) {
    .header-main .header-logo .site-branding .site-logo img {
        max-height: 40px
    }
}

.header-main .header-logo .site-branding .site-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin: 0
}

@media(max-width: 1199.98px) {
    .header-main .header-logo .site-branding .site-title {
        font-size: 1.5rem
    }
}

.header-main .header-logo .site-branding .site-title a {
    color: inherit;
    text-decoration: none
}

.header-main .header-logo .site-branding .site-title a:hover {
    color: #000
}

.header-main .header-logo .site-branding .site-description {
    color: #666;
    font-size: .9rem;
    margin: 0
}

@media(max-width: 1199.98px) {
    .header-main .header-logo .site-branding .site-description {
        font-size: .8rem
    }
}

.header-main .main-navigation {
    flex: 1;
    display: flex;
    justify-content: center
}

@media(max-width: 1199.98px) {
    .header-main .main-navigation {
        order: 3;
        display: none
    }
}

.header-main .main-navigation .nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none
}

.header-main .main-navigation .nav-menu li {
    position: relative
}

.header-main .main-navigation .nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    transition: all .3s ease
}

.header-main .main-navigation .nav-menu li a:hover {
    color: #000
}

.header-main .main-navigation .nav-menu li.current-menu-item>a,
.header-main .main-navigation .nav-menu li.current-page-ancestor>a {
    color: #000;
    font-weight: 600
}

.header-main .header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 20px
}

@media(max-width: 1199.98px) {
    .header-main .header-actions {
        order: 2;
        width: auto;
        justify-content: flex-end
    }
}

.header-main .header-actions .header-buttons {
    display: flex;
    gap: 10px
}

@media(max-width: 1199.98px) {
    .header-main .header-actions .header-buttons {
        display: none
    }
}

.header-main .header-actions .header-buttons .header-btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
    background: #000;
    color: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 107, 53, .25);
    font-weight: 600
}

.header-main .header-actions .header-buttons .header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

.header-main .header-actions .header-buttons .header-btn:hover {
    background: #000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
    transform: translateY(-2px)
}

@media(max-width: 1199.98px) {
    .header-main .header-actions .header-buttons .header-btn {
        padding: 5px 10px;
        font-size: .8rem
    }
}

.header-main .header-actions .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    flex-direction: column;
    gap: 4px
}

@media(max-width: 1199.98px) {
    .header-main .header-actions .mobile-menu-toggle {
        display: flex
    }
}

.header-main .header-actions .mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: all .3s ease
}

.header-main .header-actions .mobile-menu-toggle:hover span {
    background: #000
}

.header-main .header-actions .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.header-main .header-actions .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0
}

.header-main .header-actions .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px)
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible
}

.mobile-menu-overlay .mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2);
    transition: all .3s ease
}

.mobile-menu-overlay.active .mobile-menu {
    right: 0
}

.mobile-menu-overlay .mobile-menu .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, .1)
}

.mobile-menu-overlay .mobile-menu .mobile-menu-header .mobile-menu-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0
}

.mobile-menu-overlay .mobile-menu .mobile-menu-header .mobile-menu-close {
    background: none;
    border: none;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px
}

.mobile-menu-overlay .mobile-menu .mobile-menu-header .mobile-menu-close:hover {
    color: #000
}

.mobile-menu-overlay .mobile-menu .mobile-menu-header .mobile-menu-close span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 1px
}

.mobile-menu-overlay .mobile-menu .mobile-menu-header .mobile-menu-close span:first-child {
    transform: rotate(45deg)
}

.mobile-menu-overlay .mobile-menu .mobile-menu-header .mobile-menu-close span:last-child {
    transform: rotate(-45deg);
    margin-top: -2px
}

.mobile-menu-overlay .mobile-menu .mobile-navigation {
    padding: 30px;
    height: calc(100% - 80px);
    overflow-y: auto
}

.mobile-menu-overlay .mobile-menu .mobile-navigation .mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 30px
}

.mobile-menu-overlay .mobile-menu .mobile-navigation .mobile-nav-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, .1)
}

.mobile-menu-overlay .mobile-menu .mobile-navigation .mobile-nav-menu li:last-child {
    border-bottom: none
}

.mobile-menu-overlay .mobile-menu .mobile-navigation .mobile-nav-menu li a {
    display: block;
    padding: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all .3s ease
}

.mobile-menu-overlay .mobile-menu .mobile-navigation .mobile-nav-menu li a:hover {
    color: #000;
    background: rgba(0, 0, 0, .05)
}

.mobile-menu-overlay .mobile-menu .mobile-navigation .mobile-nav-menu li.current-menu-item>a {
    color: #000;
    font-weight: 600
}

.mobile-menu-overlay .mobile-menu .mobile-navigation .mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, .1)
}

.mobile-menu-overlay .mobile-menu .mobile-navigation .mobile-buttons .mobile-btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
    background: #000;
    color: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 107, 53, .25);
    font-weight: 600;
    text-align: center;
    padding: 10px;
    font-size: 1rem
}

.mobile-menu-overlay .mobile-menu .mobile-navigation .mobile-buttons .mobile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

.mobile-menu-overlay .mobile-menu .mobile-navigation .mobile-buttons .mobile-btn:hover {
    background: #000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
    transform: translateY(-2px)
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease
}

.search-overlay.active {
    opacity: 1;
    visibility: visible
}

.search-overlay .search-form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px
}

@media(max-width: 767.98px) {
    .search-overlay .search-form {
        width: 95%
    }
}

.search-overlay .search-form .search-input {
    width: 100%;
    padding: 30px;
    font-size: 1.2rem;
    border: none;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2)
}

@media(max-width: 767.98px) {
    .search-overlay .search-form .search-input {
        padding: 20px;
        font-size: 1rem
    }
}

.search-overlay .search-form .search-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .3), 0 8px 16px rgba(0, 0, 0, .2)
}

.search-overlay .search-form .search-submit {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #000;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px
}

.search-overlay .search-form .search-submit:hover {
    color: #000
}

.search-overlay .search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 5px
}

@media(max-width: 767.98px) {
    .search-overlay .search-close {
        top: 20px;
        right: 20px;
        font-size: 1.5rem
    }
}

.search-overlay .search-close:hover {
    color: #000
}

.header-sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
    transform: translateY(-100%);
    transition: transform .3s ease
}

.header-sticky.visible {
    transform: translateY(0)
}

.header-sticky .header-main {
    padding: 10px 0
}

.header-sticky .header-main .site-branding .site-logo img {
    max-height: 40px
}

.header-sticky .header-main .site-branding .site-title {
    font-size: 1.4rem
}

.hero-section {
    background: linear-gradient(135deg, #000 0%, #000 100%);
    color: #fff;
    padding: 50px 0;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2)
}

@media(max-width: 767.98px) {
    .hero-section {
        padding: 40px 0
    }
}

.hero-section .hero-content {
    max-width: 800px;
    margin: 0 auto
}

.hero-section .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #fff
}

@media(max-width: 767.98px) {
    .hero-section .hero-content h1 {
        font-size: 2rem
    }
}

.hero-section .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: .9
}

@media(max-width: 767.98px) {
    .hero-section .hero-content p {
        font-size: 1rem
    }
}

.hero-section .hero-content .hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px
}

@media(max-width: 767.98px) {
    .hero-section .hero-content .hero-buttons {
        flex-direction: column;
        gap: 10px
    }
}

.breadcrumbs {
    background: rgba(0, 0, 0, .1);
    padding: 10px 0;
    font-size: .9rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

@media(max-width: 767.98px) {
    .breadcrumbs {
        padding: 5px 0;
        font-size: .8rem
    }
}

.breadcrumbs .breadcrumb-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none
}

.breadcrumbs .breadcrumb-list li {
    margin: 0
}

.breadcrumbs .breadcrumb-list li:not(:last-child)::after {
    content: ">";
    margin-left: 5px;
    color: #666
}

.breadcrumbs .breadcrumb-list a {
    color: #000;
    text-decoration: none
}

.breadcrumbs .breadcrumb-list a:hover {
    color: #000
}

.breadcrumbs .breadcrumb-list .current {
    color: #666
}

@media(max-width: 767.98px) {
    .main-navigation {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        z-index: 9999;
        transition: left .3s ease;
        overflow-y: auto;
        box-shadow: 0 8px 16px rgba(0, 0, 0, .2)
    }

    .main-navigation.active {
        left: 0
    }
}

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

@media(max-width: 767.98px) {
    .nav-container {
        flex-direction: column;
        height: 100%;
        padding: 30px
    }
}

.primary-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none
}

@media(max-width: 767.98px) {
    .primary-menu {
        flex-direction: column;
        width: 100%;
        gap: 20px
    }
}

.primary-menu>li {
    position: relative
}

@media(max-width: 767.98px) {
    .primary-menu>li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, .1);
        padding-bottom: 10px
    }
}

.primary-menu>li>a {
    display: block;
    padding: 20px 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all .3s ease
}

@media(max-width: 767.98px) {
    .primary-menu>li>a {
        padding: 10px 20px;
        font-size: 1.1rem;
        color: #fff
    }
}

.primary-menu>li>a:hover {
    color: #000;
    background: rgba(0, 0, 0, .05);
    transform: translateY(-1px)
}

.primary-menu>li.current-menu-item>a,
.primary-menu>li.current-page-ancestor>a {
    color: #000;
    background: rgba(0, 0, 0, .1);
    font-weight: 600
}

@media(max-width: 1199.98px) {
    .primary-menu>li:hover>.sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0)
    }
}

.primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all .3s ease;
    z-index: 1000
}

@media(max-width: 767.98px) {
    .primary-menu .sub-menu {
        position: static;
        background: rgba(0, 0, 0, .05);
        box-shadow: none;
        border-radius: 4px;
        margin-top: 10px;
        opacity: 1;
        visibility: visible;
        transform: none
    }
}

.primary-menu .sub-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, .1)
}

.primary-menu .sub-menu li:last-child {
    border-bottom: none
}

.primary-menu .sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    transition: all .3s ease
}

@media(max-width: 767.98px) {
    .primary-menu .sub-menu li a {
        color: #fff;
        padding: 5px 10px
    }
}

.primary-menu .sub-menu li a:hover {
    background: rgba(0, 0, 0, .1);
    color: #000
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    margin-bottom: 30px
}

.mobile-menu-header .mobile-menu-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0
}

.mobile-menu-header .mobile-menu-close {
    background: none;
    border: none;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px
}

.mobile-menu-header .mobile-menu-close:hover {
    color: #000;
    transform: translateY(-2px)
}

.secondary-navigation {
    background: rgba(0, 0, 0, .05);
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

@media(max-width: 767.98px) {
    .secondary-navigation {
        display: none
    }
}

.secondary-navigation .secondary-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none
}

.secondary-navigation .secondary-menu a {
    color: #fff;
    text-decoration: none;
    font-size: .9rem;
    transition: all .3s ease
}

.secondary-navigation .secondary-menu a:hover {
    color: #000
}

.footer-navigation .footer-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none
}

@media(max-width: 767.98px) {
    .footer-navigation .footer-menu {
        flex-direction: column;
        gap: 10px
    }
}

.footer-navigation .footer-menu a {
    color: #666;
    text-decoration: none;
    transition: all .3s ease
}

.footer-navigation .footer-menu a:hover {
    color: #000
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 30px 0
}

.pagination .page-numbers {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.pagination .page-numbers:hover {
    background: #000;
    color: #fff;
    border-color: #000;
    box-shadow: 0 4px 12px rgba(255, 107, 53, .25);
    transform: translateY(-2px)
}

.pagination .page-numbers.current {
    background: #000;
    color: #fff;
    border-color: #000;
    box-shadow: 0 4px 12px rgba(255, 107, 53, .25)
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
    font-weight: bold
}

.breadcrumb-navigation {
    padding: 10px 0;
    font-size: .9rem
}

.breadcrumb-navigation .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none
}

.breadcrumb-navigation .breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: 5px;
    color: #666
}

.breadcrumb-navigation .breadcrumb a {
    color: #000;
    text-decoration: none
}

.breadcrumb-navigation .breadcrumb a:hover {
    color: #000
}

.breadcrumb-navigation .breadcrumb .current {
    color: #666
}

.search-navigation .search-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.search-navigation .search-form .search-field {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.search-navigation .search-form .search-field:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, .2), 0 4px 8px rgba(0, 0, 0, .15)
}

.search-navigation .search-form .search-submit {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
    background: linear-gradient(135deg, #000 0%, #000 100%);
    color: #fff;
    padding: 10px 20px
}

.search-navigation .search-form .search-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

.search-navigation .search-form .search-submit:hover {
    background: linear-gradient(135deg, black 0%, black 100%)
}

.language-switcher {
    position: relative
}

.language-switcher .language-toggle {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px
}

.language-switcher .language-toggle:hover {
    color: #000
}

.language-switcher .language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
    border-radius: 8px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all .3s ease;
    z-index: 1000
}

.language-switcher .language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.language-switcher .language-dropdown a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    transition: all .3s ease
}

.language-switcher .language-dropdown a:hover {
    background: rgba(0, 0, 0, .1);
    color: #000
}

.content-area {
    padding: 30px 0
}

@media(max-width: 767.98px) {
    .content-area {
        padding: 20px 0
    }
}

.main-content {
    padding: 30px 0
}

@media(max-width: 1199.98px) {
    .main-content {
        padding: 20px 0
    }
}

ul,
li,
td,
tr,
th {
    color: #000
}

.hero-banner {
    background: linear-gradient(135deg, #000, #000);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2);
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center
}

.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .1);
    z-index: 1
}

@media(max-width: 1199.98px) {
    .hero-banner {
        padding: 30px;
        margin-bottom: 30px
    }
}

.hero-banner .banner-content {
    color: #fff;
    position: relative;
    z-index: 2
}

.hero-banner .banner-content .banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff
}

@media(max-width: 1199.98px) {
    .hero-banner .banner-content .banner-title {
        font-size: 2rem
    }
}

.hero-banner .banner-content .banner-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: .9;
    color: #fff
}

@media(max-width: 1199.98px) {
    .hero-banner .banner-content .banner-description {
        font-size: 1rem
    }
}

.hero-banner .banner-content .banner-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px
}

@media(max-width: 1199.98px) {
    .hero-banner .banner-content .banner-actions {
        flex-direction: column;
        gap: 10px
    }
}

.page-intro {
    margin-bottom: 40px
}

.page-intro .page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px
}

@media(max-width: 1199.98px) {
    .page-intro .page-title {
        font-size: 1.5rem
    }
}

.page-intro .page-content {
    color: #666;
    line-height: 1.6
}

.page-intro .page-content p {
    margin-bottom: 20px
}

.page-intro .page-content p:last-child {
    margin-bottom: 0
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700
}

@media(max-width: 1199.98px) {
    .section-title {
        font-size: 1.5rem
    }
}

.section-content {
    margin-top: 30px;
    color: #666;
    line-height: 1.6
}

.section-content p {
    margin-bottom: 20px
}

.section-content p:last-child {
    margin-bottom: 0
}

.popular-games {
    margin-bottom: 40px
}

.popular-games .games-swiper {
    margin-bottom: 30px
}

.popular-games .games-swiper .swiper-slide {
    height: auto
}

.popular-games .games-swiper .swiper-button-next,
.popular-games .games-swiper .swiper-button-prev {
    color: #000;
    background: hsla(0, 0%, 100%, .9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

.popular-games .games-swiper .swiper-button-next:hover,
.popular-games .games-swiper .swiper-button-prev:hover {
    background: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2)
}

.popular-games .games-swiper .swiper-button-next::after,
.popular-games .games-swiper .swiper-button-prev::after {
    font-size: 1rem;
    font-weight: bold
}

.popular-games .games-swiper .swiper-pagination {
    position: relative;
    margin-top: 20px
}

.popular-games .games-swiper .swiper-pagination .swiper-pagination-bullet {
    background: #000;
    opacity: .5
}

.popular-games .games-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1
}

.popular-games .game-card {
    position: relative;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
    transition: all .3s ease;
    cursor: pointer
}

.popular-games .game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2)
}

.popular-games .game-card:hover .game-overlay {
    background: rgba(0, 0, 0, .7)
}

.popular-games .game-card .game-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1
}

.popular-games .game-card .game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.popular-games .game-card .game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    transition: all .3s ease;
    z-index: 2
}

.popular-games .game-card .game-overlay .game-info .game-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .5);
    text-align: center
}

.popular-games .game-card .game-overlay .game-info .game-provider {
    color: hsla(0, 0%, 100%, .9);
    font-size: .9rem;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .5);
    text-align: center
}

.popular-games .game-card .game-overlay .game-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .3s ease;
    z-index: 3
}

.popular-games .game-card .game-overlay .game-actions .game-play-btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
    background: linear-gradient(135deg, #000 0%, #000 100%);
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .3)
}

.popular-games .game-card .game-overlay .game-actions .game-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

.popular-games .game-card .game-overlay .game-actions .game-play-btn:hover {
    background: linear-gradient(135deg, black 0%, black 100%)
}

.popular-games .game-card .game-overlay .game-actions .game-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .4)
}

.popular-games .game-card:hover .game-overlay {
    background: rgba(0, 0, 0, .9)
}

.popular-games .game-card:hover .game-overlay .game-actions {
    opacity: 1
}

.popular-games .game-card:hover .game-overlay .game-info {
    opacity: .7
}

.popular-games .game-card-link {
    display: block;
    text-decoration: none;
    color: inherit
}

.popular-games .game-card-link:hover {
    text-decoration: none;
    color: inherit
}

.game-providers {
    margin-bottom: 40px
}

.game-providers .providers-swiper {
    margin-bottom: 30px
}

.game-providers .providers-swiper .swiper-slide {
    height: auto
}

.game-providers .providers-swiper .swiper-button-next,
.game-providers .providers-swiper .swiper-button-prev {
    color: #000;
    background: hsla(0, 0%, 100%, .9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

.game-providers .providers-swiper .swiper-button-next:hover,
.game-providers .providers-swiper .swiper-button-prev:hover {
    background: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2)
}

.game-providers .providers-swiper .swiper-button-next::after,
.game-providers .providers-swiper .swiper-button-prev::after {
    font-size: 1rem;
    font-weight: bold
}

.game-providers .providers-swiper .swiper-pagination {
    position: relative;
    margin-top: 20px
}

.game-providers .providers-swiper .swiper-pagination .swiper-pagination-bullet {
    background: #000;
    opacity: .5
}

.game-providers .providers-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1
}

.game-providers .provider-card {
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    text-align: center;
    transition: all .3s ease;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.game-providers .provider-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
    transform: translateY(-2px)
}

.game-providers .provider-card .provider-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.game-providers .provider-card .provider-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain
}

.game-providers .provider-card-link {
    display: block;
    text-decoration: none;
    color: inherit
}

.game-providers .provider-card-link:hover {
    text-decoration: none;
    color: inherit
}

.sports-events {
    margin-bottom: 40px
}

.sports-events .events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px
}

@media(max-width: 1199.98px) {
    .sports-events .events-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }
}

.sports-events .event-card {
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

.sports-events .event-card .event-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px
}

.sports-events .event-card .event-header .event-geo,
.sports-events .event-card .event-header .event-league {
    background: rgba(0, 0, 0, .1);
    color: #000;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: .8rem;
    font-weight: 500
}

.sports-events .event-card .event-time {
    color: #666;
    font-size: .9rem;
    margin-bottom: 20px
}

.sports-events .event-card .event-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px
}

.sports-events .event-card .event-teams .team {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px
}

.sports-events .event-card .event-teams .team .team-logo {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, .1);
    border-radius: 50%
}

.sports-events .event-card .event-teams .team .team-name {
    font-size: .9rem;
    font-weight: 500;
    color: #000;
    text-align: center
}

.sports-events .event-card .event-teams .vs {
    font-weight: 600;
    color: #000
}

.sports-events .event-card .event-odds {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.sports-events .event-card .event-odds .odd {
    background: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: .8rem;
    font-weight: 600
}

.reviews {
    margin-bottom: 40px
}

.reviews .reviews-swiper {
    margin-bottom: 30px;
    padding: 10px 0
}

.reviews .reviews-swiper .swiper-slide {
    height: auto
}

.reviews .reviews-swiper .swiper-button-next,
.reviews .reviews-swiper .swiper-button-prev {
    color: #000;
    background: hsla(0, 0%, 100%, .9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

.reviews .reviews-swiper .swiper-button-next:hover,
.reviews .reviews-swiper .swiper-button-prev:hover {
    background: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2)
}

.reviews .reviews-swiper .swiper-button-next::after,
.reviews .reviews-swiper .swiper-button-prev::after {
    font-size: 1rem;
    font-weight: bold
}

.reviews .reviews-swiper .swiper-pagination {
    position: relative;
    margin-top: 20px
}

.reviews .reviews-swiper .swiper-pagination .swiper-pagination-bullet {
    background: #000;
    opacity: .5
}

.reviews .reviews-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1
}

.reviews .review-card {
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all .3s ease;
    border: 1px solid rgba(0, 0, 0, .1)
}

.reviews .review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2);
    border-color: #000
}

.reviews .review-card .review-rating {
    margin-bottom: 20px;
    text-align: center
}

.reviews .review-card .review-rating .fas.fa-star {
    color: #ddd;
    font-size: 1.1rem;
    margin: 0 2px
}

.reviews .review-card .review-rating .fas.fa-star.filled {
    color: #ffc107
}

.reviews .review-card .review-text {
    flex: 1;
    margin-bottom: 20px
}

.reviews .review-card .review-text p {
    color: #000;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    font-size: .95rem;
    text-align: center
}

.reviews .review-card .review-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .8rem;
    color: #999;
    border-top: 1px solid rgba(0, 0, 0, .1);
    padding-top: 10px
}

.reviews .review-card .review-author .author-name {
    font-weight: 600;
    color: #000
}

.reviews .review-card .review-author .review-date {
    color: #666
}

.reviews .review-form {
    margin-top: 30px
}

.reviews .review-form .review-author-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer
}

.reviews .review-form .review-author-label input[type=checkbox] {
    margin: 0
}

.reviews .review-form .review-author-label span {
    color: #666;
    font-size: .9rem
}

.post {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

.post .post-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, .1)
}

.post .post-header .post-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px
}

.post .post-header .post-title a {
    color: inherit;
    text-decoration: none
}

.post .post-header .post-title a:hover {
    color: #000
}

.post .post-header .post-meta {
    color: #666;
    font-size: .9rem
}

.post .post-content {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px
}

.post .post-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, .1);
    color: #666;
    font-size: .9rem
}

.content-page {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    transition: all .3s ease;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
    border-radius: 8px
}

.content-page:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

.content-page .content-page-header {
    margin-bottom: 40px;
    text-align: center
}

@media(max-width: 767.98px) {
    .content-page .content-page-header {
        margin-bottom: 30px
    }
}

.content-page .content-page-header .content-page-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff
}

@media(max-width: 767.98px) {
    .content-page .content-page-header .content-page-title {
        font-size: 2rem
    }
}

.content-page .content-page-header .content-page-description {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto
}

@media(max-width: 767.98px) {
    .content-page .content-page-header .content-page-description {
        font-size: 1rem
    }
}

.archive-header {
    margin-bottom: 40px;
    text-align: center
}

@media(max-width: 767.98px) {
    .archive-header {
        margin-bottom: 30px
    }
}

.archive-header .archive-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff
}

@media(max-width: 767.98px) {
    .archive-header .archive-title {
        font-size: 2rem
    }
}

.archive-header .archive-description {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto
}

@media(max-width: 767.98px) {
    .archive-header .archive-description {
        font-size: 1rem
    }
}

.search-results .search-form {
    margin-bottom: 40px
}

@media(max-width: 767.98px) {
    .search-results .search-form {
        margin-bottom: 30px
    }
}

.search-results .search-form .search-field {
    width: 100%;
    padding: 20px;
    font-size: 1.1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

@media(max-width: 767.98px) {
    .search-results .search-form .search-field {
        padding: 10px;
        font-size: 1rem
    }
}

.search-results .search-form .search-field:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .2), 0 4px 8px rgba(0, 0, 0, .15)
}

.search-results .search-results-count {
    margin-bottom: 30px;
    color: #666
}

@media(max-width: 767.98px) {
    .search-results .search-results-count {
        margin-bottom: 20px
    }
}

.comments-area {
    margin-top: 40px
}

@media(max-width: 767.98px) {
    .comments-area {
        margin-top: 30px
    }
}

.comments-area .comments-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #fff
}

@media(max-width: 767.98px) {
    .comments-area .comments-title {
        font-size: 1.3rem;
        margin-bottom: 20px
    }
}

.comments-area .comment-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.comments-area .comment-list .comment {
    margin-bottom: 30px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

@media(max-width: 767.98px) {
    .comments-area .comment-list .comment {
        padding: 20px;
        margin-bottom: 20px
    }
}

.comments-area .comment-list .comment .comment-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px
}

.comments-area .comment-list .comment .comment-author .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.comments-area .comment-list .comment .comment-author .author-name {
    font-weight: bold;
    color: #000
}

.comments-area .comment-list .comment .comment-author .comment-date {
    color: #666;
    font-size: .9rem
}

.comments-area .comment-list .comment .comment-content {
    line-height: 1.6;
    color: #fff
}

.comments-area .comment-list .comment .reply {
    margin-top: 10px
}

.comments-area .comment-list .comment .reply .comment-reply-link {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
    background: #000;
    color: #fff;
    font-size: .9rem;
    padding: 5px 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.comments-area .comment-list .comment .reply .comment-reply-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

.comments-area .comment-list .comment .reply .comment-reply-link:hover {
    background: #000;
    box-shadow: 0 4px 12px rgba(255, 107, 53, .25);
    transform: translateY(-2px)
}

.comments-area .comment-respond {
    margin-top: 40px
}

@media(max-width: 767.98px) {
    .comments-area .comment-respond {
        margin-top: 30px
    }
}

.comments-area .comment-respond .comment-reply-title {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #fff
}

@media(max-width: 767.98px) {
    .comments-area .comment-respond .comment-reply-title {
        font-size: 1.1rem;
        margin-bottom: 20px
    }
}

.comments-area .comment-respond .comment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

@media(max-width: 767.98px) {
    .comments-area .comment-respond .comment-form .form-row {
        grid-template-columns: 1fr;
        gap: 10px
    }
}

.comments-area .comment-respond .comment-form .form-group {
    margin-bottom: 20px
}

.comments-area .comment-respond .comment-form .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #fff
}

.comments-area .comment-respond .comment-form .form-group input,
.comments-area .comment-respond .comment-form .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.comments-area .comment-respond .comment-form .form-group input:focus,
.comments-area .comment-respond .comment-form .form-group textarea:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, .2), 0 4px 8px rgba(0, 0, 0, .15)
}

.comments-area .comment-respond .comment-form .form-group textarea {
    min-height: 120px;
    resize: vertical
}

.comments-area .comment-respond .comment-form .submit {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
    background: linear-gradient(135deg, #000 0%, #000 100%);
    color: #fff;
    padding: 10px 30px
}

.comments-area .comment-respond .comment-form .submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

.comments-area .comment-respond .comment-form .submit:hover {
    background: linear-gradient(135deg, black 0%, black 100%)
}

.related-posts {
    margin-top: 40px
}

@media(max-width: 767.98px) {
    .related-posts {
        margin-top: 30px
    }
}

.related-posts .related-posts-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #fff
}

@media(max-width: 767.98px) {
    .related-posts .related-posts-title {
        font-size: 1.3rem;
        margin-bottom: 20px
    }
}

.related-posts .related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px
}

@media(max-width: 767.98px) {
    .related-posts .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }
}

.related-posts .related-posts-grid .related-post {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    transition: all .3s ease;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
    border-radius: 8px
}

.related-posts .related-posts-grid .related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

.related-posts .related-posts-grid .related-post .related-post-thumbnail {
    margin-bottom: 20px
}

.related-posts .related-posts-grid .related-post .related-post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.related-posts .related-posts-grid .related-post .related-post-title {
    font-size: 1.1rem;
    margin-bottom: 10px
}

.related-posts .related-posts-grid .related-post .related-post-title a {
    color: #000;
    text-decoration: none
}

.related-posts .related-posts-grid .related-post .related-post-title a:hover {
    color: #000
}

.related-posts .related-posts-grid .related-post .related-post-excerpt {
    color: #666;
    font-size: .9rem;
    line-height: 1.5
}

.author-bio {
    margin-top: 40px
}

@media(max-width: 767.98px) {
    .author-bio {
        margin-top: 30px;
        padding: 20px
    }
}

.author-bio .author-info {
    margin-top: 40px;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
    gap: 40px;
    border: 2px solid rgba(0, 0, 0, .1)
}

@media(max-width: 767.98px) {
    .author-bio .author-info {
        flex-direction: column;
        align-items: center;
        gap: 20px
    }
}

.author-bio .author-info .author-avatar {
    flex-shrink: 0
}

.author-bio .author-info .author-avatar img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
    border: 4px solid #fff
}

.author-bio .author-info .author-avatar .author-avatar-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
    border: 4px solid #fff
}

.author-bio .author-info .author-details {
    flex: 1
}

.author-bio .author-info .author-details .author-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px 0
}

.author-bio .author-info .author-details .author-description {
    color: #000;
    margin: 0 0 20px 0;
    line-height: 1.6;
    font-size: 1rem
}

.author-bio .author-info .author-details .author-link {
    display: inline-block;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: .9rem;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 8px;
    transition: all .3s ease;
    text-align: center !important;
}

.author-bio .author-info .author-details .author-link:hover {
    background: #000;
    text-decoration: none;
    color: #fff
}

.text-section {
    margin: 40px 0
}

.text-section .section-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #fff
}

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

.dynamic-content {
    margin: 40px 0
}

.dynamic-content .popular-games,
.dynamic-content .game-providers,
.dynamic-content .sports-events,
.dynamic-content .reviews {
    margin-bottom: 40px
}

.dynamic-content .popular-games:last-child,
.dynamic-content .game-providers:last-child,
.dynamic-content .sports-events:last-child,
.dynamic-content .reviews:last-child {
    margin-bottom: 0
}

.author-profile {
    margin: 40px 0
}

.author-profile .author-profile-content {
    display: flex;
    gap: 40px;
    margin-bottom: 40px
}

@media(max-width: 1199.98px) {
    .author-profile .author-profile-content {
        flex-direction: column;
        gap: 30px
    }
}

.author-profile .author-profile-content .author-photo {
    flex-shrink: 0
}

.author-profile .author-profile-content .author-photo img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2);
    border: 4px solid #fff
}

.author-profile .author-profile-content .author-details {
    flex: 1
}

.author-profile .author-profile-content .author-details .author-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #000, #000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    background-clip: text
}

@media(max-width: 1199.98px) {
    .author-profile .author-profile-content .author-details .author-name {
        font-size: 2rem
    }
}

.author-profile .author-profile-content .author-details .author-position,
.author-profile .author-profile-content .author-details .author-education {
    margin-bottom: 30px
}

.author-profile .author-profile-content .author-details .author-position h2,
.author-profile .author-profile-content .author-details .author-education h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px
}

.author-profile .author-profile-content .author-details .author-position p,
.author-profile .author-profile-content .author-details .author-education p {
    color: #fff;
    line-height: 1.6;
    font-size: 1rem
}

.author-profile .author-profile-content .author-details .author-social {
    margin-top: 40px
}

.author-profile .author-profile-content .author-details .author-social h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px
}

.author-profile .author-profile-content .author-details .author-social .social-links {
    display: flex;
    gap: 20px
}

.author-profile .author-profile-content .author-details .author-social .social-links .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #000, #000);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all .3s ease;
    font-size: 1.2rem
}

.author-profile .author-profile-content .author-details .author-social .social-links .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, .25);
    color: #fff;
    text-decoration: none
}

.author-profile .about-author {
    background: #272727;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
    border: 2px solid rgba(0, 0, 0, .1)
}

.author-profile .about-author h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    text-align: center
}

.author-profile .about-author .about-author-content p {
    color: #fff;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 20px
}

.author-profile .about-author .about-author-content p:last-child {
    margin-bottom: 0
}

.author-articles {
    margin: 40px 0
}

.author-articles .section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #000;
    font-size: 2rem;
    font-weight: 700
}

.author-articles .articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px
}

@media(max-width: 1199.98px) {
    .author-articles .articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px
    }
}

@media(max-width: 767.98px) {
    .author-articles .articles-grid {
        grid-template-columns: 1fr
    }
}

.author-articles .articles-grid .article-card {
    background: #272727;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
    transition: all .3s ease
}

.author-articles .articles-grid .article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2)
}

.author-articles .articles-grid .article-card .article-link {
    text-decoration: none;
    color: inherit;
    display: block
}

.author-articles .articles-grid .article-card .article-link:hover {
    text-decoration: none;
    color: inherit
}

.author-articles .articles-grid .article-card .article-image {
    height: 200px;
    overflow: hidden
}

.author-articles .articles-grid .article-card .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease
}

.author-articles .articles-grid .article-card .article-content {
    padding: 30px
}

.author-articles .articles-grid .article-card .article-content .article-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4
}

.author-articles .articles-grid .article-card .article-content .article-description {
    color: #fff;
    line-height: 1.6;
    font-size: .95rem;
    margin: 0
}

.author-articles .articles-grid .article-card:hover .article-image img {
    transform: scale(1.05)
}

.acf-block-edit-mode {
    position: relative
}

.acf-block-edit-mode::before {
    content: "Edit mode";
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, .9);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: .8rem;
    font-weight: 600;
    z-index: 10
}

.acf-block-edit-mode .acf-fields {
    display: block !important
}

.acf-block-edit-mode .banner-content {
    opacity: .3;
    pointer-events: none
}

.acf-block-preview-mode .banner-content {
    opacity: 1;
    pointer-events: auto
}

.acf-block-preview-mode .acf-fields {
    display: none !important
}

.acf-block-mode-indicator {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, .9);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: .8rem;
    font-weight: 600;
    z-index: 10;
    transition: all .3s ease
}

.acf-block-mode-indicator.edit-mode {
    background: rgba(0, 0, 0, .9)
}

.acf-block-mode-indicator.preview-mode {
    background: rgba(0, 0, 0, .9)
}

.game-single {
    margin: 40px 0
}

.game-single .game-header {
    margin-bottom: 40px
}

.game-single .game-header .game-header-content {
    display: flex;
    gap: 40px;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

@media(max-width: 1199.98px) {
    .game-single .game-header .game-header-content {
        flex-direction: column;
        gap: 30px;
        padding: 30px
    }
}

.game-single .game-header .game-image {
    flex: 0 0 400px;
    height: 300px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

@media(max-width: 1199.98px) {
    .game-single .game-header .game-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px
    }
}

.game-single .game-header .game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease
}

.game-single .game-header .game-image:hover img {
    transform: scale(1.05)
}

.game-single .game-header .game-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px
}

.game-single .game-header .game-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2
}

@media(max-width: 1199.98px) {
    .game-single .game-header .game-title {
        font-size: 2rem
    }
}

.game-single .game-header .game-name {
    font-size: 1.2rem;
    color: #666
}

.game-single .game-header .game-name strong {
    color: #fff;
    margin-right: 10px
}

.game-single .game-header .game-description {
    color: #666;
    line-height: 1.6
}

.game-single .game-header .game-description strong {
    color: #fff;
    display: block;
    margin-bottom: 10px
}

.game-single .game-header .game-description p {
    margin: 0
}

.game-single .game-header .game-actions {
    display: flex;
    gap: 20px;
    margin-top: auto
}

@media(max-width: 1199.98px) {
    .game-single .game-header .game-actions {
        flex-direction: column;
        gap: 10px
    }
}

.game-single .game-content {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

@media(max-width: 1199.98px) {
    .game-single .game-content {
        padding: 30px
    }
}

.game-single .game-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px
}

.game-single .game-content p:last-child {
    margin-bottom: 0
}

.game-single .game-meta {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.game-single .game-meta .game-meta-content {
    display: flex;
    justify-content: space-between;
    gap: 30px
}

@media(max-width: 1199.98px) {
    .game-single .game-meta .game-meta-content {
        flex-direction: column;
        gap: 20px
    }
}

.game-single .game-meta .meta-item {
    color: #666
}

.game-single .game-meta .meta-item strong {
    color: #fff;
    margin-right: 10px
}

.game-single .game-meta .meta-item a {
    color: #000;
    text-decoration: none
}

.game-single .game-meta .meta-item a:hover {
    text-decoration: underline
}

.casino-single {
    margin: 40px 0
}

.casino-single .casino-header {
    margin-bottom: 40px
}

.casino-single .casino-header .casino-header-content {
    display: flex;
    gap: 40px;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

@media(max-width: 1199.98px) {
    .casino-single .casino-header .casino-header-content {
        flex-direction: column;
        gap: 30px;
        padding: 30px
    }
}

.casino-single .casino-header .casino-image {
    flex: 0 0 400px;
    height: 300px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

@media(max-width: 1199.98px) {
    .casino-single .casino-header .casino-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px
    }
}

.casino-single .casino-header .casino-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease
}

.casino-single .casino-header .casino-image:hover img {
    transform: scale(1.05)
}

.casino-single .casino-header .casino-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px
}

.casino-single .casino-header .casino-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2
}

@media(max-width: 1199.98px) {
    .casino-single .casino-header .casino-title {
        font-size: 2rem
    }
}

.casino-single .casino-header .casino-name {
    font-size: 1.2rem;
    color: #666
}

.casino-single .casino-header .casino-name strong {
    color: #fff;
    margin-right: 10px
}

.casino-single .casino-header .casino-actions {
    display: flex;
    gap: 20px;
    margin-top: auto
}

@media(max-width: 1199.98px) {
    .casino-single .casino-header .casino-actions {
        flex-direction: column;
        gap: 10px
    }
}

.casino-single .casino-content {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

@media(max-width: 1199.98px) {
    .casino-single .casino-content {
        padding: 30px
    }
}

.casino-single .casino-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px
}

.casino-single .casino-content p:last-child {
    margin-bottom: 0
}

.casino-single .casino-meta {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.casino-single .casino-meta .casino-meta-content {
    display: flex;
    justify-content: space-between;
    gap: 30px
}

@media(max-width: 1199.98px) {
    .casino-single .casino-meta .casino-meta-content {
        flex-direction: column;
        gap: 20px
    }
}

.casino-single .casino-meta .meta-item {
    color: #666
}

.casino-single .casino-meta .meta-item strong {
    color: #fff;
    margin-right: 10px
}

.casino-single .casino-meta .meta-item a {
    color: #000;
    text-decoration: none
}

.casino-single .casino-meta .meta-item a:hover {
    text-decoration: underline
}

.casinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px
}

.casinos-grid .casino-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
    transition: all .3s ease
}

.casinos-grid .casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2)
}

.casinos-grid .casino-card .casino-card-image {
    height: 200px;
    overflow: hidden
}

.casinos-grid .casino-card .casino-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease
}

.casinos-grid .casino-card .casino-card-image:hover img {
    transform: scale(1.05)
}

.casinos-grid .casino-card .casino-card-content {
    padding: 30px
}

.casinos-grid .casino-card .casino-card-content .casino-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px
}

.casinos-grid .casino-card .casino-card-content .casino-card-title a {
    color: #fff;
    text-decoration: none
}

.casinos-grid .casino-card .casino-card-content .casino-card-title a:hover {
    color: #000
}

.casinos-grid .casino-card .casino-card-content .casino-card-name {
    margin-bottom: 20px;
    color: #666
}

.casinos-grid .casino-card .casino-card-content .casino-card-name strong {
    color: #fff;
    margin-right: 10px
}

.casinos-grid .casino-card .casino-card-content .casino-card-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px
}

.casinos-grid .casino-card .casino-card-content .casino-card-categories {
    margin-bottom: 20px;
    color: #666
}

.casinos-grid .casino-card .casino-card-content .casino-card-categories a {
    color: #000;
    text-decoration: none
}

.casinos-grid .casino-card .casino-card-content .casino-card-categories a:hover {
    text-decoration: underline
}

.casinos-grid .casino-card .casino-card-content .casino-card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.no-casinos {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.no-casinos h2 {
    color: #fff;
    margin-bottom: 20px
}

.no-casinos p {
    color: #666
}

.archive-header {
    text-align: center;
    margin-bottom: 40px
}

.archive-header .archive-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px
}

@media(max-width: 1199.98px) {
    .archive-header .archive-title {
        font-size: 2rem
    }
}

.archive-header .archive-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px
}

@media(max-width: 1199.98px) {
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px
    }
}

@media(max-width: 767.98px) {
    .games-grid {
        grid-template-columns: 1fr
    }
}

.game-card-link-full {
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    z-index: 1
}

.game-card-link-full:hover,
.game-card-link-full:focus {
    outline: none
}

.game-card-link-full:hover .game-card,
.game-card-link-full:focus .game-card {
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2);
    transform: translateY(-5px)
}

.game-card-link-full:hover .game-overlay,
.game-card-link-full:focus .game-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, .7)
}

.game-card-link-full:hover .game-play-icon,
.game-card-link-full:focus .game-play-icon {
    opacity: 1;
    transform: scale(1.1)
}

.game-card {
    position: relative;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
    transition: all .3s ease;
    cursor: pointer
}

.game-card .game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .3);
    opacity: 0;
    transition: all .3s ease;
    z-index: 2
}

.game-card .game-overlay .game-play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all .3s ease
}

.game-card .game-overlay .game-play-icon svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6))
}

.game-card .game-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px 20px 10px 20px;
    text-align: center
}

.game-card .game-info .game-name {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: .2em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .5)
}

.game-card .game-info .game-provider {
    color: hsla(0, 0%, 100%, .9);
    font-size: .9rem;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .5)
}

.game-card:hover .game-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, .7)
}

.game-card:hover .game-play-icon {
    opacity: 1;
    transform: scale(1.1)
}

.no-games {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.no-games h2 {
    color: #fff;
    margin-bottom: 20px
}

.no-games p {
    color: #666;
    margin: 0
}

.author-bio-page .author-header {
    margin-bottom: 40px
}

.author-bio-page .author-header .author-profile {
    display: flex;
    gap: 40px;
    margin-bottom: 40px
}

@media(max-width: 1199.98px) {
    .author-bio-page .author-header .author-profile {
        flex-direction: column;
        gap: 30px
    }
}

.author-bio-page .author-header .author-profile .author-avatar-large {
    flex-shrink: 0
}

.author-bio-page .author-header .author-profile .author-avatar-large img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2)
}

.author-bio-page .author-header .author-profile .author-avatar-large .author-avatar-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #fff;
    font-weight: 700
}

.author-bio-page .author-header .author-profile .author-info {
    flex: 1
}

.author-bio-page .author-header .author-profile .author-info .author-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0
}

@media(max-width: 991.98px) {
    .author-bio-page .author-header .author-profile .author-info .author-name {
        font-size: 2rem
    }
}

.author-bio-page .author-header .author-profile .author-info .author-experience,
.author-bio-page .author-header .author-profile .author-info .author-specialization,
.author-bio-page .author-header .author-profile .author-info .author-location,
.author-bio-page .author-header .author-profile .author-info .author-website {
    color: #666;
    margin-bottom: 10px;
    font-size: 1rem
}

.author-bio-page .author-header .author-profile .author-info .author-experience strong,
.author-bio-page .author-header .author-profile .author-info .author-specialization strong,
.author-bio-page .author-header .author-profile .author-info .author-location strong,
.author-bio-page .author-header .author-profile .author-info .author-website strong {
    color: #fff;
    margin-right: 10px
}

.author-bio-page .author-header .author-profile .author-info .author-experience a,
.author-bio-page .author-header .author-profile .author-info .author-specialization a,
.author-bio-page .author-header .author-profile .author-info .author-location a,
.author-bio-page .author-header .author-profile .author-info .author-website a {
    color: #000;
    text-decoration: none
}

.author-bio-page .author-header .author-profile .author-info .author-experience a:hover,
.author-bio-page .author-header .author-profile .author-info .author-specialization a:hover,
.author-bio-page .author-header .author-profile .author-info .author-location a:hover,
.author-bio-page .author-header .author-profile .author-info .author-website a:hover {
    text-decoration: underline
}

.author-bio-page .author-header .author-profile .author-info .author-description {
    color: #fff;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-top: 30px
}

.author-bio-page .author-header .author-credentials {
    margin-bottom: 40px
}

.author-bio-page .author-header .author-credentials h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px
}

.author-bio-page .author-header .author-credentials .credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px
}

.author-bio-page .author-header .author-credentials .credentials-grid .credential-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    border: 1px solid #e0e0e0
}

.author-bio-page .author-header .author-credentials .credentials-grid .credential-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 10px 0
}

.author-bio-page .author-header .author-credentials .credentials-grid .credential-item .credential-year {
    color: #000;
    font-weight: 600;
    margin: 0 0 10px 0
}

.author-bio-page .author-header .author-credentials .credentials-grid .credential-item .credential-issuer {
    color: #666;
    font-size: .9rem;
    margin: 0
}

.author-bio-page .author-header .author-social-links {
    margin-bottom: 40px
}

.author-bio-page .author-header .author-social-links h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px
}

.author-bio-page .author-header .author-social-links .social-links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.author-bio-page .author-header .author-social-links .social-links-grid .social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 30px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    transition: all .3s ease
}

.author-bio-page .author-header .author-social-links .social-links-grid .social-link:hover {
    background: #000;
    color: #fff;
    border-color: #000
}

.author-bio-page .author-header .author-social-links .social-links-grid .social-link i {
    font-size: 1.2rem
}

.author-bio-page .author-content .content-area {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.author-bio-page .author-content .content-area .entry-header {
    margin-bottom: 30px
}

.author-bio-page .author-content .content-area .entry-header .entry-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0
}

.author-bio-page .author-content .content-area .entry-content {
    color: #fff;
    line-height: 1.8;
    font-size: 1.1rem
}

.author-bio-page .author-content .content-area .entry-content p {
    margin-bottom: 20px
}

.author-bio-page .author-content .content-area .entry-content p:last-child {
    margin-bottom: 0
}

@media(max-width: 767.98px) {
    .sidebar {
        margin-top: 30px
    }
}

/*.widget {
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px
}*/

@media(max-width: 767.98px) {
    .widget {
        padding: 20px;
        margin-bottom: 20px
    }
}

.widget:last-child {
    margin-bottom: 0
}

/*.widget .widget-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #000
}*/

@media(max-width: 767.98px) {
    .widget .widget-title {
        font-size: 1.2rem
    }
}

.widget .widget-content {
    color: #666;
    line-height: 1.6
}

.widget_search .search-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.widget_search .search-form .search-field {
    flex: 1;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 4px;
    font-size: .9rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.widget_search .search-form .search-field:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, .2), 0 4px 8px rgba(0, 0, 0, .15)
}

.widget_search .search-form .search-submit {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
    background: linear-gradient(135deg, #000 0%, #000 100%);
    color: #fff;
    padding: 10px 20px;
    font-size: .9rem
}

.widget_search .search-form .search-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

.widget_search .search-form .search-submit:hover {
    background: linear-gradient(135deg, black 0%, black 100%)
}

.widget_categories .cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .1)
}

.widget_categories .cat-item:last-child {
    border-bottom: none
}

.widget_categories .cat-item a {
    color: #666;
    text-decoration: none;
    transition: all .3s ease
}

.widget_categories .cat-item a:hover {
    color: #000;
    transform: translateY(-2px)
}

.widget_categories .cat-item .cat-count {
    background: rgba(0, 0, 0, .1);
    color: #000;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: .8rem;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.widget_popular_posts .popular-posts .popular-post {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .1)
}

.widget_popular_posts .popular-posts .popular-post:last-child {
    border-bottom: none
}

.widget_popular_posts .popular-posts .popular-post .post-thumbnail {
    flex: 0 0 60px
}

.widget_popular_posts .popular-posts .popular-post .post-thumbnail img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.widget_popular_posts .popular-posts .popular-post .post-info {
    flex: 1
}

.widget_popular_posts .popular-posts .popular-post .post-info .post-title {
    font-size: .9rem;
    margin-bottom: 5px
}

.widget_popular_posts .popular-posts .popular-post .post-info .post-title a {
    color: #fff;
    text-decoration: none
}

.widget_popular_posts .popular-posts .popular-post .post-info .post-title a:hover {
    color: #000
}

.widget_popular_posts .popular-posts .popular-post .post-info .post-date {
    font-size: .8rem;
    color: #666
}

.widget_tag_cloud .tagcloud {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap
}

.widget_tag_cloud .tagcloud a {
    background: rgba(0, 0, 0, .1);
    color: #000;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: .8rem;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.widget_tag_cloud .tagcloud a:hover {
    background: #000;
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 107, 53, .25);
    transform: translateY(-2px)
}

.widget_calendar table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    border-radius: 4px;
    overflow: hidden
}

.widget_calendar table caption {
    background: #000;
    color: #fff;
    padding: 10px;
    font-weight: bold
}

.widget_calendar table th,
.widget_calendar table td {
    padding: 5px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, .1)
}

.widget_calendar table th {
    background: rgba(0, 0, 0, .1);
    color: #fff;
    font-weight: 600
}

.widget_calendar table td {
    color: #fff
}

.widget_calendar table td a {
    color: #000;
    text-decoration: none;
    font-weight: 500
}

.widget_calendar table td a:hover {
    color: #000
}

.widget_text .textwidget p {
    color: #fff;
    margin-bottom: 10px
}

.widget_text .textwidget p:last-child {
    margin-bottom: 0
}

.widget_text .textwidget a {
    color: #000;
    text-decoration: none
}

.widget_text .textwidget a:hover {
    color: #000
}

.widget_archive .archive-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .1)
}

.widget_archive .archive-list li:last-child {
    border-bottom: none
}

.widget_archive .archive-list li a {
    color: #666;
    text-decoration: none;
    transition: all .3s ease
}

.widget_archive .archive-list li a:hover {
    color: #000;
    transform: translateY(-2px)
}

.widget_archive .archive-list li .post-count {
    background: rgba(0, 0, 0, .1);
    color: #000;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: .8rem;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.sidebar-section {
    margin-bottom: 40px
}

.sidebar-section .section-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center
}

@media(max-width: 767.98px) {
    .sidebar-section .section-title {
        font-size: 1.3rem
    }
}

.newsletter-signup {
    background: linear-gradient(135deg, #000 0%, #000 100%);
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2)
}

.newsletter-signup .newsletter-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px
}

.newsletter-signup .newsletter-description {
    margin-bottom: 20px;
    opacity: .9
}

.newsletter-signup .newsletter-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

@media(max-width: 767.98px) {
    .newsletter-signup .newsletter-form {
        flex-direction: column
    }
}

.newsletter-signup .newsletter-form .newsletter-input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: .9rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.newsletter-signup .newsletter-form .newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px hsla(0, 0%, 100%, .3), 0 4px 8px rgba(0, 0, 0, .15)
}

.newsletter-signup .newsletter-form .newsletter-submit {
    background: #fff;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.newsletter-signup .newsletter-form .newsletter-submit:hover {
    background: hsl(0, 0%, 95%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
    transform: translateY(-2px)
}

.site-footer {
    background: #000;
    color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2);
    padding: 30px 0
}

@media(max-width: 1199.98px) {
    .site-footer {
        padding: 20px 0
    }
}

.footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 20px
}

@media(max-width: 1199.98px) {
    .footer-main {
        flex-direction: column;
        gap: 30px;
        text-align: center
    }
}

.footer-main .footer-logo {
    flex: 0 0 auto;
    min-width: 120px
}

@media(max-width: 1199.98px) {
    .footer-main .footer-logo {
        order: 1;
        min-width: auto
    }
}

.footer-main .footer-logo .site-branding {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

@media(max-width: 1199.98px) {
    .footer-main .footer-logo .site-branding {
        flex-direction: column;
        text-align: center
    }
}

.footer-main .footer-logo .site-branding .site-logo img {
    max-height: 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

@media(max-width: 1199.98px) {
    .footer-main .footer-logo .site-branding .site-logo img {
        max-height: 35px
    }
}

.footer-main .footer-logo .site-branding .site-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin: 0
}

@media(max-width: 1199.98px) {
    .footer-main .footer-logo .site-branding .site-title {
        font-size: 1.3rem
    }
}

.footer-main .footer-logo .site-branding .site-title a {
    color: inherit;
    text-decoration: none
}

.footer-main .footer-logo .site-branding .site-title a:hover {
    color: #000
}

.footer-main .footer-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0
}

@media(max-width: 1199.98px) {
    .footer-main .footer-navigation {
        order: 2;
        width: 100%
    }
}

.footer-main .footer-navigation .footer-nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap
}

@media(max-width: 1199.98px) {
    .footer-main .footer-navigation .footer-nav-menu {
        flex-direction: column;
        gap: 10px;
        flex-wrap: nowrap
    }
}

.footer-main .footer-navigation .footer-nav-menu li {
    position: relative;
    white-space: nowrap
}

.footer-main .footer-navigation .footer-nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 5px 10px;
    transition: all .3s ease;
    font-size: .9rem
}

@media(max-width: 1199.98px) {
    .footer-main .footer-navigation .footer-nav-menu li a {
        font-size: 1rem;
        padding: 10px
    }
}

.footer-main .footer-navigation .footer-nav-menu li a:hover {
    color: #000
}

.footer-main .footer-navigation .footer-nav-menu li.current-menu-item>a,
.footer-main .footer-navigation .footer-nav-menu li.current-page-ancestor>a {
    color: #000;
    font-weight: 600
}

.footer-main .footer-social {
    flex: 0 0 auto;
    min-width: 120px
}

@media(max-width: 1199.98px) {
    .footer-main .footer-social {
        order: 3;
        width: 100%;
        min-width: auto
    }
}

.footer-main .footer-social .social-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 10px 0;
    text-align: center
}

@media(max-width: 1199.98px) {
    .footer-main .footer-social .social-title {
        font-size: .9rem
    }
}

.footer-main .footer-social .social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

@media(max-width: 1199.98px) {
    .footer-main .footer-social .social-links {
        gap: 20px
    }
}

.footer-main .footer-social .social-links .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, .1);
    color: #000;
    border-radius: 50%;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

@media(max-width: 1199.98px) {
    .footer-main .footer-social .social-links .social-link {
        width: 40px;
        height: 40px
    }
}

.footer-main .footer-social .social-links .social-link i {
    font-size: 1rem
}

@media(max-width: 1199.98px) {
    .footer-main .footer-social .social-links .social-link i {
        font-size: 1.1rem
    }
}

.footer-main .footer-social .social-links .social-link:hover {
    background: #000;
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 107, 53, .25);
    transform: translateY(-2px)
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, .1)
}

@media(max-width: 1199.98px) {
    .footer-copyright {
        padding-top: 20px
    }
}

.footer-copyright p {
    color: #666;
    font-size: .9rem;
    margin: 0
}

@media(max-width: 1199.98px) {
    .footer-copyright p {
        font-size: .8rem
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 107, 53, .25)
}

@media(max-width: 767.98px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px
    }
}

.back-to-top:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2)
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible
}

.back-to-top i {
    font-size: 1.2rem
}

@media(max-width: 767.98px) {
    .back-to-top i {
        font-size: 1rem
    }
}

.footer-widget.widget_text .textwidget p {
    margin-bottom: 20px;
    color: #666
}

.footer-widget.widget_text .textwidget a {
    color: #000;
    text-decoration: none
}

.footer-widget.widget_text .textwidget a:hover {
    color: #000
}

.footer-widget.widget_categories .widget-content ul li a,
.footer-widget.widget_archive .widget-content ul li a,
.footer-widget.widget_pages .widget-content ul li a {
    color: #666
}

.footer-widget.widget_categories .widget-content ul li a:hover,
.footer-widget.widget_archive .widget-content ul li a:hover,
.footer-widget.widget_pages .widget-content ul li a:hover {
    color: #000
}

.footer-widget.widget_recent_entries .widget-content .recent-posts li a {
    color: #666
}

.footer-widget.widget_recent_entries .widget-content .recent-posts li a:hover {
    color: #000
}

.footer-widget.widget_recent_entries .widget-content .recent-posts li .post-date {
    color: #666
}

/*@media(max-width: 767.98px) {
    .footer-widgets .footer-widget {
        text-align: center
    }

    .footer-widgets .footer-widget .widget-content ul li {
        text-align: left
    }

    .footer-widgets .footer-widget.footer-contact .contact-info .contact-item {
        justify-content: center
    }
}*/

.footer-widget {
    animation: fadeIn .6s ease-out
}

.footer-widgets .footer-widget:nth-child(1) {
    animation-delay: .1s
}

.footer-widgets .footer-widget:nth-child(2) {
    animation-delay: .2s
}

.footer-widgets .footer-widget:nth-child(3) {
    animation-delay: .3s
}

.footer-widgets .footer-widget:nth-child(4) {
    animation-delay: .4s
}

@media(max-width: 767.98px) {
    body {
        font-size: 14px
    }

    .container {
        padding: 0 10px
    }

    h1 {
        font-size: 1.8rem !important
    }

    h2 {
        font-size: 1.5rem !important
    }

    h3 {
        font-size: 1.3rem !important
    }

    h4 {
        font-size: 1.1rem !important
    }

    .btn {
        padding: 10px 20px;
        font-size: .9rem
    }

    .btn--large {
        padding: 20px 30px;
        font-size: 1rem
    }

    .card {
        padding: 20px;
        margin-bottom: 20px
    }

    input,
    textarea,
    select {
        font-size: 16px;
        padding: 10px
    }

    .main-navigation .nav-container {
        padding: 30px
    }

    .main-navigation .primary-menu>li>a {
        padding: 20px;
        font-size: 1.1rem;
        border-bottom: 1px solid hsla(0, 0%, 100%, .1)
    }

    .mobile-menu-overlay.active {
        display: block
    }

    .site-header .header-main .site-branding .site-logo img {
        max-height: 40px
    }

    .site-header .header-main .site-branding .site-title {
        font-size: 1.3rem
    }

    .content-area .post .post-header .post-title {
        font-size: 1.4rem
    }

    .content-area .post .post-header .post-meta {
        font-size: .8rem
    }

    .sidebar .widget .widget-title {
        font-size: 1.1rem
    }

    .site-footer .footer-top .footer-widgets .footer-widget .widget-title {
        font-size: 1.1rem
    }

    .row {
        margin: -5px
    }

    .row .col {
        padding: 0 5px
    }

    .section {
        padding: 30px 0
    }

    .section--small {
        padding: 20px 0
    }

    .section--large {
        padding: 40px 0
    }

    .d-mobile-none {
        display: none !important
    }

    .d-mobile-block {
        display: block !important
    }

    .d-mobile-flex {
        display: flex !important
    }

    .text-mobile-center {
        text-align: center !important
    }

    .text-mobile-left {
        text-align: left !important
    }

    .text-mobile-right {
        text-align: right !important
    }

    .m-mobile-0 {
        margin: 0 !important
    }

    .m-mobile-1 {
        margin: 5px !important
    }

    .m-mobile-2 {
        margin: 10px !important
    }

    .m-mobile-3 {
        margin: 20px !important
    }

    .p-mobile-0 {
        padding: 0 !important
    }

    .p-mobile-1 {
        padding: 5px !important
    }

    .p-mobile-2 {
        padding: 10px !important
    }

    .p-mobile-3 {
        padding: 20px !important
    }

    a,
    button,
    input[type=submit],
    input[type=button] {
        min-height: 44px;
        min-width: 44px
    }

    .form-group {
        margin-bottom: 20px
    }

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: 500
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        outline: none;
        border-color: #000;
        box-shadow: 0 0 0 2px rgba(0, 0, 0, .2)
    }

    .search-form .search-field {
        padding: 10px;
        font-size: 16px
    }

    .search-form .search-submit {
        padding: 10px 20px
    }

    .pagination .page-numbers {
        padding: 10px 20px;
        font-size: .9rem
    }

    .comments-area .comment {
        padding: 20px
    }

    .comments-area .comment .comment-author .avatar {
        width: 40px;
        height: 40px
    }

    .comments-area .comment-form .form-row {
        grid-template-columns: 1fr
    }

    .widget .widget-title {
        font-size: 1.1rem
    }

    .widget.widget_categories .cat-item a,
    .widget.widget_categories .archive-item a,
    .widget.widget_archive .cat-item a,
    .widget.widget_archive .archive-item a {
        padding: 10px
    }

    .hero-section .hero-content h1 {
        font-size: 1.8rem
    }

    .hero-section .hero-content p {
        font-size: 1rem
    }

    .hero-section .hero-content .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px
    }

    .breadcrumbs .breadcrumb-list {
        font-size: .8rem
    }

    .breadcrumbs .breadcrumb-list li:not(:last-child)::after {
        margin-left: 5px
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px
    }

    .back-to-top i {
        font-size: 1rem
    }

    .header-sticky .header-main {
        padding: 10px 0
    }

    .header-sticky .header-main .site-branding .site-logo img {
        max-height: 35px
    }

    .header-sticky .header-main .site-branding .site-title {
        font-size: 1.2rem
    }

    .search-overlay .search-form .search-input {
        padding: 20px;
        font-size: 1rem
    }

    .search-overlay .search-close {
        top: 20px;
        right: 20px;
        font-size: 1.5rem
    }

    .language-switcher .language-dropdown {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 300px
    }

    .newsletter-signup {
        padding: 20px
    }

    .newsletter-signup .newsletter-title {
        font-size: 1.1rem
    }

    .newsletter-signup .newsletter-form .newsletter-input {
        padding: 10px
    }

    .site-footer .footer-top .footer-widgets .footer-widget {
        text-align: center
    }

    .site-footer .footer-top .footer-widgets .footer-widget .widget-content ul li {
        text-align: left
    }

    .site-footer .footer-top .footer-widgets .footer-widget.footer-contact .contact-info .contact-item {
        justify-content: center
    }

    .site-footer .footer-main .footer-content .footer-navigation .footer-menu {
        gap: 20px
    }

    .site-footer .footer-main .footer-content .footer-navigation .footer-menu a {
        font-size: .8rem
    }

    .fade-in {
        animation-duration: .4s
    }

/*    * {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
    }*/

    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0
    }

    a:focus,
    button:focus,
    input:focus,
    textarea:focus,
    select:focus {
        outline: 2px solid gold;
        outline-offset: 2px
    }

    html {
        scroll-behavior: smooth
    }

    @viewport {
        width: device-width;
        initial-scale: 1
    }
}

.d-none {
    display: none !important
}

.d-block {
    display: block !important
}

.d-inline {
    display: inline !important
}

.d-inline-block {
    display: inline-block !important
}

.d-flex {
    display: flex !important
}

.d-inline-flex {
    display: inline-flex !important
}

.d-grid {
    display: grid !important
}

.flex-row {
    flex-direction: row !important
}

.flex-column {
    flex-direction: column !important
}

.flex-wrap {
    flex-wrap: wrap !important
}

.flex-nowrap {
    flex-wrap: nowrap !important
}

.flex-1 {
    flex: 1 !important
}

.flex-auto {
    flex: auto !important
}

.flex-none {
    flex: none !important
}

.justify-start {
    justify-content: flex-start !important
}

.justify-end {
    justify-content: flex-end !important
}

.justify-center {
    justify-content: center !important
}

.justify-between {
    justify-content: space-between !important
}

.justify-around {
    justify-content: space-around !important
}

.justify-evenly {
    justify-content: space-evenly !important
}

.align-start {
    align-items: flex-start !important
}

.align-end {
    align-items: flex-end !important
}

.align-center {
    align-items: center !important
}

.align-stretch {
    align-items: stretch !important
}

.align-baseline {
    align-items: baseline !important
}

.text-left {
    text-align: left !important
}

.text-center {
    text-align: center !important
}

.text-right {
    text-align: right !important
}

.text-justify {
    text-align: justify !important
}

.text-decoration-none {
    text-decoration: none !important
}

.text-decoration-underline {
    text-decoration: underline !important
}

.text-decoration-line-through {
    text-decoration: line-through !important
}

.text-lowercase {
    text-transform: lowercase !important
}

.text-uppercase {
    text-transform: uppercase !important
}

.text-capitalize {
    text-transform: capitalize !important
}

.fw-normal {
    font-weight: normal !important
}

.fw-bold {
    font-weight: bold !important
}

.fw-light {
    font-weight: 300 !important
}

.fw-medium {
    font-weight: 500 !important
}

.fst-normal {
    font-style: normal !important
}

.fst-italic {
    font-style: italic !important
}

.position-static {
    position: static !important
}

.position-relative {
    position: relative !important
}

.position-absolute {
    position: absolute !important
}

.position-fixed {
    position: fixed !important
}

.position-sticky {
    position: sticky !important
}

.top-0 {
    top: 0 !important
}

.right-0 {
    right: 0 !important
}

.bottom-0 {
    bottom: 0 !important
}

.left-0 {
    left: 0 !important
}

.w-100 {
    width: 100% !important
}

.w-auto {
    width: auto !important
}

.h-100 {
    height: 100% !important
}

.h-auto {
    height: auto !important
}

.overflow-auto {
    overflow: auto !important
}

.overflow-hidden {
    overflow: hidden !important
}

.overflow-scroll {
    overflow: scroll !important
}

.overflow-visible {
    overflow: visible !important
}

.border {
    border: 1px solid #dee2e6 !important
}

.border-0 {
    border: 0 !important
}

.border-top {
    border-top: 1px solid #dee2e6 !important
}

.border-right {
    border-right: 1px solid #dee2e6 !important
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important
}

.border-left {
    border-left: 1px solid #dee2e6 !important
}

.rounded {
    border-radius: 8px !important
}

.rounded-0 {
    border-radius: 0 !important
}

.rounded-sm {
    border-radius: 4px !important
}

.rounded-lg {
    border-radius: 12px !important
}

.rounded-circle {
    border-radius: 50% !important
}

.shadow-none {
    box-shadow: none !important
}

.shadow-sm {
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1) !important
}

.shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15) !important
}

.shadow-lg {
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2) !important
}

.visible {
    visibility: visible !important
}

.invisible {
    visibility: hidden !important
}

.opacity-0 {
    opacity: 0 !important
}

.opacity-25 {
    opacity: .25 !important
}

.opacity-50 {
    opacity: .5 !important
}

.opacity-75 {
    opacity: .75 !important
}

.opacity-100 {
    opacity: 1 !important
}

.cursor-pointer {
    cursor: pointer !important
}

.cursor-default {
    cursor: default !important
}

.cursor-not-allowed {
    cursor: not-allowed !important
}

.user-select-none {
    user-select: none !important
}

.user-select-auto {
    user-select: auto !important
}

.user-select-all {
    user-select: all !important
}

.pe-none {
    pointer-events: none !important
}

.pe-auto {
    pointer-events: auto !important
}

.z-0 {
    z-index: 0 !important
}

.z-1 {
    z-index: 1 !important
}

.z-10 {
    z-index: 10 !important
}

.z-100 {
    z-index: 100 !important
}

.z-1000 {
    z-index: 1000 !important
}

.m-0 {
    margin: 0 !important
}

.mt-0 {
    margin-top: 0 !important
}

.mr-0 {
    margin-right: 0 !important
}

.mb-0 {
    margin-bottom: 0 !important
}

.ml-0 {
    margin-left: 0 !important
}

.mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important
}

.p-0 {
    padding: 0 !important
}

.pt-0 {
    padding-top: 0 !important
}

.pr-0 {
    padding-right: 0 !important
}

.pb-0 {
    padding-bottom: 0 !important
}

.pl-0 {
    padding-left: 0 !important
}

.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.m-1 {
    margin: 5px !important
}

.mt-1 {
    margin-top: 5px !important
}

.mr-1 {
    margin-right: 5px !important
}

.mb-1 {
    margin-bottom: 5px !important
}

.ml-1 {
    margin-left: 5px !important
}

.mx-1 {
    margin-left: 5px !important;
    margin-right: 5px !important
}

.my-1 {
    margin-top: 5px !important;
    margin-bottom: 5px !important
}

.p-1 {
    padding: 5px !important
}

.pt-1 {
    padding-top: 5px !important
}

.pr-1 {
    padding-right: 5px !important
}

.pb-1 {
    padding-bottom: 5px !important
}

.pl-1 {
    padding-left: 5px !important
}

.px-1 {
    padding-left: 5px !important;
    padding-right: 5px !important
}

.py-1 {
    padding-top: 5px !important;
    padding-bottom: 5px !important
}

.m-2 {
    margin: 10px !important
}

.mt-2 {
    margin-top: 10px !important
}

.mr-2 {
    margin-right: 10px !important
}

.mb-2 {
    margin-bottom: 10px !important
}

.ml-2 {
    margin-left: 10px !important
}

.mx-2 {
    margin-left: 10px !important;
    margin-right: 10px !important
}

.my-2 {
    margin-top: 10px !important;
    margin-bottom: 10px !important
}

.p-2 {
    padding: 10px !important
}

.pt-2 {
    padding-top: 10px !important
}

.pr-2 {
    padding-right: 10px !important
}

.pb-2 {
    padding-bottom: 10px !important
}

.pl-2 {
    padding-left: 10px !important
}

.px-2 {
    padding-left: 10px !important;
    padding-right: 10px !important
}

.py-2 {
    padding-top: 10px !important;
    padding-bottom: 10px !important
}

.m-3 {
    margin: 20px !important
}

.mt-3 {
    margin-top: 20px !important
}

.mr-3 {
    margin-right: 20px !important
}

.mb-3 {
    margin-bottom: 20px !important
}

.ml-3 {
    margin-left: 20px !important
}

.mx-3 {
    margin-left: 20px !important;
    margin-right: 20px !important
}

.my-3 {
    margin-top: 20px !important;
    margin-bottom: 20px !important
}

.p-3 {
    padding: 20px !important
}

.pt-3 {
    padding-top: 20px !important
}

.pr-3 {
    padding-right: 20px !important
}

.pb-3 {
    padding-bottom: 20px !important
}

.pl-3 {
    padding-left: 20px !important
}

.px-3 {
    padding-left: 20px !important;
    padding-right: 20px !important
}

.py-3 {
    padding-top: 20px !important;
    padding-bottom: 20px !important
}

.m-4 {
    margin: 30px !important
}

.mt-4 {
    margin-top: 30px !important
}

.mr-4 {
    margin-right: 30px !important
}

.mb-4 {
    margin-bottom: 30px !important
}

.ml-4 {
    margin-left: 30px !important
}

.mx-4 {
    margin-left: 30px !important;
    margin-right: 30px !important
}

.my-4 {
    margin-top: 30px !important;
    margin-bottom: 30px !important
}

.p-4 {
    padding: 30px !important
}

.pt-4 {
    padding-top: 30px !important
}

.pr-4 {
    padding-right: 30px !important
}

.pb-4 {
    padding-bottom: 30px !important
}

.pl-4 {
    padding-left: 30px !important
}

.px-4 {
    padding-left: 30px !important;
    padding-right: 30px !important
}

.py-4 {
    padding-top: 30px !important;
    padding-bottom: 30px !important
}

.m-5 {
    margin: 40px !important
}

.mt-5 {
    margin-top: 40px !important
}

.mr-5 {
    margin-right: 40px !important
}

.mb-5 {
    margin-bottom: 40px !important
}

.ml-5 {
    margin-left: 40px !important
}

.mx-5 {
    margin-left: 40px !important;
    margin-right: 40px !important
}

.my-5 {
    margin-top: 40px !important;
    margin-bottom: 40px !important
}

.p-5 {
    padding: 40px !important
}

.pt-5 {
    padding-top: 40px !important
}

.pr-5 {
    padding-right: 40px !important
}

.pb-5 {
    padding-bottom: 40px !important
}

.pl-5 {
    padding-left: 40px !important
}

.px-5 {
    padding-left: 40px !important;
    padding-right: 40px !important
}

.py-5 {
    padding-top: 40px !important;
    padding-bottom: 40px !important
}

@media(max-width: 767.98px) {
    .d-mobile-none {
        display: none !important
    }

    .d-mobile-block {
        display: block !important
    }

    .d-mobile-inline {
        display: inline !important
    }

    .d-mobile-inline-block {
        display: inline-block !important
    }

    .d-mobile-flex {
        display: flex !important
    }

    .d-mobile-inline-flex {
        display: inline-flex !important
    }

    .d-mobile-grid {
        display: grid !important
    }

    .text-mobile-left {
        text-align: left !important
    }

    .text-mobile-center {
        text-align: center !important
    }

    .text-mobile-right {
        text-align: right !important
    }

    .flex-mobile-row {
        flex-direction: row !important
    }

    .flex-mobile-column {
        flex-direction: column !important
    }

    .justify-mobile-start {
        justify-content: flex-start !important
    }

    .justify-mobile-end {
        justify-content: flex-end !important
    }

    .justify-mobile-center {
        justify-content: center !important
    }

    .justify-mobile-between {
        justify-content: space-between !important
    }

    .align-mobile-start {
        align-items: flex-start !important
    }

    .align-mobile-end {
        align-items: flex-end !important
    }

    .align-mobile-center {
        align-items: center !important
    }

    .align-mobile-stretch {
        align-items: stretch !important
    }
}

@media(max-width: 991.98px) {
    .d-tablet-none {
        display: none !important
    }

    .d-tablet-block {
        display: block !important
    }

    .d-tablet-inline {
        display: inline !important
    }

    .d-tablet-inline-block {
        display: inline-block !important
    }

    .d-tablet-flex {
        display: flex !important
    }

    .d-tablet-inline-flex {
        display: inline-flex !important
    }

    .d-tablet-grid {
        display: grid !important
    }

    .text-tablet-left {
        text-align: left !important
    }

    .text-tablet-center {
        text-align: center !important
    }

    .text-tablet-right {
        text-align: right !important
    }

    .flex-tablet-row {
        flex-direction: row !important
    }

    .flex-tablet-column {
        flex-direction: column !important
    }

    .justify-tablet-start {
        justify-content: flex-start !important
    }

    .justify-tablet-end {
        justify-content: flex-end !important
    }

    .justify-tablet-center {
        justify-content: center !important
    }

    .justify-tablet-between {
        justify-content: space-between !important
    }

    .align-tablet-start {
        align-items: flex-start !important
    }

    .align-tablet-end {
        align-items: flex-end !important
    }

    .align-tablet-center {
        align-items: center !important
    }

    .align-tablet-stretch {
        align-items: stretch !important
    }
}

@media(max-width: 1199.98px) {
    .d-desktop-none {
        display: none !important
    }

    .d-desktop-block {
        display: block !important
    }

    .d-desktop-inline {
        display: inline !important
    }

    .d-desktop-inline-block {
        display: inline-block !important
    }

    .d-desktop-flex {
        display: flex !important
    }

    .d-desktop-inline-flex {
        display: inline-flex !important
    }

    .d-desktop-grid {
        display: grid !important
    }

    .text-desktop-left {
        text-align: left !important
    }

    .text-desktop-center {
        text-align: center !important
    }

    .text-desktop-right {
        text-align: right !important
    }

    .flex-desktop-row {
        flex-direction: row !important
    }

    .flex-desktop-column {
        flex-direction: column !important
    }

    .justify-desktop-start {
        justify-content: flex-start !important
    }

    .justify-desktop-end {
        justify-content: flex-end !important
    }

    .justify-desktop-center {
        justify-content: center !important
    }

    .justify-desktop-between {
        justify-content: space-between !important
    }

    .align-desktop-start {
        align-items: flex-start !important
    }

    .align-desktop-end {
        align-items: flex-end !important
    }

    .align-desktop-center {
        align-items: center !important
    }

    .align-desktop-stretch {
        align-items: stretch !important
    }
}

.text-primary {
    color: #000 !important
}

.text-secondary {
    color: #000 !important
}

.text-accent {
    color: gold !important
}

.text-white {
    color: #fff !important
}

.text-black {
    color: #000 !important
}

.text-muted {
    color: #666 !important
}

.bg-primary {
    background-color: #000 !important
}

.bg-secondary {
    background-color: #000 !important
}

.bg-accent {
    background-color: gold !important
}

.bg-white {
    background-color: #fff !important
}

.bg-black {
    background-color: #000 !important
}

.bg-transparent {
    background-color: rgba(0, 0, 0, 0) !important
}

.border-primary {
    border-color: #000 !important
}

.border-secondary {
    border-color: #000 !important
}

.border-accent {
    border-color: gold !important
}

.border-white {
    border-color: #fff !important
}

.border-black {
    border-color: #000 !important
}

.fade-in {
    animation: fadeIn .6s ease-out
}

.transition {
    transition: all .3s ease !important
}

.transition-fast {
    transition: all .2s ease !important
}

.transition-slow {
    transition: all .5s ease !important
}

.transform-none {
    transform: none !important
}

.scale-0 {
    transform: scale(0) !important
}

.scale-50 {
    transform: scale(0.5) !important
}

.scale-75 {
    transform: scale(0.75) !important
}

.scale-100 {
    transform: scale(1) !important
}

.scale-125 {
    transform: scale(1.25) !important
}

.scale-150 {
    transform: scale(1.5) !important
}

.rotate-0 {
    transform: rotate(0deg) !important
}

.rotate-45 {
    transform: rotate(45deg) !important
}

.rotate-90 {
    transform: rotate(90deg) !important
}

.rotate-180 {
    transform: rotate(180deg) !important
}

.rotate-270 {
    transform: rotate(270deg) !important
}

.translate-x-0 {
    transform: translateX(0) !important
}

.translate-x-full {
    transform: translateX(100%) !important
}

.translate-x-neg-full {
    transform: translateX(-100%) !important
}

.translate-y-0 {
    transform: translateY(0) !important
}

.translate-y-full {
    transform: translateY(100%) !important
}

.translate-y-neg-full {
    transform: translateY(-100%) !important
}

.list-none {
    list-style: none !important
}

.list-disc {
    list-style: disc !important
}

.list-decimal {
    list-style: decimal !important
}

.list-circle {
    list-style: circle !important
}

.list-square {
    list-style: square !important
}

.object-cover {
    object-fit: cover !important
}

.object-contain {
    object-fit: contain !important
}

.object-fill {
    object-fit: fill !important
}

.object-none {
    object-fit: none !important
}

.object-scale-down {
    object-fit: scale-down !important
}

.object-center {
    object-position: center !important
}

.object-top {
    object-position: top !important
}

.object-bottom {
    object-position: bottom !important
}

.object-left {
    object-position: left !important
}

.object-right {
    object-position: right !important
}

.float-left {
    float: left !important
}

.float-right {
    float: right !important
}

.float-none {
    float: none !important
}

.clear-left {
    clear: left !important
}

.clear-right {
    clear: right !important
}

.clear-both {
    clear: both !important
}

.clear-none {
    clear: none !important
}

.break-normal {
    word-break: normal !important
}

.break-words {
    word-break: break-word !important
}

.break-all {
    word-break: break-all !important
}

.whitespace-normal {
    white-space: normal !important
}

.whitespace-nowrap {
    white-space: nowrap !important
}

.whitespace-pre {
    white-space: pre !important
}

.whitespace-pre-line {
    white-space: pre-line !important
}

.whitespace-pre-wrap {
    white-space: pre-wrap !important
}

.text-truncate {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important
}

.lh-1 {
    line-height: 1 !important
}

.lh-sm {
    line-height: 1.25 !important
}

.lh-base {
    line-height: 1.5 !important
}

.lh-lg {
    line-height: 2 !important
}

.fs-1 {
    font-size: 3rem !important
}

.fs-2 {
    font-size: 2.5rem !important
}

.fs-3 {
    font-size: 2rem !important
}

.fs-4 {
    font-size: 1.5rem !important
}

.fs-5 {
    font-size: 1.25rem !important
}

.fs-6 {
    font-size: 1rem !important
}

.fs-sm {
    font-size: .875rem !important
}

.fs-xs {
    font-size: .75rem !important
}

@media(max-width: 767.98px) {
    .fs-mobile-1 {
        font-size: 2rem !important
    }

    .fs-mobile-2 {
        font-size: 1.75rem !important
    }

    .fs-mobile-3 {
        font-size: 1.5rem !important
    }

    .fs-mobile-4 {
        font-size: 1.25rem !important
    }

    .fs-mobile-5 {
        font-size: 1.1rem !important
    }

    .fs-mobile-6 {
        font-size: 1rem !important
    }

    .fs-mobile-sm {
        font-size: .875rem !important
    }

    .fs-mobile-xs {
        font-size: .75rem !important
    }
}

@media print {
    .d-print-none {
        display: none !important
    }

    .d-print-block {
        display: block !important
    }

    .d-print-inline {
        display: inline !important
    }

    .d-print-inline-block {
        display: inline-block !important
    }

    .text-print-left {
        text-align: left !important
    }

    .text-print-center {
        text-align: center !important
    }

    .text-print-right {
        text-align: right !important
    }

    .bg-print-white {
        background-color: #fff !important
    }

    .text-print-black {
        color: #000 !important
    }
}

.casino-games {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0
}

@media(max-width: 767.98px) {
    .casino-games {
        grid-template-columns: 1fr;
        gap: 20px
    }
}

.casino-games .game-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    transition: all .3s ease;
    text-align: center;
    transition: all .3s ease;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
    border-radius: 8px
}

.casino-games .game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

.casino-games .game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2)
}

.casino-games .game-card .game-thumbnail {
    position: relative;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden
}

.casino-games .game-card .game-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all .3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.casino-games .game-card .game-thumbnail .game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all .3s ease
}

.casino-games .game-card .game-thumbnail .game-overlay .play-button {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
    background: linear-gradient(135deg, #000 0%, #000 100%);
    color: #fff;
    padding: 20px 30px;
    font-size: 1.1rem;
    font-weight: bold
}

.casino-games .game-card .game-thumbnail .game-overlay .play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

.casino-games .game-card .game-thumbnail .game-overlay .play-button:hover {
    background: linear-gradient(135deg, black 0%, black 100%)
}

.casino-games .game-card .game-thumbnail:hover .game-overlay {
    opacity: 1
}

.casino-games .game-card .game-thumbnail:hover img {
    transform: scale(1.1)
}

.casino-games .game-card .game-info .game-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #000
}

@media(max-width: 767.98px) {
    .casino-games .game-card .game-info .game-title {
        font-size: 1.1rem
    }
}

.casino-games .game-card .game-info .game-provider {
    color: #666;
    font-size: .9rem;
    margin-bottom: 10px
}

.casino-games .game-card .game-info .game-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 20px
}

.casino-games .game-card .game-info .game-features .feature {
    background: rgba(0, 0, 0, .1);
    color: #000;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: .8rem;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.casino-games .game-card .game-info .game-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px
}

.casino-games .game-card .game-info .game-rating .stars {
    color: gold;
    font-size: 1rem
}

.casino-games .game-card .game-info .game-rating .rating-text {
    color: #666;
    font-size: .9rem
}

.bonus-offers {
    background: linear-gradient(135deg, #000 0%, #000 100%);
    color: #fff;
    padding: 50px 0;
    margin: 40px 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2)
}

@media(max-width: 767.98px) {
    .bonus-offers {
        padding: 40px 0
    }
}

.bonus-offers .bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px
}

@media(max-width: 767.98px) {
    .bonus-offers .bonus-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }
}

.bonus-offers .bonus-grid .bonus-card {
    background: hsla(0, 0%, 100%, .1);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid hsla(0, 0%, 100%, .2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

@media(max-width: 767.98px) {
    .bonus-offers .bonus-grid .bonus-card {
        padding: 20px
    }
}

.bonus-offers .bonus-grid .bonus-card .bonus-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: gold;
    margin-bottom: 10px
}

@media(max-width: 767.98px) {
    .bonus-offers .bonus-grid .bonus-card .bonus-amount {
        font-size: 2rem
    }
}

.bonus-offers .bonus-grid .bonus-card .bonus-title {
    font-size: 1.3rem;
    margin-bottom: 20px
}

@media(max-width: 767.98px) {
    .bonus-offers .bonus-grid .bonus-card .bonus-title {
        font-size: 1.1rem
    }
}

.bonus-offers .bonus-grid .bonus-card .bonus-description {
    margin-bottom: 30px;
    opacity: .9;
    line-height: 1.6
}

@media(max-width: 767.98px) {
    .bonus-offers .bonus-grid .bonus-card .bonus-description {
        margin-bottom: 20px
    }
}

.bonus-offers .bonus-grid .bonus-card .bonus-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px
}

@media(max-width: 767.98px) {
    .bonus-offers .bonus-grid .bonus-card .bonus-features {
        margin-bottom: 20px
    }
}

.bonus-offers .bonus-grid .bonus-card .bonus-features li {
    padding: 5px 0;
    border-bottom: 1px solid hsla(0, 0%, 100%, .1)
}

.bonus-offers .bonus-grid .bonus-card .bonus-features li:last-child {
    border-bottom: none
}

.bonus-offers .bonus-grid .bonus-card .bonus-features li::before {
    content: "âœ“";
    color: gold;
    margin-right: 10px;
    font-weight: bold
}

.bonus-offers .bonus-grid .bonus-card .claim-bonus {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
    background: #fff;
    color: #000;
    width: 100%;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.bonus-offers .bonus-grid .bonus-card .claim-bonus:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

.bonus-offers .bonus-grid .bonus-card .claim-bonus:hover {
    background: hsl(0, 0%, 95%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

.casino-reviews {
    margin: 40px 0
}

.casino-reviews .review-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    transition: all .3s ease;
    margin-bottom: 30px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
    border-radius: 8px
}

.casino-reviews .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

@media(max-width: 767.98px) {
    .casino-reviews .review-card {
        margin-bottom: 20px
    }
}

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

@media(max-width: 767.98px) {
    .casino-reviews .review-card .review-header {
        flex-direction: column;
        gap: 10px;
        text-align: center
    }
}

.casino-reviews .review-card .review-header .casino-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px
}

@media(max-width: 767.98px) {
    .casino-reviews .review-card .review-header .casino-info {
        gap: 10px
    }
}

.casino-reviews .review-card .review-header .casino-info .casino-logo {
    width: 80px;
    height: 60px;
    object-fit: contain;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

@media(max-width: 767.98px) {
    .casino-reviews .review-card .review-header .casino-info .casino-logo {
        width: 60px;
        height: 45px
    }
}

.casino-reviews .review-card .review-header .casino-info .casino-details .casino-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 5px
}

@media(max-width: 767.98px) {
    .casino-reviews .review-card .review-header .casino-info .casino-details .casino-name {
        font-size: 1.1rem
    }
}

.casino-reviews .review-card .review-header .casino-info .casino-details .casino-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px
}

.casino-reviews .review-card .review-header .casino-info .casino-details .casino-rating .stars {
    color: gold
}

.casino-reviews .review-card .review-header .casino-info .casino-details .casino-rating .rating-score {
    font-weight: bold;
    color: #000
}

.casino-reviews .review-card .review-header .review-score {
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

@media(max-width: 767.98px) {
    .casino-reviews .review-card .review-header .review-score {
        font-size: 1rem
    }
}

.casino-reviews .review-card .review-content .review-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px
}

@media(max-width: 767.98px) {
    .casino-reviews .review-card .review-content .review-pros-cons {
        grid-template-columns: 1fr;
        gap: 20px
    }
}

.casino-reviews .review-card .review-content .review-pros-cons .pros h4,
.casino-reviews .review-card .review-content .review-pros-cons .cons h4 {
    color: #000;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px
}

.casino-reviews .review-card .review-content .review-pros-cons .pros h4::before,
.casino-reviews .review-card .review-content .review-pros-cons .cons h4::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900
}

.casino-reviews .review-card .review-content .review-pros-cons .pros ul,
.casino-reviews .review-card .review-content .review-pros-cons .cons ul {
    list-style: none;
    padding: 0
}

.casino-reviews .review-card .review-content .review-pros-cons .pros ul li,
.casino-reviews .review-card .review-content .review-pros-cons .cons ul li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    color: #fff
}

.casino-reviews .review-card .review-content .review-pros-cons .pros ul li:last-child,
.casino-reviews .review-card .review-content .review-pros-cons .cons ul li:last-child {
    border-bottom: none
}

.casino-reviews .review-card .review-content .review-pros-cons .pros h4::before {
    content: "âœ“";
    color: #28a745
}

.casino-reviews .review-card .review-content .review-pros-cons .cons h4::before {
    content: "âœ—";
    color: #dc3545
}

.casino-reviews .review-card .review-content .review-summary {
    background: rgba(0, 0, 0, .05);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

@media(max-width: 767.98px) {
    .casino-reviews .review-card .review-content .review-summary {
        padding: 10px
    }
}

.casino-reviews .review-card .review-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px
}

@media(max-width: 767.98px) {
    .casino-reviews .review-card .review-actions {
        flex-direction: column;
        gap: 10px
    }
}

.casino-reviews .review-card .review-actions .read-review {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
    background: linear-gradient(135deg, #000 0%, #000 100%);
    color: #fff
}

.casino-reviews .review-card .review-actions .read-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

.casino-reviews .review-card .review-actions .read-review:hover {
    background: linear-gradient(135deg, black 0%, black 100%)
}

.casino-reviews .review-card .review-actions .visit-casino {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
    background: #fff;
    color: #000;
    border: 2px solid #000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.casino-reviews .review-card .review-actions .visit-casino:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

.casino-reviews .review-card .review-actions .visit-casino:hover {
    background: #000;
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 107, 53, .25);
    transform: translateY(-2px)
}

.payment-methods {
    margin: 40px 0
}

.payment-methods .payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px
}

@media(max-width: 767.98px) {
    .payment-methods .payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px
    }
}

.payment-methods .payment-grid .payment-method {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    transition: all .3s ease;
    text-align: center;
    padding: 20px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
    border-radius: 8px
}

.payment-methods .payment-grid .payment-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

@media(max-width: 767.98px) {
    .payment-methods .payment-grid .payment-method {
        padding: 10px
    }
}

.payment-methods .payment-grid .payment-method .payment-icon {
    width: 50px;
    height: 30px;
    margin: 0 auto 10px;
    object-fit: contain
}

@media(max-width: 767.98px) {
    .payment-methods .payment-grid .payment-method .payment-icon {
        width: 40px;
        height: 25px
    }
}

.payment-methods .payment-grid .payment-method .payment-name {
    font-size: .9rem;
    color: #fff;
    font-weight: 500
}

@media(max-width: 767.98px) {
    .payment-methods .payment-grid .payment-method .payment-name {
        font-size: .8rem
    }
}

.live-casino {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 50px 0;
    margin: 40px 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2)
}

@media(max-width: 767.98px) {
    .live-casino {
        padding: 40px 0
    }
}

.live-casino .live-casino-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto
}

.live-casino .live-casino-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: gold
}

@media(max-width: 767.98px) {
    .live-casino .live-casino-content h2 {
        font-size: 2rem
    }
}

.live-casino .live-casino-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: .9
}

@media(max-width: 767.98px) {
    .live-casino .live-casino-content p {
        font-size: 1rem
    }
}

.live-casino .live-casino-content .live-dealers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px
}

@media(max-width: 767.98px) {
    .live-casino .live-casino-content .live-dealers {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px
    }
}

.live-casino .live-casino-content .live-dealers .dealer-card {
    background: hsla(0, 0%, 100%, .1);
    border-radius: 8px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid hsla(0, 0%, 100%, .2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

@media(max-width: 767.98px) {
    .live-casino .live-casino-content .live-dealers .dealer-card {
        padding: 20px
    }
}

.live-casino .live-casino-content .live-dealers .dealer-card .dealer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 3px solid gold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

@media(max-width: 767.98px) {
    .live-casino .live-casino-content .live-dealers .dealer-card .dealer-avatar {
        width: 60px;
        height: 60px
    }
}

.live-casino .live-casino-content .live-dealers .dealer-card .dealer-name {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px
}

@media(max-width: 767.98px) {
    .live-casino .live-casino-content .live-dealers .dealer-card .dealer-name {
        font-size: 1rem
    }
}

.live-casino .live-casino-content .live-dealers .dealer-card .dealer-game {
    color: gold;
    font-size: .9rem
}

@media(max-width: 767.98px) {
    .live-casino .live-casino-content .live-dealers .dealer-card .dealer-game {
        font-size: .8rem
    }
}

.responsible-gambling {
    background: #f8f9fa;
    padding: 40px 0;
    margin: 40px 0
}

@media(max-width: 767.98px) {
    .responsible-gambling {
        padding: 30px 0
    }
}

.responsible-gambling .responsible-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto
}

.responsible-gambling .responsible-content h2 {
    color: #000;
    margin-bottom: 30px
}

@media(max-width: 767.98px) {
    .responsible-gambling .responsible-content h2 {
        font-size: 1.8rem
    }
}

.responsible-gambling .responsible-content .responsible-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px
}

@media(max-width: 767.98px) {
    .responsible-gambling .responsible-content .responsible-tips {
        grid-template-columns: 1fr;
        gap: 20px
    }
}

.responsible-gambling .responsible-content .responsible-tips .tip-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    transition: all .3s ease;
    text-align: center;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
    border-radius: 8px
}

.responsible-gambling .responsible-content .responsible-tips .tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

.responsible-gambling .responsible-content .responsible-tips .tip-card .tip-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

@media(max-width: 767.98px) {
    .responsible-gambling .responsible-content .responsible-tips .tip-card .tip-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem
    }
}

.responsible-gambling .responsible-content .responsible-tips .tip-card .tip-title {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 10px
}

@media(max-width: 767.98px) {
    .responsible-gambling .responsible-content .responsible-tips .tip-card .tip-title {
        font-size: 1.1rem
    }
}

.responsible-gambling .responsible-content .responsible-tips .tip-card .tip-description {
    color: #666;
    line-height: 1.6
}

.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center
}

.age-verification .verification-modal {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2)
}

@media(max-width: 767.98px) {
    .age-verification .verification-modal {
        padding: 30px
    }
}

.age-verification .verification-modal .verification-icon {
    font-size: 4rem;
    color: #000;
    margin-bottom: 30px
}

@media(max-width: 767.98px) {
    .age-verification .verification-modal .verification-icon {
        font-size: 3rem
    }
}

.age-verification .verification-modal h2 {
    color: #000;
    margin-bottom: 20px
}

@media(max-width: 767.98px) {
    .age-verification .verification-modal h2 {
        font-size: 1.5rem
    }
}

.age-verification .verification-modal p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6
}

@media(max-width: 767.98px) {
    .age-verification .verification-modal p {
        font-size: .9rem
    }
}

.age-verification .verification-modal .verification-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px
}

@media(max-width: 767.98px) {
    .age-verification .verification-modal .verification-buttons {
        flex-direction: column;
        gap: 10px
    }
}

.age-verification .verification-modal .verification-buttons .btn {
    min-width: 120px
}

@media(max-width: 767.98px) {
    .age-verification .verification-modal .verification-buttons .btn {
        width: 100%
    }
}

.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 200px
}

.loading-spinner .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, .3);
    border-top: 4px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.game-categories {
    margin: 40px 0
}

.game-categories .category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px
}

@media(max-width: 767.98px) {
    .game-categories .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px
    }
}

.game-categories .category-grid .category-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    transition: all .3s ease;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
    border-radius: 8px
}

.game-categories .category-grid .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

.game-categories .category-grid .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2)
}

.game-categories .category-grid .category-card .category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #000 0%, #000 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

@media(max-width: 767.98px) {
    .game-categories .category-grid .category-card .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem
    }
}

.game-categories .category-grid .category-card .category-name {
    font-size: 1.1rem;
    color: #000;
    font-weight: bold;
    margin-bottom: 5px
}

@media(max-width: 767.98px) {
    .game-categories .category-grid .category-card .category-name {
        font-size: 1rem
    }
}

.game-categories .category-grid .category-card .category-count {
    color: #666;
    font-size: .9rem
}

@media(max-width: 767.98px) {
    .game-categories .category-grid .category-card .category-count {
        font-size: .8rem
    }
}

.game-card .game-overlay .game-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .3s ease;
    z-index: 3
}

.game-card .game-overlay .game-actions .game-play-btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
    background: linear-gradient(135deg, #000 0%, #000 100%);
    color: #fff;
    padding: 10px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
    min-width: 120px
}

.game-card .game-overlay .game-actions .game-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15)
}

.game-card .game-overlay .game-actions .game-play-btn:hover {
    background: linear-gradient(135deg, black 0%, black 100%)
}

.game-card .game-overlay .game-actions .game-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .4)
}

@media(max-width: 767.98px) {
    .game-card .game-overlay .game-actions .game-play-btn {
        padding: 5px 20px;
        font-size: .9rem;
        min-width: 100px
    }
}

.game-card:hover .game-overlay {
    background: rgba(0, 0, 0, .9)
}

.game-card:hover .game-overlay .game-actions {
    opacity: 1
}

.game-card:hover .game-overlay .game-info {
    opacity: .7
}

/*# sourceMappingURL=style.css.map */