/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap');

body {
    font-family: 'Roboto Serif', serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a1a;
    color: #e0e0ff;
}

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

/* Table styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: rgba(26, 26, 58, 0.5);
    border-radius: 10px;
    overflow: hidden;
    font-family: 'Roboto Serif', serif;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(106, 90, 249, 0.2);
}

th {
    background-color: rgba(106, 90, 249, 0.3);
    color: #ffffff;
    font-weight: bold;
}

tr:last-child td {
    border-bottom: none;
}

.content-section {
    padding: 40px 0;
    font-family: 'Roboto Serif', serif;
}

.content-section h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Roboto Serif', serif;
}

.content-section h2 {
    color: #6a5af9;
    margin: 30px 0 15px;
    font-size: 1.8rem;
    font-family: 'Roboto Serif', serif;
}

.content-section h3 {
    color: #6a5af9;
    margin: 25px 0 10px;
    font-size: 1.5rem;
    font-family: 'Roboto Serif', serif;
}

.content-section p {
    color: #c0c0e0;
    margin-bottom: 20px;
    line-height: 1.8;
    font-family: 'Roboto Serif', serif;
}

.content-section ul {
    color: #c0c0e0;
    margin-bottom: 20px;
    padding-left: 20px;
    font-family: 'Roboto Serif', serif;
}

.content-section ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    font-family: 'Roboto Serif', serif;
}

.content-section ul li strong {
    color: #6a5af9;
    font-family: 'Roboto Serif', serif;
}

.content-section a {
    color: #6a5af9;
    text-decoration: none;
    font-family: 'Roboto Serif', serif;
}

.content-section a:hover {
    text-decoration: underline;
}

/* Header styles */
.header {
    background-color: #0f0f2e;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Roboto Serif', serif;
}

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

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

.logo h1 {
    color: #6a5af9;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Roboto Serif', serif;
}

.logo-image {
    height: 50px;
    width: auto;
}

.nav ul {
    display: flex;
    list-style: none;
    font-family: 'Roboto Serif', serif;
}

.nav ul li {
    margin-left: 25px;
}

.nav ul li a {
    color: #e0e0ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: 'Roboto Serif', serif;
}

.nav ul li a:hover {
    color: #6a5af9;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: #e0e0ff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero section */
.hero {
    background: url('assets/fon.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: 'Roboto Serif', serif;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(106, 90, 249, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Roboto Serif', serif;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #a0a0d0;
    font-family: 'Roboto Serif', serif;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    font-family: 'Roboto Serif', serif;
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #6a5af9;
    font-family: 'Roboto Serif', serif;
}

.stat .label {
    display: block;
    font-size: 1rem;
    color: #a0a0d0;
    font-family: 'Roboto Serif', serif;
}

/* Description section */
.description {
    padding: 80px 0;
    background-color: #0f0f2e;
    font-family: 'Roboto Serif', serif;
}

.description h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Roboto Serif', serif;
}

.description h3 {
    font-size: 1.8rem;
    margin: 30px 0 15px;
    color: #6a5af9;
    font-family: 'Roboto Serif', serif;
}

.description p {
    font-size: 1.1rem;
    color: #c0c0e0;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Roboto Serif', serif;
}

.mission {
    margin: 40px 0;
    text-align: center;
    font-family: 'Roboto Serif', serif;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    font-family: 'Roboto Serif', serif;
}

.offer-card {
    background: rgba(26, 26, 58, 0.5);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(106, 90, 249, 0.2);
    font-family: 'Roboto Serif', serif;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(106, 90, 249, 0.2);
    background: rgba(26, 26, 58, 0.7);
}

.offer-card h4 {
    color: #6a5af9;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-family: 'Roboto Serif', serif;
}

/* Selection process */
.selection-process {
    padding: 80px 0;
    background: url('assets/fon.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Roboto Serif', serif;
}

.selection-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffffff;
    font-family: 'Roboto Serif', serif;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    font-family: 'Roboto Serif', serif;
}

.step {
    text-align: center;
    padding: 30px;
    background: rgba(26, 26, 58, 0.5);
    border-radius: 10px;
    position: relative;
    border: 1px solid rgba(106, 90, 249, 0.2);
    font-family: 'Roboto Serif', serif;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #6a5af9;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    font-family: 'Roboto Serif', serif;
}

.step h3 {
    color: #6a5af9;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-family: 'Roboto Serif', serif;
}

.step p {
    color: #c0c0e0;
    font-family: 'Roboto Serif', serif;
}

/* Casino section */
.casino-section {
    padding: 80px 0;
    background-color: #0f0f2e;
    font-family: 'Roboto Serif', serif;
}

.casino-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffffff;
    font-family: 'Roboto Serif', serif;
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    font-family: 'Roboto Serif', serif;
}

.casino-card {
    background: rgba(26, 26, 58, 0.5);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid rgba(106, 90, 249, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
    font-family: 'Roboto Serif', serif;
}

.casino-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(106, 90, 249, 0.3);
}

.casino-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
    font-family: 'Roboto Serif', serif;
}

.casino-badge.top {
    background: #ff6b6b;
    color: white;
}

.casino-badge.premium {
    background: gold;
    color: #333;
}

.casino-badge.popular {
    background: #4ecdc4;
    color: white;
}

.casino-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: 'Roboto Serif', serif;
}

.casino-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.placeholder-image {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Roboto Serif', serif;
}

.casino-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    font-family: 'Roboto Serif', serif;
}

.casino-content h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-family: 'Roboto Serif', serif;
}

.rating {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-family: 'Roboto Serif', serif;
}

.features {
    list-style: none;
    margin: 20px 0;
    flex: 1;
    font-family: 'Roboto Serif', serif;
}

.features li {
    padding: 5px 0;
    color: #c0c0e0;
    position: relative;
    padding-left: 20px;
    font-family: 'Roboto Serif', serif;
}

.features li::before {
    content: "✓";
    color: #6a5af9;
    position: absolute;
    left: 0;
    font-family: 'Roboto Serif', serif;
}

.bonus {
    margin: 20px 0;
    padding: 15px;
    background: rgba(106, 90, 249, 0.1);
    border-radius: 5px;
    font-family: 'Roboto Serif', serif;
}

.bonus strong {
    color: #6a5af9;
    font-family: 'Roboto Serif', serif;
}

.btn {
    margin-top: auto;
    width: 100%;
    font-family: 'Roboto Serif', serif;
}

.btn {
    display: inline-block;
    background: #6a5af9;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    font-family: 'Roboto Serif', serif;
}

.btn:hover {
    background: #5a4ae9;
}

/* Why choose us */
.why-choose {
    padding: 80px 0;
    background: url('assets/fon.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Roboto Serif', serif;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffffff;
    font-family: 'Roboto Serif', serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    font-family: 'Roboto Serif', serif;
}

.feature-card {
    background: rgba(26, 26, 58, 0.5);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(106, 90, 249, 0.2);
    font-family: 'Roboto Serif', serif;
}

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

.feature-card h3 {
    color: #6a5af9;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-family: 'Roboto Serif', serif;
}

.feature-card p {
    color: #c0c0e0;
    font-family: 'Roboto Serif', serif;
}

/* Problem section */
.problem-section {
    padding: 80px 0;
    background-color: #0f0f2e;
    font-family: 'Roboto Serif', serif;
}

.problem-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ffffff;
    font-family: 'Roboto Serif', serif;
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Roboto Serif', serif;
}

.problem-content h3 {
    color: #6a5af9;
    margin: 30px 0 15px;
    font-size: 1.8rem;
    font-family: 'Roboto Serif', serif;
}

.problem-content p {
    color: #c0c0e0;
    margin-bottom: 20px;
    font-family: 'Roboto Serif', serif;
}

.policy ul, .help ul {
    list-style: none;
    margin: 20px 0;
    font-family: 'Roboto Serif', serif;
}

.policy ul li, .help ul li {
    padding: 10px 0;
    color: #c0c0e0;
    border-bottom: 1px solid rgba(106, 90, 249, 0.1);
    font-family: 'Roboto Serif', serif;
}

.policy ul li strong, .help ul li strong {
    color: #6a5af9;
    font-family: 'Roboto Serif', serif;
}

/* FAQ section */
.faq-section {
    padding: 80px 0;
    background: url('assets/fon.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Roboto Serif', serif;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffffff;
    font-family: 'Roboto Serif', serif;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    font-family: 'Roboto Serif', serif;
}

.faq-item {
    background: rgba(26, 26, 58, 0.5);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(106, 90, 249, 0.2);
    font-family: 'Roboto Serif', serif;
}

.faq-item h3 {
    color: #6a5af9;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-family: 'Roboto Serif', serif;
}

.faq-item p {
    color: #c0c0e0;
    font-family: 'Roboto Serif', serif;
}

/* Disclaimer section */
.disclaimer-section {
    padding: 50px 0;
    background-color: #0f0f2e;
    font-family: 'Roboto Serif', serif;
}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 0, 0, 0.1);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Roboto Serif', serif;
}

.disclaimer-content p {
    color: #ff9999;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: 'Roboto Serif', serif;
}

.disclaimer-content a {
    color: #ff0000;
    text-decoration: none;
    font-family: 'Roboto Serif', serif;
}

.age-badge {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: #ff0000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 20px auto 0;
    font-family: 'Roboto Serif', serif;
}

/* Partners section */
.partners-section {
    padding: 10px 0;
    background: #0a0a1a;
    font-family: 'Roboto Serif', serif;
}

.partners-section .container {
    margin-bottom: 50px;
}

.partners-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    font-family: 'Roboto Serif', serif;
}

.partners-slider {
    display: flex;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    font-family: 'Roboto Serif', serif;
}

.partners-slider::before, .partners-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.partners-slider::before {
    left: 0;
    background: linear-gradient(to right, #1a1a3a, transparent);
}

.partners-slider::after {
    right: 0;
    background: linear-gradient(to left, #1a1a3a, transparent);
}

.slider-track {
    display: flex;
    animation: slide 30s linear infinite;
    font-family: 'Roboto Serif', serif;
}

.slide {
    min-width: 300px;
    flex: 1;
    margin: 0 15px;
    font-family: 'Roboto Serif', serif;
}

.partner-logo {
    height: 150px;
    background: rgba(26, 26, 58, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(106, 90, 249, 0.2);
    width: 100%;
    object-fit: contain;
    padding: 20px;
    font-family: 'Roboto Serif', serif;
}

/* Footer */
.footer {
    background-color: #0a0a1a;
    padding: 2px 0 20px;
    border-top: 1px solid rgba(106, 90, 249, 0.2);
    font-family: 'Roboto Serif', serif;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    font-family: 'Roboto Serif', serif;
}

.footer-info h2 {
    color: #6a5af9;
    margin-bottom: 15px;
    font-family: 'Roboto Serif', serif;
}

.footer-info p {
    color: #a0a0d0;
    font-family: 'Roboto Serif', serif;
}

.footer-links h3, .footer-contact h3 {
    color: #6a5af9;
    margin-bottom: 15px;
    font-family: 'Roboto Serif', serif;
}

.footer-links ul {
    list-style: none;
    font-family: 'Roboto Serif', serif;
}

.footer-links ul li {
    margin-bottom: 10px;
    font-family: 'Roboto Serif', serif;
}

.footer-links ul li a {
    color: #a0a0d0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Roboto Serif', serif;
}

.footer-links ul li a:hover {
    color: #6a5af9;
}

.footer-contact p {
    color: #a0a0d0;
    margin-bottom: 10px;
    font-family: 'Roboto Serif', serif;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(106, 90, 249, 0.1);
    font-family: 'Roboto Serif', serif;
}

.footer-bottom p {
    color: #a0a0d0;
    font-family: 'Roboto Serif', serif;
}

/* Responsive styles */
@media (max-width: 768px) {
    .nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0f0f2e;
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
        z-index: 99;
        font-family: 'Roboto Serif', serif;
    }
    
    .nav ul.show {
        display: flex;
    }
    
    .nav ul li {
        margin: 10px 0;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    table {
        font-size: 0.8rem;
    }
    
    th, td {
        padding: 10px;
    }
    
    /* Stack table on mobile */
    table, thead, tbody, th, td, tr {
        display: block;
    }
    
    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    tr {
        border: 1px solid rgba(106, 90, 249, 0.2);
        margin-bottom: 10px;
        padding: 10px;
        border-radius: 10px;
    }
    
    td {
        border: none;
        position: relative;
        padding-left: 50% !important;
    }
    
    td:before {
        content: attr(data-label) ": ";
        position: absolute;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: bold;
        color: #6a5af9;
    }
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(26, 26, 58, 0.95);
    border: 1px solid rgba(106, 90, 249, 0.5);
    border-radius: 10px;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    font-family: 'Roboto Serif', serif;
}

.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content p {
    color: #c0c0e0;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-family: 'Roboto Serif', serif;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-family: 'Roboto Serif', serif;
}

.cookie-buttons .btn {
    padding: 8px 15px;
    font-size: 0.9rem;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    flex: 1;
    min-width: 100px;
    font-family: 'Roboto Serif', serif;
}

.accept-btn {
    background: #6a5af9;
    color: white;
}

.reject-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #c0c0e0;
}

.policy-btn {
    background: transparent;
    color: #6a5af9;
    text-decoration: none;
    text-align: center;
    border: 1px solid #6a5af9;
}

/* Animation for partners slider */
@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.slider-track {
    display: flex;
    animation: slide 30s linear infinite;
    width: max-content;
}