/* 
Theme Name: LiraSpin Casino Theme
Description: Тема для сайта LiraSpin Casino с поддержкой ACF
Version: 1.2
Author: Your Name
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



a {
    text-decoration: none;
}

ul,ol {
    list-style: none;
    margin: 20px 0;
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    
    overflow-x: hidden;
}

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

/* Header */
.header {
    background-color: #2d2540;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(18, 21, 30, 0.2);
    transition: all 0.3s ease;

}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.logo i {
    font-size: 28px;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

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

.desctop-hero-text {
	display:block;
	margin-top:20px;
}


.desctop-hero-text .hero-btn  {
		display:flex;
   justify-content: center;
    margin-top: 20px;

}

/*.desctop-hero-text .hero-btn a  {*/
/*	gap: 10px;*/
/*    background: linear-gradient(45deg, #ffd700, #ffed4e);*/
/*    color: #0a0e27;*/
/*    padding: 16px 32px;*/
/*    border-radius: 30px;*/
/*    text-decoration: none;*/
/*    font-weight: 700;*/
/*    font-size: 18px;*/
/*    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);*/
/*    transition: all 0.3s ease;*/


/*}*/

.desctop-hero-text .hero-btn a:hover{
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.hero-desktop {
	position:relative;
	z-index:4;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 25px;
    justify-content: space-between;
    z-index: 1001;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #ffd700;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: none !important;
    border: none !important;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #ffd700 !important;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    background: transparent !important;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: #ffd700 !important;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
}

/* Additional mobile menu toggle fixes for incognito mode */
.mobile-menu-toggle:focus {
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}

.mobile-menu-toggle:hover {
    background: transparent !important;
}

.mobile-menu-toggle:active {
    background: transparent !important;
    transform: none !important;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-content {
    padding: 20px 30px 30px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px 0 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    position: sticky;
    top: 0;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1001;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #ffd700;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    flex: 1;
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-nav-link:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(5px);
}

.mobile-nav-link::before {
    content: "▶";
    font-size: 12px;
    color: #ffd700;
    transition: transform 0.3s ease;
}

.mobile-nav-link:hover::before {
    transform: translateX(5px);
}

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.mobile-btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border-radius: 25px;
}

/* Buttons */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #0a0e27;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    border: 2px solid #ffd700;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.6);
    background: linear-gradient(45deg, #ffed4e, #ffd700);
}

.btn-secondary {
    background: linear-gradient(45deg, #4a90e2, #357abd);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
    border: 2px solid #4a90e2;
}

.btn-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(74, 144, 226, 0.6);
    background: linear-gradient(45deg, #357abd, #4a90e2);
}

.btn-hero {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #0a0e27;
    font-size: 20px;
    font-weight: 700;
    padding: 20px 40px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
    border: 3px solid #ffd700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.8);
    background: linear-gradient(45deg, #ffed4e, #ffd700);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
	 background-color: #483d61;
}

.hero-banner {
    position: relative;
    width: 100%;

    overflow: hidden;
    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner img {
    max-width: 100%;
	width:100%;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.8) 0%, rgba(26, 31, 58, 0.7) 50%, rgba(10, 14, 39, 0.8) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,215,0,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 3;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    animation: float-particle 6s infinite linear;
}

.hero-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-particles::after {
    top: 60%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes float-particle {
    0% { transform: translateY(0px) rotate(0deg); opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
}

.hero-text h1 {
    font-size: 6rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    letter-spacing: 2px;
    text-align: center;
}

.hero-text h2 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 20px;
}

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

.highlight {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: #0a0e27;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-coin {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 40px;
    animation: bounce 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Mobile Hero Styles */
.hero-mobile {
    display: none;
    padding-top: 30px;
}

.mobile-hero-content {
    display: block;
    text-align: center;
position:relative;
	z-index:10;
    padding: 20px 0;
}

.mobile-hero-content h1 {
    font-size: 30px;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.mobile-hero-image {
    width: 100%;
   
    margin: 0 auto 25px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mobile-hero-img {
    width: 100%;
/*     height: 200px;
    object-fit: cover; */
    display: block;
}



.mobile-hero-text h2 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.mobile-hero-text p {
    font-size: 16px;
    color: #b8c5d6;
    line-height: 1.5;
    margin-bottom: 10px;
    text-align: left
}

.mobile-hero-text strong {
    color: #ffd700;
    font-weight: 700;
}

.mobile-hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    width: 100%;
    max-width: 280px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 215, 0, 0.1);
    padding: 10px 15px;
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.feature-item i {
    color: #ffd700;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.feature-item span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.mobile-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #0a0e27;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.mobile-hero-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.mobile-hero-btn i {
    font-size: 16px;
}

/* Casino Info */
.casino-info {
    padding: 80px 0;
     background-color:#2d2540;
	color: white;
}

.casino-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: white;
}

.info-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.info-table .table-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-table .table-row:last-child {
    border-bottom: none;
}

.info-table .table-row:hover {
    background: rgba(255, 215, 0, 0.05);
}

.info-label {
    font-weight: bold;
    color: white;
    font-size: 1.1rem;
}

.info-value {
    color: #ffffff;
    font-size: 1rem;
}

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

.info-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.info-item:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.info-item i {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.info-item p {
    font-size: 1.1rem;
    color: #b8c5d6;
    font-weight: 600;
}

/* Games Section */
.games-section {
    padding: 80px 0;
     background-color: #483d61;
}

.games-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: white;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffffff;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #0a0e27;
    border-color: #ffd700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

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

.game-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.game-card:hover::before {
    left: 100%;
}

.game-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: #ffd700;
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.game-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #4a90e2, #357abd);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: #ffffff;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.game-card:hover .game-image {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.5);
    border-color: #ffd700;
}

.game-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.game-card p {
    color: #b8c5d6;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.game-rating {
    margin-top: 15px;
    font-size: 1.4rem;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    font-weight: bold;
}

/* Tournaments Section */
.tournaments-section {
    padding: 80px 0;
    background: rgba(30, 34, 47, 1);
}

.tournaments-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: white;
}

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

.tournament-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.tournament-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.tournament-card:hover::before {
    left: 100%;
}

.tournament-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.mega-jackpot {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
}

.weekly-tournament {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(74, 144, 226, 0.05));
}

.daily-bonus {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(255, 105, 180, 0.05));
}

.jackpot-amount {
    margin-bottom: 20px;
}

.currency {
    font-size: 2rem;
    color: #ffd700;
    font-weight: bold;
}

.amount {
    font-size: 3rem;
    color: #ffd700;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.jackpot-timer {
    color: #b8c5d6;
    margin: 20px 0;
    font-size: 0.9rem;
}

.btn-jackpot {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #0a0e27;
    font-weight: bold;
    padding: 15px 30px;
}

.tournament-prize {
    margin-bottom: 20px;
}

.prize-amount {
    display: block;
    font-size: 2.5rem;
    color: #4a90e2;
    font-weight: bold;
}

.prize-label {
    color: #b8c5d6;
    font-size: 0.9rem;
}

.tournament-progress {
    margin: 20px 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #4a90e2, #357abd);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.btn-tournament {
    background: linear-gradient(45deg, #4a90e2, #357abd);
    color: #ffffff;
    font-weight: bold;
    padding: 15px 30px;
}

.bonus-icon {
    font-size: 3rem;
    color: #ff69b4;
    margin-bottom: 20px;
}

.bonus-calendar {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.calendar-day {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #b8c5d6;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.calendar-day.active {
    background: #ff69b4;
    color: #ffffff;
    border-color: #ff69b4;
}

.btn-bonus {
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    color: #ffffff;
    font-weight: bold;
    padding: 15px 30px;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background-color: rgba(30, 34, 47, 1);
}

.reviews-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: white;
}

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

.review-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.player-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0a0e27;
}

.player-info h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.rating {
    color: #ffd700;
    font-size: 1rem;
}

.review-card p {
    color: #b8c5d6;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-date {
    color: #b8c5d6;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Mobile App Section */
.mobile-app-section {
    padding: 80px 0;
    background: rgba(10, 14, 39, 0.9);
}

.mobile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mobile-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffd700;
}

.mobile-text p {
    font-size: 1.2rem;
    color: #b8c5d6;
    margin-bottom: 30px;
    line-height: 1.6;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

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

.feature i {
    color: #ffd700;
    font-size: 1.5rem;
    width: 30px;
}

.feature span {
    color: #ffffff;
    font-size: 1.1rem;
}

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

.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.app-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.app-btn i {
    font-size: 1.5rem;
    color: #ffd700;
}

.mobile-preview {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 250px;
    height: 450px;
    background: linear-gradient(45deg, #333, #666);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #666;
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27, #1a1f3a);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    color: #ffd700;
    font-weight: bold;
    font-size: 1.2rem;
}

.app-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-game {
    text-align: center;
    color: #ffffff;
}

.quick-game i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 15px;
    display: block;
}

.quick-game span {
    font-size: 1rem;
    opacity: 0.9;
}

/* Table of Contents */
.toc-section {
    padding: 80px 0;
    background-color: rgba(30, 34, 47, 1);
}

.toc-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: white;
}

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

.toc-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-decoration: none;
    color: #ffffff;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    flex-direction: column;
}

.toc-item:hover {
    transform: translateX(10px);
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.toc-item i {
    font-size: 1.5rem;
    color: #ffd700;
    width: 30px;
    text-align: center;
}

.toc-item span {
    font-weight: 500;
}

/* Content Sections */
.content-section {
    padding: 20px 0 80px 0;
    background-color: #2d2540;
}

.content-section:nth-child(even) {
      background-color: #483d61;
}

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

.content-section p {
    font-size: 1.1rem;
    color: #b8c5d6;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.step {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #0a0e27;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.step p {
    color: #b8c5d6;
    margin: 0;
}

/* Bonuses Grid */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.bonus-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.bonus-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.bonus-header i {
    font-size: 2rem;
    color: #ffd700;
}

.bonus-header h3 {
    font-size: 1.3rem;
    color: #ffffff;
}

.bonus-amount {
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 15px;
}

.bonus-card p {
    color: #b8c5d6;
    margin: 0;
}

/* Payment Table */
.payment-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    margin: 40px 0;
    backdrop-filter: blur(10px);
}

.table-header {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: rgba(255, 215, 0, 0.1);
    padding: 20px;
    font-weight: bold;
    color: #ffd700;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.table-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.table-row:hover {
    background: rgba(255, 215, 0, 0.05);
}

.table-row:last-child {
    border-bottom: none;
}

.col {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

/* Providers and Payment Systems */
.providers-section,
.payment-systems {
    padding: 80px 0;
    background: rgba(26, 31, 58, 0.8);
}

.providers-section h2,
.payment-systems h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffd700;
}

.providers-grid,
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.provider-logo,
.payment-logo {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.provider-logo:hover,
.payment-logo:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.payment-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.payment-logo img {
    max-width: 100%;
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.95) contrast(1.1);
    transition: all 0.3s ease;
}

.payment-logo:hover img {
    filter: brightness(1.1) contrast(1.2);
    transform: scale(1.05);
}

.payment-logo span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    margin-top: 5px;
    transition: color 0.3s ease;
}

.payment-logo:hover span {
    color: #ffd700;
}

/* FAQ Section */
.faq-section {
    padding: 20px 0 80px 0;
        background-color: #483d61;
}

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

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

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ffd700;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.1);
}

.faq-question span {
    font-weight: 600;
    color: #ffffff;
}

.faq-question i {
    color: #ffd700;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

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

.faq-answer p {
    color: #b8c5d6;
    margin: 0;
    line-height: 1.6;
}

/* Footer */
.footer {
   background-color: #2d2540;
   
    padding: 60px 0 20px;
    border-top: 1px solid rgba(30, 34, 47, 1);
}

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

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section a {
    display: block;
    color: #b8c5d6;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #ffd700;
    transform: translateX(5px);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffd700;
    color: #0a0e27;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.certifications {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.cert-link {
    display: inline-block;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.cert-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.cert-logo {
    height: 35px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.1);
    transition: all 0.3s ease;
}

.cert-link:hover .cert-logo {
    filter: brightness(1.1) contrast(1.2);
}

.footer-bottom p {
    color: #b8c5d6;
    font-size: 0.9rem;
}

/* Promotional Banner */
.promo-banner {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.3)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.promo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.promo-text h2 {
    color: #0a0e27;
    font-size: 2rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.promo-text p {
    color: #0a0e27;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.promo-timer {
    color: #0a0e27;
    font-weight: bold;
    font-size: 1.1rem;
}

.btn-promo {
    background: #0a0e27;
    color: #ffd700;
    padding: 15px 30px;
    font-size: 1.1rem;
    border: 2px solid #0a0e27;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    background: transparent;
    color: #0a0e27;
    transform: scale(1.05);
}

/* Live Casino Banner */
.live-banner {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.live-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M0 25 Q12.5 0 25 25 T50 25" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    opacity: 0.3;
}

.live-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.live-text h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.live-text h2 i {
    color: #ffd700;
    animation: pulse 2s infinite;
}

.live-text p {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.live-stats {
    display: flex;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
}

.stat-label {
    color: #ffffff;
    font-size: 0.9rem;
    opacity: 0.8;
}

.live-preview {
    display: flex;
    justify-content: center;
}

.live-table {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: float 4s ease-in-out infinite;
}

.table-lights {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.table-content {
    text-align: center;
    color: #0a0e27;
}

.table-content i {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
}

.table-content span {
    font-weight: bold;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding-top: 30px!important;
    }
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text h2 {
        font-size: 1.8rem;
    }

    /* Адаптивные заголовки для планшетов */
    h2, .content-section h2, .games-section h2, .tournaments-section h2,
    .reviews-section h2, .mobile-text h2, .toc-section h2,
    .faq-section h2, .providers-section h2, .payment-systems h2 {
        font-size: 2rem !important;
    }

    h3, .game-card h3, .step h3, .bonus-header h3 {
        font-size: 1.3rem !important;
    }

    .hero-banner {

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-text {
        padding: 20px;
        margin-bottom: 20px;
    }

    .nav {
        display: none;
    }

    .header-buttons {
        display: flex;
        gap: 8px;
    }

    .header-buttons .btn {
        padding: 8px 14px;
        font-size: 13px;
        border-radius: 20px;
    }

    .logo {
        font-size: 20px;
    }

    .logo i {
        font-size: 24px;
    }

    .mobile-menu-toggle {
        display: flex;
        background: transparent !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        appearance: none !important;
    }
    
    .mobile-menu-toggle::-moz-focus-inner {
        border: 0 !important;
        outline: none !important;
    }
    
    .mobile-menu-toggle:-moz-focusring {
        outline: none !important;
    }

    /* Hero Mobile/Desktop Switch */
    .hero-desktop {
        display: none;
    }

    .hero-mobile {
        display: block;
    }

    /* Footer adaptations */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        text-align: left;
    }

    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-section a {
        font-size: 14px;
        padding: 8px 0;
    }

    .tabs {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .tab-btn {
        padding: 12px 20px;
        font-size: 1rem;
        width: 200px;
        text-align: center;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .col {
        justify-content: flex-start;
        padding: 5px 0;
    }

    .promo-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .live-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .live-stats {
        justify-content: center;
    }

    .tournaments-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .mobile-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .app-buttons {
        justify-content: center;
    }

    .info-table .table-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .info-label {
        text-align: left;
       
    }

    .mobile-hero-content h1 {
        margin-bottom: 10px;
    }
    .mobile-hero-image {
        margin-bottom: 5px;
    }


    .mobile-app-section {
        padding: 30px 0;
    }
    .faq-section {
        padding: 30px 0;
    }
    .reviews-section {
        padding: 30px 0;
    }
    .providers-section {
        padding: 30px 0;
    }
    .payment-systems {
        padding: 30px 0;
    }
    .content-section {
        padding: 30px 0;
    }
    .steps-grid {
        padding: 30px 0;
    }
    .bonuses-grid {
        padding: 30px 0;
    }
    .payment-table {
        padding: 30px 0;
    }
    .tournaments-section {
        padding: 30px 0;
    }
    .toc-section {
        padding: 30px 0;
    }

    .games-section {
        padding: 30px 0;
    }
    .casino-info {
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 0;
    }

    .hero-text h1 {
        font-size: 30px;
        padding: 15px;
        margin-bottom: 15px;
    }

    .hero-text h2 {
        font-size: 20px;
    }

    /* Адаптивные заголовки для мобильных устройств */
    h2, .content-section h2, .games-section h2, .tournaments-section h2,
    .reviews-section h2, .mobile-text h2, .toc-section h2,
    .faq-section h2, .providers-section h2, .payment-systems h2 {
        font-size: 24px !important;
        margin-bottom: 30px !important;
    }

    h3, .game-card h3, .step h3, .bonus-header h3 {
        font-size: 18px !important;
    }

    .casino-info h2 {
        font-size: 26px !important;
    }

    .logo {
        font-size: 20px !important;
    }

    .logo i {
        font-size: 24px !important;
    }

    .hero-banner {


        border-radius: 15px;
    }

    .hero-text {
        padding: 15px;
        margin-bottom: 15px;
    }

    .btn-hero {
        font-size: 16px;
        padding: 15px 25px;
    }

    .info-grid,
    .games-grid,
    .toc-grid {
        grid-template-columns: 1fr;
    }

    .game-card {
        padding: 20px;
        margin: 10px;
    }

    .game-image {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .game-card h3 {
        font-size: 1.2rem;
    }

    .game-rating {
        font-size: 1.2rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .tournament-card {
        padding: 20px;
        margin: 10px;
    }

    .jackpot-amount .amount {
        font-size: 2rem;
    }

    .prize-amount {
        font-size: 1.8rem;
    }

    .review-card {
        padding: 20px;
        margin: 10px;
    }

    .mobile-content {
        padding: 20px 0;
    }

    .phone-mockup {
        width: 200px;
        height: 350px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 20px;
    }

    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .footer-section a {
        font-size: 13px;
        padding: 5px 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .certifications {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        align-items: center;
    }

    .cert-link {
        display: inline-block;
        padding: 8px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .cert-link:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 215, 0, 0.3);
        transform: translateY(-2px);
    }

    .cert-logo {
        height: 30px;
        width: auto;
        max-width: 60px;
        object-fit: contain;
        filter: brightness(0.9) contrast(1.1);
        transition: filter 0.3s ease;
    }

    .cert-link:hover .cert-logo {
        filter: brightness(1.1) contrast(1.2);
    }

    /* Header additional mobile styles */
    .header .container {
        padding: 8px 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
    }

    .logo img{
        max-width:120px;
        flex-shrink: 0;
    }

    .logo span {
        display: none;
    }

    .logo i {
        font-size: 22px;
    }

    .header-buttons {
        display: flex;
        gap: 5px;
        flex-shrink: 0;
    }

    .header-buttons .btn {
        padding: 6px 10px;
        font-size: 11px;
        white-space: nowrap;
        border-radius: 15px;
        min-width: auto;
    }

    .header-buttons .btn-secondary {
        background: transparent;
        border: 1px solid #4a90e2;
        color: #4a90e2;
    }

    .header-buttons .btn-primary {
        background: #ffd700;
        color: #0a0e27;
        border: 1px solid #ffd700;
    }

    .mobile-menu-toggle {
        width: 24px;
        height: 18px;
        flex-shrink: 0;
    }
	.reviews-grid {
		grid-template-columns:1fr;
	}
}

/* Дополнительная адаптация для очень маленьких экранов */
@media (max-width: 320px) {
    h2, .content-section h2, .games-section h2, .tournaments-section h2,
    .reviews-section h2, .mobile-text h2, .toc-section h2,
    .faq-section h2, .providers-section h2, .payment-systems h2 {
        font-size: 22px !important;
        margin-bottom: 25px !important;
    }

    .hero-text h1 {
        font-size: 28px !important;
        padding: 10px !important;
    }

    .hero-text h2 {
        font-size: 18px !important;
    }

    h3, .game-card h3, .step h3, .bonus-header h3 {
        font-size: 16px !important;
    }

    .logo {
        font-size: 18px !important;
    }

    .logo i {
        font-size: 20px !important;
    }

    /* Mobile Hero adjustments for small screens */
    .mobile-hero-content h1 {
        font-size: 28px;
    }

    .mobile-hero-text h2 {
        font-size: 20px;
    }

    .mobile-hero-text p {
        font-size: 15px;
    }

    .mobile-hero-btn {
        font-size: 16px;
        padding: 14px 28px;
    }

    /* Ultra compact header for small screens */
    .header .container {
        padding: 6px 8px;
        gap: 5px;
    }

    .header-buttons .btn {
        padding: 4px 8px;
        font-size: 10px;
    }

    .logo i {
        font-size: 20px;
    }

    .mobile-menu-toggle {
        width: 20px;
        height: 16px;
    }

    /* Smaller certifications for very small screens */
    .cert-link {
        padding: 5px;
    }

    .cert-logo {
        height: 25px;
        max-width: 50px;
    }

    .certifications {
        gap: 10px;
    }

    /* Additional Content Styles */
    .info-highlight {
        background: rgba(255, 215, 0, 0.1);
        border: 1px solid rgba(255, 215, 0, 0.3);
        border-radius: 15px;
        padding: 25px;
        margin: 30px 0;
        backdrop-filter: blur(10px);
    }

    .info-highlight h3 {
        color: #ffd700;
        margin-bottom: 15px;
        font-size: 1.3rem;
    }

    .registration-info {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        padding: 25px;
        margin: 25px 0;
        backdrop-filter: blur(10px);
    }

    .requirements-list {
        list-style: none;
        padding: 0;
    }

    .requirements-list li {
        padding: 10px 0;
        font-size: 1.1rem;
        color: #ffffff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .requirements-list li:last-child {
        border-bottom: none;
    }

    .login-section {
        background: rgba(74, 144, 226, 0.1);
        border: 1px solid rgba(74, 144, 226, 0.3);
        border-radius: 15px;
        padding: 25px;
        margin: 30px 0;
        backdrop-filter: blur(10px);
    }

    .login-section h3 {
        color: #4a90e2;
        margin-bottom: 15px;
        font-size: 1.3rem;
    }

    .login-steps {
        padding-left: 20px;
        color: #b8c5d6;
    }

    .login-steps li {
        margin: 10px 0;
        line-height: 1.6;
    }

    .bonus-welcome-section {
        background: rgba(255, 215, 0, 0.1);
        border: 1px solid rgba(255, 215, 0, 0.3);
        border-radius: 15px;
        padding: 25px;
        margin: 25px 0;
        backdrop-filter: blur(10px);
    }

    .bonus-welcome-section h3 {
        color: #ffd700;
        margin-bottom: 15px;
        font-size: 1.3rem;
    }

    .promotions-section {
        background: rgba(255, 105, 180, 0.1);
        border: 1px solid rgba(255, 105, 180, 0.3);
        border-radius: 15px;
        padding: 25px;
        margin: 25px 0;
        backdrop-filter: blur(10px);
    }

    .promotions-section h3 {
        color: #ff69b4;
        margin-bottom: 15px;
        font-size: 1.3rem;
    }

    .promotions-list {
        list-style: none;
        padding: 0;
    }

    .promotions-list li {
        padding: 8px 0;
        color: #b8c5d6;
        font-size: 1rem;
    }

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

    .game-category {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 215, 0, 0.2);
        border-radius: 15px;
        padding: 25px;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }

    .game-category:hover {
        border-color: #ffd700;
        box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
        transform: translateY(-5px);
    }

    .game-category h3 {
        color: #ffd700;
        margin-bottom: 15px;
        font-size: 1.3rem;
    }

    .game-category p {
        color: #b8c5d6;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .payment-benefits {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin: 30px 0;
    }

    .benefit-item {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 215, 0, 0.2);
        border-radius: 15px;
        padding: 25px;
        text-align: center;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }

    .benefit-item:hover {
        border-color: #ffd700;
        box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
        transform: translateY(-5px);
    }

    .benefit-item i {
        font-size: 2.5rem;
        color: #ffd700;
        margin-bottom: 15px;
    }

    .benefit-item h4 {
        color: #ffffff;
        margin-bottom: 10px;
        font-size: 1.2rem;
    }

    .benefit-item p {
        color: #b8c5d6;
        line-height: 1.6;
    }
}


.casino-info .btn-secondary {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 70px;
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
}

.content-section .btn-secondary {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 30px;
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
}

/* Fixes for mobile menu toggle in incognito mode */
.mobile-menu-toggle {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

.mobile-menu-toggle:focus-visible {
    background: transparent !important;
    outline: 2px solid #ffd700 !important;
    outline-offset: 2px !important;
}

/* Ensure no background colors in any browser state */
.mobile-menu-toggle,
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus,
.mobile-menu-toggle:active,
.mobile-menu-toggle:visited {
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Fix for Firefox */
.mobile-menu-toggle::-moz-focus-inner {
    border: 0 !important;
    padding: 0 !important;
}

/* Fix for Safari/WebKit */
.mobile-menu-toggle::-webkit-focus-ring-color {
    outline: none !important;
}



.join-cta-container,
.register-cta,
.games-available-cta{
    display:flex;
    justify-content: center;
    margin-top:25px;
    margin-bottom:25px;
}
