/* Font declarations */
@font-face {
	font-family: 'Inter';
	src: url('./fonts/Inter-Regular.otf') format('otf');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url('./fonts/Montserrat-Black.woff2') format('woff2'),
		 url('./fonts/Montserrat-Black.woff') format('woff');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

/* Base font settings */
:root {
	font-family: 'Montserrat', sans-serif;
}

body {
	font-family: 'Inter', sans-serif;
	font-weight: 400;

}

h1,h2,h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
h1{
    font-size: 52px;
    text-shadow: 0 2px 2px #f9b406 !important;
}
h2{
    font-size: 38px !important;
    font-weight: 900 !important;
    color: rgb(4, 118, 255) !important;
    margin-bottom: 24px !important;
    text-shadow: 0 2px 1px #0a2233 !important;
}
h3{
    font-size: 26px !important;
    font-weight: 900 !important;
    color: rgb(4, 118, 255) !important;
    margin-bottom: 24px !important;
    text-shadow: 0 2px 1px #0a2233 !important;
}
.dashboard-sea--video {
    width: 100%;
    display: block;
}

.dashboard-sea--video-mobile {
    width: 100%;
    display: none;
}

@media (max-width: 768px) {
    .dashboard-sea--video {
        display: none;
    }
    
    .dashboard-sea--video-mobile {
        display: block;
        position: fixed;
        right: 0;
        bottom: 0;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: -1;
        object-fit: cover;
    }
}

.dynamic-sea-bubbles--bubble {
    position: absolute;
    bottom: 0;
    opacity: .8;
    width: 25px;
    height: 25px;
    transform: translate(-50%) scale(0);
    border-radius: 50%;
    transition: opacity .2s linear, margin-left .2s linear, margin-right .2s linear;
    background-image: url("./img/bubble.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
@keyframes bubbleZigZagLeft {
    0% { transform: translateX(-20px) translateY(0) scale(1); opacity: 1; }
    25% { transform: translateX(20px) translateY(-100px); }
    50% { transform: translateX(-15px) translateY(-200px) scale(1.2); }
    75% { transform: translateX(10px) translateY(-300px); }
    100% { transform: translateX(-5px) translateY(-400px) scale(0.5); opacity: 0; }
}

@keyframes bubbleZigZagRight {
    0% { transform: translateX(20px) translateY(0) scale(1); opacity: 1; }
    25% { transform: translateX(-20px) translateY(-100px); }
    50% { transform: translateX(15px) translateY(-200px) scale(1.2); }
    75% { transform: translateX(-10px) translateY(-300px); }
    100% { transform: translateX(5px) translateY(-400px) scale(0.5); opacity: 0; }
}
.hero-slider{
    height: 100%;
    overflow: hidden;
}
.dynamic-sea-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.bubble-container {
    position: absolute;
    width: 100px;
    height: 500px;
    top: 50%;
    transform: translateY(-50%);
}

.bubble-container.left { left: 10%; }
.bubble-container.right { right: 10%; }

.bubble {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    position: absolute;
    bottom: 0;
}

.bubble.left { animation: bubbleZigZagLeft 6s infinite; }
.bubble.right { animation: bubbleZigZagRight 6s infinite; }

.slider{
    max-width: 900px;
    width: 100%;
}
.slide{
    display: flex!important;
    justify-content: center;
    align-items: center;
}
.slide img {
    height: 450px;
    object-fit: contain;
    background-position: bottom;
    bottom: 0;
}
.slider-content h1,
.slider-content h3 {
    margin: 0 auto 12px;
    text-shadow: 0 0 18px #0262c2;
    color: #fff;
}
.slider-content h1 {
    font-size: 52px;
    line-height: 1.2;
}
.hero-slider::after{
    content: "";
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 9;
    height: 100px;
    position: absolute;
    background: url('./img/wave-white-small.webp') repeat-x 0 100% / 100px;
}
.hero-btn{
    background-image: url("./img/btn-secondary-bg.webp");
    color: rgb(var(--white));
   
    border-radius: 15px;
    text-transform: uppercase;
    text-shadow: 0 2px rgb(var(--red100) / .2);
    font-size: 16px;
    line-height: 55px;
    text-transform: uppercase;
    font-weight: 800;
}
.slider-content h3{
    font-size: 12px;
    line-height: 140%;
    font-weight: 700;
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    padding: 4px 12px;
    background: #0262c2;
    border-radius: 4px;
    margin-bottom: 6px;
}

/* Navigation styles */
.navbar {
    background: linear-gradient(to bottom, #003B95, #002B6F);
    padding: 15px 0;
}

.navbar .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.nav-left-column {
    justify-self: start;
}

.navbar-toggler {
    background: transparent;
    border: none;
    padding: 0;
    margin-right: 20px;
    color: white;
    font-size: 24px;
}

.navbar-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: white !important;
    font-size: 16px;
    font-weight: 800;
    padding: 0 !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #FFD700 !important;
}

.nav-center-column {
    justify-self: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-right-column {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    padding: 5px;
    cursor: pointer;
}

.mobile-buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.mobile-buttons .btn {
    width: 100%;
}

.desktop-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-login,
.btn-register {
    padding: 8px 25px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    text-transform: uppercase;
    border: none;
    color: white;
}

.btn-login {
    background-image: url("./img/btn-primary-bg2.webp");
    font-size: 14px;
    border-radius: 10px;
    font-weight: 900;
    padding: 12px 35px;
    min-width: 140px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 
        0 5px 15px rgba(75, 177, 248, 0.2),
        inset 0 -5px 10px rgba(0, 0, 0, 0.2),
        inset 0 5px 10px rgba(255, 255, 255, 0.2);
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0) 100%
    );
    pointer-events: none;
}

.btn-login:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 20px rgba(75, 177, 248, 0.3),
        inset 0 -5px 10px rgba(0, 0, 0, 0.2),
        inset 0 5px 10px rgba(255, 255, 255, 0.2);
}

.btn-register {
    background-image: url("./img/btn-secondary-bg.webp");
    padding: 12px 35px;
    color: white;
    width: 140px;
    border-radius: 12px;
    text-transform: uppercase;
    text-shadow: 0 2px rgba(255, 0, 0, 0.2);
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    border: none;
}

.btn-register:hover {
    transform: translateY(-2px);
    color: white;
}

@media (max-width: 991px) {
    .navbar .container {
        grid-template-columns: auto auto auto;
    }
    
    .nav-left-column {
        order: 1;
    }
    
    .nav-center-column {
        order: 0;
    }
    
    .nav-right-column {
        order: 2;
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #002B6F;
        padding: 1rem;
        z-index: 1000;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 15px;
    }
}

/* Top Games Section */
.top-games {
    padding: 60px 0;
    background: #fff;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.title-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-icon {
    width: 40px;
    height: 40px;
}

.section-header h2 {
    color: #0262C2;
    font-size: 24px;
    font-weight: 800;
    margin: 0;
}

.see-all {
    color: #0262C2;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.see-all:hover {
    color: #0056b3;
}

.games-slider {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 0 -10px;
}

.game-card {
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1/1;
    margin-bottom: 10px;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 43, 111, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .hover-overlay {
    opacity: 1;
}

.play-btn, .demo-btn {
    padding: 10px 25px;
    border-radius: 25px;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-btn {
    background-image: url("./img/btn-secondary-bg.webp");
    color: white;
    text-shadow: 0 2px rgba(255, 0, 0, 0.2);
}

.demo-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.play-btn:hover, .demo-btn:hover {
    transform: translateY(-2px);
}

.game-card h3 {
    color: #002B6F;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

@media (max-width: 1200px) {
    .games-slider {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .games-slider {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .games-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Casino Slider Section */
.casino-slider {
    padding-top: 40px;
    background: #fff;
}

.casino-slider .container {
    max-width: 100%;
    padding: 0;
}

.casino-games-slider {
    margin: 0;
}

.casino-games-slider .slider-item {
    padding: 10px;
}

.casino-games-slider .game-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.casino-games-slider .game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.casino-games-slider .hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 43, 111, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.casino-games-slider .game-card:hover {
    transform: translateY(-5px);
}

.casino-games-slider .game-card:hover .hover-overlay {
    opacity: 1;
}

.casino-games-slider .play-btn,
.casino-games-slider .demo-btn {
    padding: 10px 25px;
    border-radius: 25px;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.casino-games-slider .play-btn {
    background-image: url("./img/btn-secondary-bg.webp");
    color: white;
    text-shadow: 0 2px rgba(255, 0, 0, 0.2);
}

.casino-games-slider .demo-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.casino-games-slider .play-btn:hover,
.casino-games-slider .demo-btn:hover {
    transform: translateY(-2px);
}

/* Slick Slider Custom Styles */
.casino-games-slider .slick-prev,
.casino-games-slider .slick-next {
    display: none !important;
}

.casino-games-slider .slick-prev:before,
.casino-games-slider .slick-next:before {
    font-size: 20px;
    opacity: 1;
}

.casino-games-slider .slick-prev:hover,
.casino-games-slider .slick-next:hover {
    background: rgba(0, 43, 111, 0.8);
}

/* Bottom Casino Slider Section */
.bottom-casino-slider {
    padding: 20px 0;
    background: #fff;
}

.bottom-casino-slider .container {
    max-width: 100%;
    padding: 0;
}

.bottom-games-slider {
    margin: 0;
}

.bottom-games-slider .slider-item {
    padding: 10px;
}

.bottom-games-slider .game-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.bottom-games-slider .game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bottom-games-slider .hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 43, 111, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bottom-games-slider .game-card:hover {
    transform: translateY(-5px);
}

.bottom-games-slider .game-card:hover .hover-overlay {
    opacity: 1;
}

.bottom-games-slider .play-btn,
.bottom-games-slider .demo-btn {
    padding: 10px 25px;
    border-radius: 25px;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.bottom-games-slider .play-btn {
    background-image: url("./img/btn-secondary-bg.webp");
    color: white;
    text-shadow: 0 2px rgba(255, 0, 0, 0.2);
}

.bottom-games-slider .demo-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bottom-games-slider .play-btn:hover,
.bottom-games-slider .demo-btn:hover {
    transform: translateY(-2px);
}

/* Slick Slider Custom Styles for Bottom Slider */
.bottom-games-slider .slick-prev,
.bottom-games-slider .slick-next {
    display: none !important;
}

.bottom-games-slider .slick-prev:before,
.bottom-games-slider .slick-next:before {
    font-size: 20px;
    opacity: 1;
}

.bottom-games-slider .slick-prev:hover,
.bottom-games-slider .slick-next:hover {
    background: rgba(0, 43, 111, 0.8);
}

/* Full Screen Image Section */
.full-screen-image {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: white;
    margin: 40px 0;
    padding: 20px;
}

@media screen and (min-width: 768px){
    .full-screen-image {
        background-image: url("./img/img/banner-jackpot-bg.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 50vh;
}
}

.full-screen-image .content-wrapper {
    max-width: 800px;
    padding: 20px;
    z-index: 1;
}

.full-screen-image p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.full-screen-image .hero-btn {
    margin: 0 auto;
    min-width: 200px;
    font-size: 18px;
}

@media (max-width: 768px) {
   

    .full-screen-image h2 {
        font-size: 42px;
    }

    .full-screen-image p {
        font-size: 18px;
    }
}

/* Content Section */
.content-section {
    background: linear-gradient(135deg, #f8f9fa 60%, #eaf4ff 100%);
    padding: 48px 0;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(4, 118, 255, 0.07), 0 1.5px 8px rgba(10,34,51,0.04);
    margin-bottom: 32px;
    transition: box-shadow 0.3s;
}
.content-section:hover {
    box-shadow: 0 12px 40px rgba(4, 118, 255, 0.13), 0 2px 12px rgba(10,34,51,0.07);
}
.content-section .spinanga-review-content, .content-section .content-text, .content-section .text {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(4, 118, 255, 0.06);
    padding: 32px 28px;
    margin-bottom: 0;
}
.content-section p {
    color: #150d5b !important;
    font-size: 19px !important;
    line-height: 1.7;
    margin-bottom: 18px !important;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 0 #eaf4ff;
}
.content-section h2 {
    font-size: 38px !important;
    font-weight: 900 !important;
    color: rgb(4, 118, 255) !important;
    margin-bottom: 24px !important;
    text-shadow: 0 2px 1px #0a2233 !important;
    letter-spacing: 0.01em;
}
.content-section h3 {
    font-size: 26px !important;
    font-weight: 900 !important;
    color: rgb(4, 118, 255) !important;
    margin-bottom: 24px !important;
    text-shadow: 0 2px 1px #0a2233 !important;
    letter-spacing: 0.01em;
}
.content-section ul {
    padding-left: 1.5em;
    margin-bottom: 18px;
}
.content-section li {
    color: #0a2233;
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.6;
    position: relative;
}
.content-section li::marker {
    color: rgb(4, 118, 255);
}
.content-section strong {
    color: #0446ff;
    font-weight: 800;
}
.content-section em {
    color: #0a2233;
    font-style: italic;
    background: #eaf4ff;
    border-radius: 4px;
    padding: 0 4px;
}
@media (max-width: 991px) {
    .content-section .spinanga-review-content, .content-section .content-text, .content-section .text {
        padding: 18px 8px;
    }
    .content-section {
        padding: 20px;
        border-radius: 12px;
    }
    .content-section h2 {
        font-size: 26px !important;
    }
    .content-section h3 {
        font-size: 20px !important;
    }
    .content-section p, .content-section li {
        font-size: 16px !important;
    }
}

/* Table Section */
.table-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.table-section::before,
.table-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(2, 98, 194, 0.05), rgba(0, 43, 111, 0.05));
    z-index: 0;
}

.table-section::before {
    top: -100px;
    left: -100px;
}

.table-section::after {
    bottom: -100px;
    right: -100px;
}

.table-section .container {
    position: relative;
    z-index: 1;
}

.table-section h2 {
    color: #002B6F;
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
}

.table-custom {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 43, 111, 0.1);
}

.table-custom thead {
    background: linear-gradient(to right, #003B95, #002B6F);
}

.table-custom th {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    padding: 20px;
    border: none;
    font-size: 16px;
}

.table-custom td {
    padding: 20px;
    border: none;
    border-bottom: 1px solid rgba(0, 43, 111, 0.1);
    color: #4A4A4A;
    font-size: 16px;
    vertical-align: middle;
}

.table-custom tbody tr {
    transition: background-color 0.3s ease;
}

.table-custom tbody tr:hover {
    background-color: rgba(0, 43, 111, 0.05);
}

.table-custom tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .table-section {
        padding: 60px 0;
    }

    .table-section h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .table-custom th,
    .table-custom td {
        padding: 15px;
        font-size: 14px;
    }
    img {
        max-width: 120px!important;
    }
}

/* Accordion Section */
.accordion-section {
    padding: 60px 20px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.accordion-section h2 {
    color: #002B6F;
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 50px;
    text-align: center;
}

.accordion-section .accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 43, 111, 0.1);
}

.accordion-button {
    padding: 20px 30px;
    font-size: 18px;
    font-weight: 600;
    color: #4A4A4A;
    background: #f8f9fa;
    border: none;
    position: relative;
}

.accordion-button:not(.collapsed) {
    color: #002B6F;
    background: #fff;
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23002B6F' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    transition: transform 0.3s ease;
    width: 20px;
    height: 20px;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23002B6F' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
    transform: rotate(0deg);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 20px 30px;
    font-size: 16px;
    line-height: 1.6;
    color: #4A4A4A;
    background: #fff;
}

@media (max-width: 768px) {
    .accordion-section {
        padding: 60px 20px;
    }

    .accordion-section h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .accordion-button {
        padding: 15px 20px;
        font-size: 16px;
    }

    .accordion-body {
        padding: 15px 20px;
        font-size: 14px;
    }
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #0a2233 0%, #003B95 100%);
    color: #fff;
    padding-bottom: 20px;
    position: relative;
}

.footer-main {
    padding-top: 40px;
}

.footer-main h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: none;
}

.language-chat {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.lang-btn,
.chat-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.lang-btn img {
    width: 20px;
    height: auto;
}

.lang-btn:hover,
.chat-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.additional-links h3 {
    margin-top: 30px;
}

.payment-methods {
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.payment-icons img {
    height: 30px;
    width: auto;
}

.show-more {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    margin-left: 15px;
}

.show-more:hover {
    color: #fff;
}

.warning-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .footer-main .col-md {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .language-chat {
        justify-content: center;
    }

    .payment-icons {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 80vh;
    }

    .slide {
        flex-direction: column-reverse;
        padding: 20px;
    }

    .slide img {
        height: 250px;
        margin-top: 20px;
    }

    .slider-content {
        padding: 0 15px;
    }

    .slider-content h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .slider-content h3 {
        font-size: 10px;
        padding: 3px 10px;
        margin-bottom: 10px;
    }

    .hero-btn {
        min-height: 50px;
       
        font-size: 14px;
        border-radius: 12px;
    }

    .hero-slider::after {
        height: 50px;
        background-size: 50px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 70vh;
    }

    .slide img {
        height: 330px;
    }

    .slider-content h1 {
        font-size: 28px;
    }

    .hero-btn {
        min-height: 45px;
       
        font-size: 12px;
    }
}

/* Spinanga Review Section Styles */
.spinanga-review-section {
    background-color: #f9f9f9;
}
.spinanga-review-container {
   
    display: flex;
    flex-direction: row;
    gap: 40px;
}
.spinanga-review-content {
    flex: 1 1 0;
    min-width: 260px;
}
.spinanga-review-meta {
    font-size: 20px;
    font-weight: 700;
    color: rgb(4 118 255);
    gap: 30px;
}
.spinanga-review-title {
    font-size: 38px;
    font-weight: 900;
    color: rgb(4 118 255);
    margin-bottom: 24px;
    text-shadow: 0 2px 1px #0a2233;
}
.spinanga-review-content p {
    color: #150d5b;
    font-size: 18px;
    margin-bottom: 18px;
}
.spinanga-review-content strong {
    color: #150d5b;
    font-weight: 700;
}
.spinanga-review-content em {
    font-style: italic;
    color: #95ffd9;
}
.spinanga-review-images {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.spinanga-game-img {
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
    background: #0a2233;
}
.review-rating .text-warning {
    color: #ffd700 !important;
}
@media (max-width: 991px) {
    .spinanga-review-container {
        width: 90%;
        flex-direction: column;
        align-items: stretch;
        padding: 30px 10px;
        gap: 24px;
    }
    .spinanga-review-images {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }
    .spinanga-game-img {
        max-width: 100px !important;
    }
}
@media (max-width: 600px) {
    .spinanga-review-section {
        padding: 20px;
    }
    .spinanga-review-container {
        width: 100%;
        padding: 10px 0;
    }
    .spinanga-review-title {
        font-size: 24px;
    }
    .spinanga-review-content p {
        font-size: 15px;
    }
    .spinanga-review-meta {
        font-size: 15px;
    }
}

.content-section img {
  border-radius: 16px;
  transition: border-radius 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(4, 118, 255, 0.07);
}
@media (max-width: 991px) {
  .content-section img {
    border-radius: 10px;
  }
}
.full-screen-image h2 {
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #fff!important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.hero-bonus-text,
.hero-desc  {
    font-weight: 600;
}

#sticky-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #211073;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}
#sticky-banner img {
    height: 48px;
    margin-right: 18px;
}
#sticky-banner > div {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-right: 18px;
}
#sticky-banner a {
    background: #FFD700;
    color: #8B4000;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 12px 32px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background 0.2s;
}
#sticky-banner a:hover {
    background: #ffe066;
}
@media (max-width: 600px) {
    #sticky-banner {
        flex-direction: column;
        padding: 10px 0;
    }
    #sticky-banner img {
        margin: 0 0 10px 0;
    }
    #sticky-banner > div {
        margin: 0 0 10px 0;
        font-size: 1rem;
        text-align: center;
    }
    #sticky-banner a {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* --- Глобальное скрытие горизонтального скролла --- */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* --- Улучшение адаптивности для очень маленьких экранов --- */
@media (max-width: 375px) {
  .games-slider {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .spinanga-review-container {
    flex-direction: column;
    gap: 12px;
    padding: 0 4px;
  }
  .spinanga-game-img {
    max-width: 80px !important;
  }
  .content-section, .table-section, .footer-main {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
}

/* --- Review Block (German) --- */
.review-block.de {
  background: linear-gradient(135deg, #0a2233 0%, #003B95 100%);
  color: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  margin: 40px 0;
  box-shadow: 0 2px 12px rgba(4, 118, 255, 0.07);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.review-block.de .review-author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.review-block.de .review-author-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid #0262c2;
}

.review-block.de .review-author-label {
  font-size: 13px;
  color: #ffd700;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.review-block.de .review-author-name {
  font-size: 32px;
  font-weight: 900;
  color: #ffdc10;
  text-shadow: 0 2px 4px #0a2233;
}

.review-block.de .review-text {
  font-size: 18px;
  color: #fff;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .review-block.de {
    padding: 16px 8px;
    border-radius: 10px;
  }
  .review-block.de .review-author-img {
    width: 56px;
    height: 56px;
  }
  .review-block.de .review-author-name {
    font-size: 22px;
  }
  .review-block.de .review-text {
    font-size: 15px;
  }
}

