/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    padding: 15px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 80px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #FFD700;
}

.mobile-menu-toggle {
    display: none;
}

.header-search {
    flex: 1;
    max-width: 250px;
}

.search-input {
    width: 100%;
    padding: 10px 15px;
    border: none;
    border-radius: 25px;
    outline: none;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B0000;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* Hero Section */
.hero-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-title {
    text-align: center;
    font-size: 2.5rem;
    color: #8B0000;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

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

.game-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.demo-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #FFD700;
    color: #8B0000;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

.card-title {
    padding: 20px 20px 10px;
    font-size: 1.5rem;
    color: #8B0000;
}

.card-features {
    list-style: none;
    padding: 0 20px 20px;
}

.card-features li {
    background: #FFF8DC;
    padding: 10px 15px;
    margin: 8px 0;
    border-radius: 8px;
    color: #333;
}

.btn-card {
    display: block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B0000;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    margin: 0 20px 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-card:hover {
    transform: scale(1.05);
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.trust-image img {
    width: 100%;
    max-width: 250px;
}

.trust-text h2 {
    color: #8B0000;
    font-size: 2rem;
    margin-bottom: 30px;
}

.trust-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.trust-item {
    display: flex;
    gap: 15px;
}

.check-icon {
    color: #28a745;
    font-size: 24px;
    font-weight: bold;
}

.trust-item h3 {
    color: #8B0000;
    margin-bottom: 5px;
}

.trust-rating {
    text-align: center;
}

.trust-rating h3 {
    color: #8B0000;
    margin-bottom: 15px;
}

.stars {
    font-size: 2rem;
    margin-bottom: 20px;
}

.star {
    color: #ddd;
}

.star.filled {
    color: #FFD700;
}

.star.half {
    color: #FFD700;
    opacity: 0.5;
}

/* Secure Bet Section */
.secure-bet-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.secure-bet-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}

.banner-image {
    width: 100%;
    height: auto;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
}

.mascot-container {
    flex: 0 0 200px;
}

.mascot {
    width: 100%;
    height: auto;
}

.banner-content {
    flex: 1;
    color: white;
    text-align: center;
}

.banner-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.rating-stars {
    font-size: 2rem;
}

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

.spec-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.spec-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.spec-card h3 {
    color: #8B0000;
    margin-bottom: 10px;
}

.game-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.stat-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info h4 {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.stat-value {
    color: #8B0000;
    font-size: 1.5rem;
    font-weight: bold;
}

.secure-bet-description {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.secure-bet-description p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.cta-center {
    text-align: center;
}

.btn-large {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B0000;
    padding: 20px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

/* Game Description Section */
.game-description-section {
    padding: 80px 0;
    background: white;
}

.description-header {
    text-align: center;
    margin-bottom: 50px;
}

.description-logo {
    max-width: 300px;
    margin-bottom: 30px;
}

.description-header h2 {
    color: #8B0000;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.description-content {
    max-width: 900px;
    margin: 0 auto 40px;
}

.description-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-action {
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.btn-action:hover {
    transform: scale(1.05);
}

/* JILI Section */
.jili-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.jili-section h2 {
    text-align: center;
    color: #8B0000;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.jili-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.jili-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.jili-text h3 {
    color: #8B0000;
    font-size: 1.5rem;
    margin: 25px 0 15px;
}

.jili-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.jili-benefits {
    list-style: none;
    padding: 0;
}

.jili-benefits li {
    background: white;
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
    font-size: 1.05rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Hold and Win Section */
.hold-win-section {
    padding: 80px 0;
    background: white;
}

.hold-win-section h2 {
    text-align: center;
    color: #8B0000;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.hold-win-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.hold-win-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hold-win-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.features-table {
    margin-top: 50px;
}

.features-table h3 {
    text-align: center;
    color: #8B0000;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.features-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.features-table th {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: bold;
}

.features-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.features-table tr:hover {
    background: #FFF8DC;
}

/* Pros and Cons Section */
.pros-cons-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.pros-cons-section h2 {
    text-align: center;
    color: #8B0000;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pros-box,
.cons-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pros-box h3 {
    color: #28a745;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.cons-box h3 {
    color: #dc3545;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.pros-box ul,
.cons-box ul {
    list-style: none;
    padding: 0;
}

.pros-box li,
.cons-box li {
    padding: 12px 0;
    font-size: 1.05rem;
    line-height: 1.6;
    border-bottom: 1px solid #eee;
}

.pros-box li:last-child,
.cons-box li:last-child {
    border-bottom: none;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    text-align: center;
}

.final-cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta-content p {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.btn-cta-large {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B0000;
    padding: 25px 70px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-cta-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0;
}

.footer-content {
    text-align: center;
}

.footer-logo img {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-text {
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .trust-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .jili-content,
    .hold-win-content {
        grid-template-columns: 1fr;
    }

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 10px 0;
        min-height: 60px;
    }

    .header-content {
        position: relative;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .logo {
        order: 1;
        flex: 0 0 auto;
    }

    .logo img {
        height: 45px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .nav-menu.mobile-menu-active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .nav-menu li {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 2rem;
        cursor: pointer;
        padding: 5px 10px;
        line-height: 1;
        order: 2;
        flex: 0 0 auto;
        margin-left: auto;
    }

    .header-search {
        display: none;
    }

    .btn-primary {
        display: none; /* Скрываем кнопку в хедере на мобильных */
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .game-cards {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .game-card {
        margin-bottom: 20px;
    }

    .banner-overlay {
        flex-direction: column;
        padding: 20px;
    }

    .banner-content h2 {
        font-size: 1.3rem;
    }

    .game-stats {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .features-table {
        overflow-x: auto;
    }

    .btn-cta-large {
        padding: 20px 40px;
        font-size: 1.2rem;
    }
}

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

.game-card,
.spec-card,
.stat-item {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}