:root {
    --primary-bg: #0a1428;
    --secondary-bg: #0f1d33;
    --primary-text: #ffffff;
    --secondary-text: #a0a8b8;
    --accent-color: #ffd700;
    --button-hover: #e6c200;
    --border-color: #1e3151;
    --card-bg: #0f1d33;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-bg);
    color: var(--primary-text);
    line-height: 1.6;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-text);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-bg);
}

.btn-primary:hover {
    background-color: var(--button-hover);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-text);
    color: var(--primary-text);
}

.btn-outline:hover {
    background-color: var(--primary-text);
    color: var(--primary-bg);
}

.header {
    position: sticky;
    top: 0;
    background-color: var(--primary-bg);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo h1 {
    font-size: 24px;
    margin-bottom: 0;
    color: var(--accent-color);
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin: 0 15px;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.hero {
    background-color: var(--secondary-bg);
    padding: 100px 0;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.hero-banner {
    flex: 1;
    position: relative;
}

.bonus-banner {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.bonus-banner img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.bonus-banner h3 {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 20px;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.top-games {
    background-color: var(--primary-bg);
    text-align: center;
}

.top-games h2 {
    margin-bottom: 40px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.game-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.game-image {
    position: relative;
    height: 200px;
}

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

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 15px;
    text-align: left;
}

.game-overlay h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.game-overlay .btn {
    padding: 8px 16px;
    font-size: 14px;
}

.casino-overview {
    background-color: var(--secondary-bg);
    text-align: center;
}

.overview-table {
    margin: 40px 0;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

table th, table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

table th {
    background-color: var(--primary-bg);
    color: var(--accent-color);
}

table tr:nth-child(even) {
    background-color: rgba(15, 29, 51, 0.5);
}

.overview-description {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.overview-description ul {
    list-style-position: inside;
    margin-top: 15px;
}

.overview-description li {
    margin-bottom: 10px;
}

.game-types {
    background-color: var(--primary-bg);
    text-align: center;
}

.game-type {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    margin-top: 30px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.game-type h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.faq {
    background-color: var(--secondary-bg);
}

.accordion {
    margin-top: 40px;
}

.accordion-item {
    background-color: var(--card-bg);
    border-radius: 5px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: var(--card-bg);
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: rgba(15, 29, 51, 0.8);
}

.accordion-header h3 {
    margin-bottom: 0;
    font-size: 18px;
}

.accordion-icon {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-color);
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 20px 20px;
    max-height: 500px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.player-feedback {
    background-color: var(--primary-bg);
    text-align: center;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: left;
    position: relative;
}

.user-info {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.user-info h3 {
    margin-bottom: 5px;
}

.rating {
    color: var(--accent-color);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: rgba(255, 215, 0, 0.2);
}

.footer {
    background-color: var(--secondary-bg);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    color: var(--accent-color);
}

.footer-links ul {
    list-style: none;
}

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

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

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--accent-color);
    color: var(--primary-bg);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: var(--secondary-text);
}

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .auth-buttons {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }
    
    .header .container {
        justify-content: space-between;
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-bg);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu li {
    margin-bottom: 20px;
}

.mobile-menu a {
    font-size: 24px;
    font-weight: 600;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
}