/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 10px 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: #ffd700;
    text-decoration: none;
}

.cookie-accept, .cookie-decline {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 8px 16px;
    margin-left: 10px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}

.cookie-decline {
    background: #666;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none; /* По умолчанию скрыто */
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.age-modal.show {
    display: flex; /* Показывается только когда нужно */
}

.age-modal-content {
    background: #2a2a2a;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    margin: 20px;
}

.age-modal-content h2 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 24px;
}

.age-modal-content p {
    margin-bottom: 30px;
    font-size: 16px;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.age-confirm, .age-deny {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
}

.age-confirm {
    background: #ff6b35;
    color: white;
}

.age-deny {
    background: #666;
    color: white;
}

.age-disclaimer {
    font-size: 12px;
    color: #999;
    margin-top: 20px;
}

/* Header */
.header {
    background-color: #2a2a2a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-top {
    background: #ff0000;
    color: white;
    padding: 5px 8px;
    font-weight: 700;
    font-size: 14px;
}

.logo-bottom {
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ffd700;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 60px 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
}

.hero-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.hero-benefits li {
    padding: 10px 0;
    position: relative;
    padding-left: 25px;
}

.hero-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.trust-indicators {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.trust-icon {
    font-size: 20px;
}

.disclaimer {
    font-size: 12px;
    color: #999;
}

/* Hero Graphic */
.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slot-machine {
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 30px rgba(255, 215, 0, 0.3); }
    to { box-shadow: 0 0 40px rgba(255, 215, 0, 0.6); }
}

.slot-reels {
    display: flex;
    gap: 10px;
    background: #000;
    padding: 20px;
    border-radius: 10px;
}

.reel {
    width: 60px;
    height: 60px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #000;
    border-radius: 5px;
}

/* Main Content */
.main-content {
    padding: 60px 0;
}

.casino-showcase h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #ffd700;
}

/* Casino Cards */
.casino-card {
    background: #2a2a2a;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 30px;
    align-items: center;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.casino-card.featured {
    border: 2px solid #ffd700;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
}

.casino-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: #ff6b35;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.casino-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 80px;
    flex-shrink: 0;
}

.casino-logo img {
    max-width: 100%;
    max-height: 100%;
    width: 120px;
    height: 80px;
    object-fit: contain;
    object-position: center;
}


.logo-fallback {
    font-size: 18px;
    font-weight: bold;
    color: #ffd700;
    text-align: center;
}

.casino-rating {
    text-align: center;
}

.score {
    font-size: 36px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 10px;
}

.stars {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 5px;
}

.rating-text {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
}

.quick-more {
    color: #ffd700;
    text-decoration: none;
    font-size: 14px;
}

.casino-bonus {
    text-align: center;
}

.casino-bonus h3 {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 18px;
}

.casino-bonus p {
    font-size: 16px;
    font-weight: 600;
}

.casino-action {
    display: flex;
    align-items: center;
}

.get-bonus-btn {
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
    min-width: 150px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.get-bonus-btn:hover {
    transform: scale(1.05);
    color: white;
    text-decoration: none;
}

.casino-terms {
    grid-column: 1 / -1;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.casino-terms p {
    font-size: 12px;
    color: #999;
    line-height: 1.4;
}

/* Info Section */
.info-section {
    background: #2a2a2a;
    padding: 60px 0;
}

.info-box {
    background: #3a3a3a;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.info-icon {
    font-size: 24px;
}

.faq-section h2 {
    color: #ffd700;
    margin: 30px 0 15px 0;
    font-size: 24px;
}

.faq-section p {
    margin-bottom: 20px;
    color: #ccc;
    line-height: 1.6;
}

.trust-banner {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
}

.trust-banner h3 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 24px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-logo {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

/* Footer */
.footer {
    background: #1a1a1a;
    padding: 40px 0 20px 0;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
    line-height: 1.4;
}

.responsible-gambling {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.responsible-link {
    display: inline-block;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.responsible-link:hover {
    transform: scale(1.05);
    text-decoration: none;
}

.responsible-logo {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.3s ease;
}

.responsible-link:hover .responsible-logo {
    filter: grayscale(0%) brightness(1);
}

/* Reviews Page Styles */
.reviews-section {
    padding: 60px 0;
}

.review-card {
    background: #2a2a2a;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #444;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #444;
}

.casino-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.casino-info .casino-logo {
    width: 100px;
    height: 60px;
    flex-shrink: 0;
}

.casino-info .casino-logo img {
    width: 100px;
    height: 60px;
    object-fit: contain;
    object-position: center;
}

.casino-details h3 {
    color: #ffd700;
    font-size: 24px;
    margin-bottom: 10px;
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-score {
    font-size: 32px;
    font-weight: 700;
    color: #ffd700;
}

.rating-text {
    color: #ccc;
    font-size: 14px;
}

.review-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.review-date {
    color: #999;
    font-size: 14px;
}

.review-verified {
    color: #4CAF50;
    font-size: 12px;
    font-weight: 600;
}

.review-rating-breakdown {
    margin-bottom: 25px;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.rating-item span:first-child {
    min-width: 150px;
    color: #ccc;
    font-size: 14px;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: #444;
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #ffd700);
    transition: width 0.3s ease;
}

.rating-item span:last-child {
    min-width: 40px;
    text-align: right;
    color: #ffd700;
    font-weight: 600;
}

.review-text h4 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 18px;
}

.review-text p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.pros, .cons {
    background: #3a3a3a;
    padding: 20px;
    border-radius: 10px;
}

.pros h5 {
    color: #4CAF50;
    margin-bottom: 10px;
    font-size: 16px;
}

.cons h5 {
    color: #f44336;
    margin-bottom: 10px;
    font-size: 16px;
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
}

.pros li, .cons li {
    padding: 5px 0;
    color: #ccc;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.pros li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.cons li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #f44336;
    font-weight: bold;
}

.review-guidelines {
    background: #2a2a2a;
    padding: 60px 0;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.guideline-item {
    background: #3a3a3a;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.guideline-item h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 18px;
}

.guideline-item p {
    color: #ccc;
    line-height: 1.6;
    font-size: 14px;
}

.nav-menu .active {
    color: #ffd700;
}

/* Legal Pages Styles */
.legal-page {
    padding: 60px 0;
    background: #1a1a1a;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: #2a2a2a;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.legal-content h1 {
    color: #ffd700;
    font-size: 36px;
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #999;
    font-size: 14px;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #444;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    color: #ffd700;
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6b35;
}

.legal-section h3 {
    color: #ff6b35;
    font-size: 18px;
    margin: 25px 0 15px 0;
}

.legal-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-section li {
    color: #ccc;
    margin-bottom: 8px;
    line-height: 1.5;
}

.legal-section strong {
    color: #ffd700;
}

.contact-info {
    background: #3a3a3a;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 10px;
    color: #fff;
}

.contact-info a {
    color: #ffd700;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}


/* Mobile Menu */
.nav-menu {
    transition: all 0.3s ease;
}

.nav-menu.mobile-active {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 80px 0 40px 0;
    z-index: 1000;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.nav-menu.mobile-active {
    transform: translateX(0);
}

.nav-menu.mobile-active li {
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-menu.mobile-active li:last-child {
    border-bottom: none;
}

.nav-menu.mobile-active a {
    display: block;
    padding: 20px 30px;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu.mobile-active a:hover {
    background-color: rgba(255, 107, 53, 0.1);
    color: #ffd700;
    padding-left: 40px;
}

.nav-menu.mobile-active a.active {
    background-color: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    border-left: 4px solid #ffd700;
}

.nav-menu.mobile-active a.active::before {
    content: "→";
    position: absolute;
    left: 15px;
    color: #ffd700;
    font-weight: bold;
}

/* Hamburger Animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .casino-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    /* Show mobile menu button and hide desktop menu */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.mobile-active {
        display: flex;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
    }
    
    .age-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .responsible-gambling {
        flex-direction: column;
        gap: 20px;
    }
    
    .responsible-logo {
        height: 35px;
        max-width: 100px;
    }
    
    .casino-logo {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .casino-card {
        padding: 20px;
    }
    
    .get-bonus-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .trust-logos {
        flex-direction: column;
        gap: 15px;
    }
    
    .review-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .casino-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .review-meta {
        align-items: center;
    }
    
    .review-pros-cons {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .rating-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .rating-item span:first-child {
        min-width: auto;
    }
    
    .guidelines-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-content {
        padding: 20px;
        margin: 0 10px;
    }
    
    .legal-content h1 {
        font-size: 28px;
    }
    
    .legal-section h2 {
        font-size: 20px;
    }
    
    .legal-section h3 {
        font-size: 16px;
    }
    
    /* Mobile menu adjustments for small screens */
    .nav-menu.mobile-active {
        width: 100%;
        padding: 100px 0 40px 0;
    }
    
    .nav-menu.mobile-active a {
        padding: 25px 30px;
        font-size: 20px;
    }
    
    .mobile-menu-toggle {
        width: 35px;
        height: 35px;
    }
    
    .hamburger-line {
        height: 4px;
    }
}

.logo-image{
    width: 70px;
}

.logo-text{
    font-size: 20px;
}