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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', 'LatoExtended', sans-serif;
    background-color: #010f1c;
    color: #e8e8e8;
    line-height: 1.6;
    font-size: 16px;
}

body.fixed {
    overflow: hidden;
}

.xr9k2m4 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.p7vh3qw {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.z8nt5jk {
    flex: 1;
    min-width: 280px;
}

.header-top {
    background-color: #002c21;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.wy4k7fm {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

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

.nav-menu a {
    color: #f2eea2;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
}

.nav-menu a:hover {
    color: #ffffff;
    background-color: rgba(242, 238, 162, 0.1);
}

.nav-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.header-cta {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 15px;
    text-align: center;
}

.btn-demo {
    background-color: #340a2e;
    color: #f2eea2;
    border: 2px solid #340a2e;
}

.btn-demo:hover {
    background-color: #4a0e40;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 10, 46, 0.4);
}

.btn-money {
    background-color: #f2eea2;
    color: #002c21;
    border: 2px solid #f2eea2;
}

.btn-money:hover {
    background-color: #fff8b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 238, 162, 0.4);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background-color: transparent;
    border: none;
}

.burger span {
    width: 25px;
    height: 3px;
    background-color: #f2eea2;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

.hero-section {
    background-image: linear-gradient(rgba(1, 15, 28, 0.7), rgba(1, 15, 28, 0.85)), url('/spinny-dungeon-hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 15px;
    margin-top: 20px;
}

.q5mn8rt {
    max-width: 800px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #f2eea2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    animation: fadeInDown 1s ease;
}

.hero-intro {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #e8e8e8;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.3s both;
}

.spoiler-toggle {
    background: rgba(52, 10, 46, 0.5);
    border: 1px solid #340a2e;
    color: #f2eea2;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.spoiler-toggle:hover {
    background: rgba(52, 10, 46, 0.8);
}

.spoiler-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.spoiler-content.active {
    max-height: 500px;
    margin-top: 20px;
}

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

.v2bx9hj {
    background-color: #0a1929;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.v2bx9hj:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.demo-game-block {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.t3kw8mn {
    flex: 2;
    width: 100%;
}

.k9pr5dh {
    flex: 1;
    min-width: 280px;
}

.game-iframe-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 60%;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.game-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.live-ranking {
    background: linear-gradient(135deg, #0a1929 0%, #002c21 100%);
    padding: 25px;
    border-radius: 10px;
    max-height: 600px;
    overflow-y: auto;
}

.live-ranking h3 {
    color: #f2eea2;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5rem;
}

.ranking-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    margin-bottom: 10px;
    background: rgba(242, 238, 162, 0.05);
    border-radius: 8px;
    border-left: 3px solid #340a2e;
    transition: all 0.3s ease;
    animation: slideIn 0.5s ease;
}

.ranking-item:hover {
    background: rgba(242, 238, 162, 0.1);
    transform: translateX(5px);
}

.ranking-position {
    font-weight: bold;
    color: #f2eea2;
    width: 40px;
}

.ranking-user {
    flex: 1;
    color: #e8e8e8;
}

.ranking-win {
    color: #4ade80;
    font-weight: bold;
}

.ranking-multiplier {
    color: #f2eea2;
    font-size: 0.9rem;
    margin-left: 10px;
}

.ranking-item.rank-gold {
    border-left-color: #f2c94c;
    background: rgba(242, 201, 76, 0.08);
}

.ranking-item.rank-gold .ranking-position {
    color: #f2c94c;
}

.ranking-item.rank-silver {
    border-left-color: #c0c0c0;
    background: rgba(192, 192, 192, 0.06);
}

.ranking-item.rank-silver .ranking-position {
    color: #c0c0c0;
}

.ranking-item.rank-bronze {
    border-left-color: #cd7f32;
    background: rgba(205, 127, 50, 0.07);
}

.ranking-item.rank-bronze .ranking-position {
    color: #cd7f32;
}

.pros-cons-section {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.f8wh3md {
    flex: 1;
    min-width: 280px;
    background: linear-gradient(135deg, #0a1929 0%, #0d3d2f 100%);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #4ade80;
}

.n2qk7xp {
    flex: 1;
    min-width: 280px;
    background: linear-gradient(135deg, #0a1929 0%, #3d0a0d 100%);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #ef4444;
}

.f8wh3md h3,
.n2qk7xp h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.f8wh3md h3 {
    color: #4ade80;
}

.n2qk7xp h3 {
    color: #ef4444;
}

.f8wh3md ul,
.n2qk7xp ul {
    list-style: none;
}

.f8wh3md li,
.n2qk7xp li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.f8wh3md li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
    font-size: 1.2rem;
}

.n2qk7xp li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
    font-size: 1.2rem;
}

.j6mt4bv {
    margin: 40px 0;
}

.j6mt4bv h2,
.j6mt4bv h3,
.j6mt4bv h4 {
    color: #f2eea2;
    margin-top: 30px;
    margin-bottom: 15px;
}

.j6mt4bv h2 {
    font-size: 2rem;
    border-bottom: 2px solid #340a2e;
    padding-bottom: 10px;
}

.j6mt4bv h3 {
    font-size: 1.6rem;
}

.j6mt4bv h4 {
    font-size: 1.3rem;
}

.j6mt4bv p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.j6mt4bv ul,
.j6mt4bv ol {
    margin-left: 30px;
    margin-bottom: 15px;
}

.j6mt4bv li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.j6mt4bv table {
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
    border-collapse: collapse;
    background-color: #0a1929;
    border-radius: 8px;
    overflow: hidden;
}

.j6mt4bv th,
.j6mt4bv td {
    padding: 15px;
    text-align: left;
    border: 1px solid #340a2e;
}

.j6mt4bv th {
    background-color: #002c21;
    color: #f2eea2;
    font-weight: bold;
}

.j6mt4bv tr:hover {
    background-color: rgba(242, 238, 162, 0.05);
}

.j6mt4bv a {
    color: #f2eea2;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.j6mt4bv a:hover {
    color: #ffffff;
}

.section-h2-yellow {
    color: #f2eea2;
    margin-bottom: 20px;
    font-size: 2rem;
}

.j6mt4bv img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.j6mt4bv blockquote {
    border-left: 4px solid #340a2e;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #b8b8b8;
}

.author-block {
    display: flex;
    gap: 25px;
    align-items: center;
    background: linear-gradient(135deg, #0a1929 0%, #002c21 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    border-left: 5px solid #f2eea2;
    flex-wrap: wrap;
}

.author-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #340a2e;
}

.author-info {
    flex: 1;
    min-width: 250px;
}

.author-info h4 {
    color: #f2eea2;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.author-position {
    color: #b8b8b8;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.author-bio {
    line-height: 1.6;
    margin-bottom: 15px;
}

.author-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.author-social a {
    color: #f2eea2;
    transition: color 0.3s ease;
}

.author-social a:hover {
    color: #ffffff;
}

.author-date {
    font-size: 0.9rem;
    color: #888;
    margin-top: 10px;
}

.similar-games {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.game-card {
    background: linear-gradient(135deg, #0a1929 0%, #002c21 100%);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: #340a2e;
    box-shadow: 0 10px 30px rgba(52, 10, 46, 0.3);
}

.game-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.game-card h4 {
    color: #f2eea2;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.game-card p {
    color: #b8b8b8;
    margin-bottom: 20px;
    line-height: 1.5;
}

.game-card-cta {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.game-card-cta .btn {
    padding: 10px 20px;
    font-size: 14px;
}

.faq-section {
    margin: 40px 0;
}

.faq-section h2 {
    text-align: center;
    color: #f2eea2;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.faq-item {
    background-color: #0a1929;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #340a2e;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    font-weight: 600;
    color: #f2eea2;
}

.faq-question:hover {
    background-color: rgba(52, 10, 46, 0.3);
}

.faq-icon {
    transition: transform 0.3s ease;
    font-size: 1.5rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 20px;
    color: #e8e8e8;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 20px 20px 20px;
}

.footer-main {
    background-color: #002c21;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    color: #f2eea2;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #e8e8e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #f2eea2;
}

.footer-logos {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logos img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social a {
    color: #f2eea2;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #340a2e;
    color: #b8b8b8;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom a {
    color: #f2eea2;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.u8lp3nq {
    display: none;
}

.d5rk9wm {
    visibility: hidden;
}

.y2bm7gx {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #002c21;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        transition: left 0.3s ease;
        z-index: 999;
    }
    .f8wh3md {padding: 26px;}
    .nav-menu.active {
        left: 0;
    }
    .v2bx9hj {padding: 26px;}
    .burger {
        display: flex;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .demo-game-block {
        flex-direction: column;
    }

    .pros-cons-section {
        flex-direction: column;
    }

    .author-block {
        flex-direction: column;
        text-align: center;
    }

    .author-social {
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .info-page-content h1 {
        font-size: 1.8rem;
    }
    .v2bx9hj {padding: 22px;}
    .info-page-content h2 {
        font-size: 1.4rem;
    }
    .footer-content {flex-direction: column;}
    .info-page-content table {
        font-size: 14px;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}


@media (max-width: 480px) {
    .hero-section h1 {font-size: 2rem;
    }
    .f8wh3md {padding: 20px;}
    .btn {padding: 10px 18px; font-size: 14px;
    }
    .hero-cta {flex-direction: column;
    }
    .j6mt4bv table {font-size: 14px;
    }
    .j6mt4bv th, .j6mt4bv td {padding: 10px;
    }
    .v2bx9hj {padding: 20px;}
}
@media (max-width: 400px) {
    .mobile-cta .btn-demo {display: none;}
    .f8wh3md {padding: 16px;}
    .v2bx9hj {padding: 16px;}
}

.c3vn8kp {
    transition: opacity 0.3s ease-in-out;
}

.m9wb5jx {
    filter: blur(0px);
}

.x4fy2hn {
    background: linear-gradient(to right, #340a2e, #002c21);
}

.mobile-cta {
    display: flex;
}

.live-ranking::-webkit-scrollbar {
    width: 6px;
}

.live-ranking::-webkit-scrollbar-track {
    background: #010f1c;
}

.live-ranking::-webkit-scrollbar-thumb {
    background: #340a2e;
    border-radius: 3px;
}

.section-title {
    text-align: center;
    color: #f2eea2;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.breadcrumb {
    padding: 10px 0;
    font-size: 0.9rem;
    color: #888;
}

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

.breadcrumb span {
    margin: 0 8px;
}

.wp-post-image {
    max-width: 100%;
    height: auto;
}

.entry-content,
.entry-summary {
    line-height: 1.8;
}

.screen-reader-text {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
}

.posted-on time {
    color: #888;
    font-size: 0.9rem;
}

.has-text-align-center {
    text-align: center;
}

.elementor-widget-container {
    transition: all 0.3s ease;
}

.yoast-schema-graph {
    display: none;
}

.e-n-tabs {
    display: block;
}

.e-n-carousel {
    overflow: hidden;
}

input[type=text], input[type=email], textarea {
    width: 100%;
    padding: 12px 16px;
    background: #0a1929;
    border: 1px solid #340a2e;
    color: #e8e8e8;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
}

input[type=text]:focus, input[type=email]:focus, textarea:focus {
    outline: none;
    border-color: #f2eea2;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

form label {
    color: #f2eea2;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-page-content h1 {
    color: #f2eea2;
    font-size: 2.5rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #340a2e;
}

.info-page-content h2 {
    color: #f2eea2;
    font-size: 1.8rem;
    margin-top: 35px;
    margin-bottom: 15px;
}

.info-page-content h3 {
    color: #f2eea2;
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 12px;
}

.info-page-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.info-page-content ul,
.info-page-content ol {
    margin-left: 30px;
    margin-bottom: 15px;
}

.info-page-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.info-page-content a {
    color: #f2eea2;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.info-page-content a:hover {
    color: #ffffff;
}

.info-page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #0a1929;
    border-radius: 8px;
    overflow: hidden;
}

.info-page-content th,
.info-page-content td {
    padding: 14px 18px;
    text-align: left;
    border: 1px solid #340a2e;
}

.info-page-content th {
    background-color: #002c21;
    color: #f2eea2;
    font-weight: 700;
}

.info-page-content tr:hover {
    background-color: rgba(242, 238, 162, 0.04);
}

.info-page-content blockquote {
    border-left: 4px solid #340a2e;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #b8b8b8;
}

.info-page-content em {
    color: #b8b8b8;
}

.contact-form-wrap {
    margin-top: 30px;
}

.contact-form-wrap input[type=submit] {
    background-color: #340a2e;
    color: #f2eea2;
    border: 2px solid #340a2e;
    padding: 14px 32px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: auto;
}

.contact-form-wrap input[type=submit]:hover {
    background-color: #4a0e40;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 10, 46, 0.4);
}


.wp-block-group {
    padding: 20px 0;
}

.wp-block-columns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.wp-block-column {
    flex: 1;
    min-width: 200px;
}

.has-large-font-size {
    font-size: 1.5rem;
}

.has-medium-font-size {
    font-size: 1.2rem;
}

.is-style-rounded img {
    border-radius: 50%;
}

.elementor-section {
    display: block;
}

.elementor-container {
    max-width: 1200px;
    margin: 0 auto;
}

