@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');



body {
    margin: 0;
    padding-top: 80px;
    background-color: #0A0A2A;
    min-height: 100vh; 
    font-family: 'Montserrat', sans-serif;
    color: white;
    line-height: 1.6;
}


a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
    font-weight: 400;
}


a:hover {
    color: #FFB800;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}


section {
    padding: 2em;
    background-color: #fff;
    margin-bottom: 1em;
}


h1, h2, h3, h4, h5, h6 {
    margin: 0.5em 0;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}



.header {
    background: #1E1E4A;
    border: 1px solid #00FFFF;
    padding: 8px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.logo {
    margin-left: 0; 
    display: flex;
    align-items: center;
}


.logo img {
    height: 50px;
    width: auto;
}



.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}


.nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}


.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 0;
    position: relative;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
}


.nav-link svg {
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease;
}


.nav-link:hover {
    color: #FFB800;
}


.nav-link:hover svg {
    transform: scale(1.1);
}


.nav-link:hover svg path {
    fill: #FFB800;
}



.header-actions {
    margin-right: -80px;
    display: flex;
    align-items: center;
    gap: 8px;
}


.app-buttons {
    display: flex;
    gap: 4px;
}

@media (max-width: 991px) {
    .app-buttons {
display: none;
    }}


.app-store-button img,
.play-store-button img {
    height: 32px;
    width: auto;
    transition: transform 0.2s ease;
}


.app-store-button:hover img,
.play-store-button:hover img {
    transform: scale(1.05);
}


.play-now-button {
    background: linear-gradient(98.72deg, rgb(40, 169, 9) 0.24%, rgb(60, 209, 24) 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease;
    animation: buttonGlow 5s infinite;
    white-space: nowrap;
}

video,
video[src$='.mp4'],
video[src$='.webm'],
iframe {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 24px auto;
}

iframe {
    min-height: 600px;
    border: none;
}


@media (max-width: 600px) {
    video,
    iframe {
        min-height: 320px;
        border-radius: 10px;
    }
}


@media (max-width: 1024px) {
    .header-container {
        padding: 0 20px; 
    }
    .logo {
        margin-left: 0; 
    }
    .nav-list {
        gap: 20px;
        flex-wrap: wrap; 
    }
    .header-actions {
        margin-right: 0; 
        gap: 16px;
    }
    .casino-listing {
        padding: 0 20px; 
    }
}


@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        padding: 0 10px;
    }
    .logo {
        margin-left: 0;
    }
    .main-nav {
        order: 3;
        width: 100%;
        display: none;
    }
    .nav-list {
        justify-content: center;
        flex-direction: row;
        gap: 10px;
    }
    .header-actions {
        flex-direction: row;
        margin-top: 10px;
    }
    
    .hero-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .hero-left,
    .hero-image {
        max-width: 100%;
    }
    
    .casino-main-info {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .links-columns {
        flex-direction: column;
        align-items: center;
    }
}



@media (max-width: 480px) {
    body {
        padding-top: 60px; 
        font-size: 14px; 
    }
    .header {
        padding: 8px 0;
    }
    .hero {
        padding: 10px 20px;
    }
    h1 {
        font-size: 24px;
    }
    h2 {
        font-size: 20px;
    }
    h3, h4, h5, h6 {
        font-size: 16px;
    }
    .casino-row-container {
        padding: 16px 20px;
    }
    
    .demo-button,
    #play-real {
        width: 120px;
        height: 40px;
        font-size: 14px;
        line-height: 40px;
    }
    
    .faq {
        flex-direction: column;
        align-items: stretch;
    }
    .faq-content {
        margin-left: 0;
        margin-top: 1em;
    }
    
    .toc {
        margin: 0 10px;
        padding: 12px;
    }
}



@keyframes buttonGlow {
    0%, 95%, 100% {
        box-shadow: 0 0 0 rgba(255, 184, 0, 0);
        transform: scale(1);
    }
    97% {
        box-shadow: 0 0 20px rgba(255, 184, 0, 0.6);
        transform: scale(1.05);
    }
}


.play-now-button:hover {
    color: white; 
    text-decoration: none; 
}



.hero {
    background-color: #1A0D2E;
    padding: 20px 40px; 
    min-height: 55vh;
    display: flex;
    align-items: center;
}


.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px; 
}


.hero-image {
    flex: 1;
    max-width: 1100px; 
}


.hero-image img {
    width: 100%;
    height: auto;
    max-width: 1100px; 
    object-fit: contain;
}


.hero-left {
    max-width: 50%;
}


.hero-left h1 {
    font-size: 37px;
    margin-bottom: 8px;
}


.value-prop {
    font-size: 19px;
    margin-bottom: 16px;
}


.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}


@media (max-width: 991px) {
    .hero-buttons {
        display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
            margin: 20px 0;
    }}


.play-demo-button {
    background: transparent;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #fff;
    transition: all 0.2s ease;
}


.play-demo-button:hover {
    background: linear-gradient(98.72deg, rgb(40, 169, 9) 0.24%, rgb(60, 209, 24) 100%);
    color: white;
}


.hero-right img {
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}


.hero-description {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 1em;
    max-width: 600px;
}



@media (min-width: 769px) {
    .hero {
        flex-direction: row;
        justify-content: space-between;
        padding: 20px 40px;
    }
    .hero-left,
    .hero-image {
        width: 50%;
    }

}

@media(min-width:1440px){
    .logo {
        margin-left: -80px; 
    }
}
@media(max-width:1440px){
    .header-actions{
        margin: 0;
    }
}
@media(max-width:1200px){
    .header-container{
        padding: 0 10px;
    }
}



.casino-block {
    text-align: center;
    background-color: #1A0D2E;
}


.casino-block h2 {
    font-size: 33px; 
    margin-bottom: 40px; 
    font-weight: 600; 
}


.casino-block .reviews {
    display: flex;
    justify-content: center;
    gap: 2em;
    margin-top: 1em;
}


.casino-block .review {
    background-color: #F9F9F9;
    padding: 1em;
    border-radius: 5px;
    box-shadow: 0 2px 4px #B0BEC5;
    max-width: 300px;
}



.statistics-section {
    text-align: center;
    padding: 40px;
    background-color: #1A0D2E;
}


.statistics-section .statistics-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}



@media (max-width: 991px) {
    .statistics-section .statistics-container {
        grid-template-columns: 1fr;

    }}


.statistics-section .stats-heading {
    color: #fff;
    margin-bottom: 20px;
    font-size: 33px;
    font-weight: 600;
}



.statistics-section .game-specs-table {
    background: #1E1E4A;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


.statistics-section .specs-table {
    width: 100%;
    border-collapse: collapse;
}


.statistics-section .specs-table tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}


.statistics-section .specs-table tr:last-child {
    border-bottom: none;
}


.statistics-section .specs-table td {
    padding: 12px;
    text-align: left;
    color: #fff;
    font-size: 16px;
}


.statistics-section .specs-table td:last-child {
    text-align: right;
    font-weight: 600;
}



.statistics-section .multiplier-calculator {
    background: #1E1E4A;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


.statistics-section .multiplier-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
}


.statistics-section .multiplier-card {
    background: linear-gradient(180deg, #0A0A2A 0.24%, #1E1E4A 100%);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: transform 0.2s;
    text-decoration: none; 
    color: inherit; 
    display: block; 
}


.statistics-section .multiplier-card:hover {
    transform: scale(1.05);
    text-decoration: none; 
}


.statistics-section .multiplier-value {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}


.statistics-section .bet-input {
    width: 100%;
    padding: 8px;
    border: 2px solid #73D7F1;
    border-radius: 8px;
    margin-top: 8px;
    text-align: center;
    background: linear-gradient(98.72deg, rgb(40, 169, 9) 0.24%, rgb(60, 209, 24) 100%);
    color: #fff;
}

.statistics-section .bet-input::placeholder{
    color: #fff;
}


.statistics-section .win-amount {
    color: #4CAF50;
    font-weight: 600;
    margin-top: 8px;
}



.statistics-section .stats-screenshots-gallery {
    margin-top: 40px;
    padding: 20px;
}


.statistics-section .screenshots-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    max-width: 1000px; 
    margin-left: auto;
    margin-right: auto;
}


.statistics-section .screenshot-item {
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s;
    width: 220px; 
}


.statistics-section .screenshot-item:hover {
    transform: scale(1.05);
}


.statistics-section .screenshot-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
}



.key-features {
    text-align: center;
    background-color: #1A0D2E;  
    padding: 2em;
    border-radius: 5px;
    border: 1px solid #00FFFF;
}


.key-features h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 33px;
    font-weight: 600;
}


.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
    margin-top: 1em;
    max-width: 1400px;
    margin: 0 auto;
}


@media (max-width: 576px) {
    .features-container {
        grid-template-columns: repeat(1, 1fr);
    }}

.feature {
    background-color: linear-gradient(180deg, #0A0A2A 0.24%, #1E1E4A 100%);;  
    padding: 1.5em;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 250px;  
    margin: 0 auto;  
}


.feature img {
    width: 80px;
    margin-bottom: 0.5em;
}


.bonus__button {
    color: #FFFFFF;  
    background-color: #28a909;  
    padding: 12px 24px;  
    border: 1px solid #28a909;  
    border-radius: 8px;  
    font-size: 16px;  
    font-weight: 700;  
    cursor: pointer;  
    transition: background-color 0.2s ease-in-out;  
    width: 100%;  
}


.bonus__button:hover {
    background-color: #1b7e0e;  
}


.bonus__button._gift-btn {
    position: relative; 
    color: #FFFFFF;
    background-image: linear-gradient(180deg, #0A0A2A 0.24%, #1E1E4A 100%);;
    padding: 12px 12px 12px 64px;
    border: 1px solid #28a909;
    transition: 0.2s ease-in-out;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    cursor: pointer;
    border-radius: 8px;
}


.bonus__button._gift-btn:hover {
    color: #28a909;
    background-color: transparent;
}



.bonus__button._gift-btn:before {
    content: '';
    position: absolute;
    top: -2px;
    left: 6px;
    width: 52px;
    height: 52px;
    background-image: url('/assets/images/gift_demo_astronautcrash_com_in.webp'); 
    background-size: contain;
    background-repeat: no-repeat;
    animation: move 2s infinite; 
}



@keyframes move {
    50% {
        transform: translateY(-5px) rotate(15deg);
    }
    70% {
        transform: translateY(-5px) rotate(5deg);
    }
}


.key-features-app-buttons {
    display: flex;
    flex-direction: column;  
    align-items: center;  
    gap: 7px;  
}


.key-features-app-store-button img,
.key-features-play-store-button img {
    height: 44px;
    width: auto;
    transition: transform 0.2s ease;
}


.key-features-app-store-button:hover img,
.key-features-play-store-button:hover img {
    transform: scale(1.05);
}



.case-studies {
    background-color: #1A0D2E;  
    text-align: center;
    padding: 20px 0;  
}


.case-studies h2 {
    font-size: 33px; 
    margin-bottom: 40px; 
    font-weight: 600; 
}


.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}




.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}


@media (max-width: 576px) {
    .carousel {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }}

.review {
    min-width: 200px;  
    padding: 20px;
    box-sizing: border-box;
    background-color: linear-gradient(180deg, #0A0A2A 0.24%, #1E1E4A 100%);;  
    border-radius: 5px;
    box-shadow: 0 2px 4px #B0BEC5;
    margin: 0 10px;  
}


.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}


.carousel-button.prev {
    left: 10px;
}


.carousel-button.next {
    right: 10px;
}



.integrations {
    text-align: center;
    background-color: #1A0D2E;  
    padding: 20px 0;  
}


.integrations h2 {
    font-size: 33px; 
    margin-bottom: 40px; 
    font-weight: 600; 
}


.partners {
    display: flex;
    justify-content: center;
    gap: 1em;
    flex-wrap: wrap;
    margin-top: 1em;
}


.partners img {
    width: 150px;  
    height: 150px; 
    object-fit: contain; 
}



.demo-game {
    text-align: center;
    background-color: #1A0D2E; 
    padding: 2em;
    border-radius: 5px;
    margin-bottom: 1em;
}


.demo-game h2 {
    font-size: 33px; 
    margin-bottom: 40px; 
    font-weight: 600; 
}


.demo-cover {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}


.demo-cover img {
    border-radius: 50px; 
    width: 100%; 
    height: auto; 
}


.demo-buttons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 10px; 
}


.demo-button {
    background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
    color: white;
    border: none;
    padding: 0; 
    border-radius: 80px;
    cursor: pointer;
    font-size: 16px; 
    font-weight: bold; 
    height: 50px; 
    width: 150px; 
    text-align: center; 
    line-height: 50px; 
}


#play-real {
    width: 200px; 
    height: 50px; 
    padding: 0; 
    font-size: 16px; 
    line-height: 50px; 
    text-align: center; 
}


.demo-button:hover {
    opacity: 0.9; 
}



.faq {
    display: flex;
    padding: 2em;
    background-color: #1A0D2E;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}


.faq h2 {
    font-size: 33px; 
    margin: 0; 
    font-weight: 600; 
}


.faq-content {
    flex: 1;
    background-color: linear-gradient(180deg, #0A0A2A 0.24%, #1E1E4A 100%);;
    color: white;
    padding: 1em;
    border-radius: 5px;
    margin-left: 1em;
}


.faq-image {
    flex: 1;
    text-align: center;
}


@media (max-width: 991px) {
    .faq-image {
        flex-basis: 100%;
    }}


.faq-image h2 {
    order: 1; 
    margin-top: 15px; 
    margin-bottom: 0; 
}


.faq-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    order: 2; 
}


.faq-image p {
    order: 3; 
}


.faq-item {
    margin-bottom: 1em;
    background-color: linear-gradient(180deg, #0A0A2A 0.24%, #1E1E4A 100%);;
    padding: 1em;
    border-radius: 5px;
    box-shadow: 0 2px 4px #B0BEC5;


}


.faq-item h3 {
    cursor: pointer;
}


.faq-content h2 {
    text-align: center; 
    margin: 0; 
}



footer {
    background: #1E1E4A;
    border: 1px solid #00FFFF;
    color: #fff;
    padding: 2em 2em; 
}


.footer-container {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}


.logo-column {
    display: flex; 
    align-items: center; 
}


@media (max-width: 576px) {
    .logo-column {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }}


.footer-logo {
    max-width: 150px; 
    height: auto; 
}


.regulator-logos-container {
    display: flex; 
    justify-content: flex-start; 
    align-items: center; 
    margin-left: 20px; 
}


.regulator-logo {
    max-width: 150px; 
    height: auto; 
    margin: 0 10px; 
}


.links-columns {
    display: flex;
    justify-content: space-between;
    text-align: left;
    flex-direction: row;
    gap: 20px;
}


.left-column, .right-column {
    flex: 1; 

}


.footer-column ul {
    list-style: none;
    padding: 0;
}


.footer-column ul li {
    margin-bottom: 0.5em;
}


.footer-column a {
    color: #fff;
    text-decoration: none;
}


.left-column a {
    white-space: nowrap; 
}


.footer-bottom {
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
    margin-top: 1em;
    padding-top: 1em;
    font-size: 0.9em;
    border-top: none; 
}


@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }


    .hero-left, .hero-right {
        max-width: 100%;
        text-align: center;
    }


    .stats-container, .features-container, .case {
        flex-direction: column;
        align-items: center;
    }


    .footer-container {
        flex-direction: column;
        align-items: center;
    }
}



.casino-listing {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1200px; 
  margin: 0 auto;
  padding: 0 40px; 
}


.casino-row-container {
  width: calc(100% + 30px); 
  margin-left: -10px; 
  background: linear-gradient(180deg, #0A0A2A 0.24%, #1E1E4A 100%);;
  border-radius: 16px;
  padding: 32px 44px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  box-sizing: border-box;
}


@media (max-width: 991px) {
    .casino-row-container {
        padding: 20px;
        width: 100%;
        margin-left: inherit;
    }}



.casino-main-info {
  display: grid;
  grid-template-columns: 320px 250px auto 180px; 
  gap: 24px;
  align-items: center;
}

@media (max-width: 991px) {
    .casino-main-info {
        display: flex;
        margin-bottom: 20px;

    }}


.casino-logo-section {
  display: flex;
  gap: 16px;
  align-items: center;
}


@media (max-width: 991px) {
    .casino-logo-section {
        flex-wrap: wrap;
    justify-content: center;

    }}


.casino-logo {
  width: 170px;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  margin-left: -30px;
}



@media (max-width: 991px) {
    .casino-logo {
        width: 100%;
        height: auto;
        border-radius: 8px;
        object-fit: contain;
        margin-left: inherit;
        max-width: 180px;

    }}


.casino-basic-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left; 
    align-items: flex-start; 
  }
 
  .casino-name {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    text-align: left; 
  }
 
  .casino-rating {
    color: #fff;
    font-size: 14px;
    text-align: left;
    background-color: rgba(115, 215, 241, 0.1); 
    padding: 4px 8px; 
    border-radius: 4px; 
    display: inline-flex; 
    align-items: center; 
    gap: 4px; 
  }
 
  .star {
    color: #73D7F1; 
  }
 
  .casino-review-link {
    color: #4F46E5;
    text-decoration: none;
    font-size: 14px;
    text-align: left; 
  }


.casino-bonus-section {
  text-align: center;
  margin-right: 20px; 
}


.bonus-label {
  color: #fff;
  font-size: 14px;
  margin-bottom: 4px;
}


.bonus-amount {
  font-size: 18px;
  font-weight: 600;
}


.casino-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  align-items: flex-start;
  margin-left: 35px; 
}


.feature-item {
  color: #fff;
  font-size: 14px;
  text-align: left;
  width: 100%;
  line-height: 1.4;
  white-space: pre-wrap;
  max-width: 200px;
}


.casino-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}


.visit-site-button {
    background: linear-gradient(98.72deg, rgb(40, 169, 9) 0.24%, rgb(60, 209, 24) 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}


.visit-site-button:hover {
  color: white; 
  text-decoration: none; 
  transform: scale(1.05); 
}


.casino-footer {
  margin-top: auto;
  margin-bottom: -40px;
  padding-top: 16px;
  padding-bottom: 20px;
  border-top: 1px solid #eee;
  font-size: 12px;
  color: #fff;
}


.hidden {
  display: none;
}


@media (max-width: 1024px) {
  .casino-listing {
    flex-direction: column;
  }
 
  .casino-main-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}


p {
  font-family: 'Montserrat', sans-serif;
  color: white;
  font-weight: 400;
}



.btn-link {
  font-family: 'Montserrat', sans-serif;
  color: #FFB800;
  font-weight: 600;
}


.btn-link:hover {
  color: #ffc833;
}



.casino-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 80px 20px;
  background-color: #73D7F1;
}


.casino-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  max-width: 400px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


.statistics-section .max-win-amount {
    font-weight: 700;
    font-size: 15px;
    color: #2E7D32;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end; 
}


.statistics-section .fire-badge {
    background: linear-gradient(90deg, #FFB800 0%, #FF8A00 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 16px;
    animation: pulse 2s infinite;
}


@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}



.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}


.modal-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
}


.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}


.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}



.toc {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: linear-gradient(180deg, #0A0A2A 0.24%, #1E1E4A 100%); 
    border: 2px solid rgba(0, 0, 0, 0.1); 
    border-radius: 12px; 
    padding: 16px; 
    margin: 0 20px; 
    color: white; 
}



.toc__title {
    font-size: 20px; 
    margin-bottom: 20px; 
    font-weight: 300; 
    display: flex;
    justify-content: space-between; 
    align-items: center;
    width: 100%;
}



.toc__toggle {
    background: none;
    border: 2px solid white;  
    border-radius: 50%;       
    width: 32px;              
    height: 32px;             
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1em;
    color: white;             
}



.toc__content {
    width: 100%;
    
}



.toc__list {
    list-style: none; 
    padding: 0;
    margin: 0;
    display: flex; 
    flex-wrap: wrap;
    gap: 10px; 
}



.toc__item {
    margin: 0;
}



.toc__link {
    background: linear-gradient(180deg, #0A0A2A 0.24%, #1E1E4A 100%);; 
    border: 1px solid rgba(0, 0, 0, 0.1); 
    color: #fff; 
    font-weight: bold; 
    text-decoration: none; 
    padding: 4px 8px; 
    border-radius: 4px; 
    transition: background 0.3s; 
}


.toc__link:hover {
    background: #e6c25a; 
    color: white;
}


.max-win-amount a {
    color: #fff; 
    text-decoration: none; 
}


.max-win-amount a:hover {
    text-decoration: underline; 
}



.toc:hover {
    cursor: pointer;
}


.toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 20px; 
}


.toc__title {
    font-size: 20px; 
    font-weight: 300; 
    margin: 0;  
}


.author-block {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: var(--color-body); 
    color: var(--color-text);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 40px 20px;
}


.author-block__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}


.author-block__text {
    flex: 1;
    min-width: 250px;
}


.author-block__name {
    font-size: 24px;
    margin-bottom: 10px;
}


.author-block__content {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.5;
}


.author-block__social a {
    margin-right: 10px;
    display: inline-block;
}


.author-block__social a:last-child {
    margin-right: 0;
}


.author-block__social img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    filter: invert(1);
}


.author-block__photo {
    flex-shrink: 0;
    border: 2px solid var(--color-toc-item-hover); 
    border-radius: 8px;
    overflow: hidden;
    width: 220px;
    height: 220px;
}


.author-block__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.main-nav {
    text-align: center;
}


.nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}



@media (min-width: 1200px) {
    .nav-list {
        flex-direction: row;
        gap: 32px;
    }
}

@media(max-width:1199px){
    .nav-list {
        display: grid;
        grid-template: 1fr 1fr / 1fr 1fr;
    }
}


.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}


@media (max-width: 991px) {
    .casino-listing {
        padding: 0;
    }}
   



    .page_404 {
        padding: 40px 0;
        width: 100%;
    }
    
    .page_404 h1 {
        font-size: 52px;
        font-weight: 900;
        line-height: 1.1;
        color: #ff8c00;
        margin-bottom: .2em;
        margin-top: 0.5em;
        text-align: center;
    }
    
    
    .page_404 p {
        text-align: center;
    }


    .page-content {
        margin-top: 40px;
    }


    .breadcrumbs {
        display: flex;
        gap: 4px;
        margin: 4px auto;
    }

    .breadcrumbs-link {
        position: relative;
        display: flex;
        gap: 4px;
    }


    .breadcrumbs-link:before {
        content: ">";
        display: block;
        

    }


    .link-ma-b {
        color: linear-gradient(180deg, #0A0A2A 0.24%, #1E1E4A 100%);;
        font-weight: 500;
    }