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

:root {
    --primary-color: #2a9df4;
    --secondary-color: #1b6ca8;
    --accent-color: #0c457d;
    --ice-blue: #a8d0e6;
    --light-blue: #d4f1f9;
    --dark-blue: #0a2463;
    --text-color: #333;
    --light-text: #666;
    --white: #ffffff;
    --gray: #f5f7fa;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --table-bg: #f8fafc;
    --table-border: #e2e8f0;
    --table-header: #2d3748;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: linear-gradient(135deg, var(--light-blue) 0%, #e6f7ff 100%);
    min-height: 100vh;
}

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

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.btn-primary, .btn-secondary, .play-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(42, 157, 244, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 157, 244, 0.4);
}

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

.btn-secondary:hover {
    background-color: rgba(42, 157, 244, 0.1);
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
    padding: 15px 0;
}

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

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

.logo-icon {
    font-size: 32px;
    color: var(--primary-color);
}

.logo h1 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-blue);
}

.logo span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-weight: 600;
    color: var(--dark-blue);
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.play-btn {
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    color: var(--white);
    padding: 10px 24px;
    font-size: 14px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-blue);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)), url('https://images.unsplash.com/photo-1519681393784-d120267933ba?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
}

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

.hero-text h2 {
    font-size: 48px;
    color: var(--dark-blue);
    margin-bottom: 15px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.hero-description {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.hero-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(42, 157, 244, 0.1);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
}

.badge i {
    font-size: 14px;
}

.game-preview {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
}

.game-preview:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.game-screen {
    overflow: hidden;
    border-radius: 20px;
}

.game-screen img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.game-preview:hover .game-screen img {
    transform: scale(1.05);
}

/* Game Info */
.game-info {
    padding: 80px 0;
    background-color: var(--white);
}

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

.info-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--ice-blue);
}

.info-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.info-card p {
    color: var(--light-text);
}

/* Technical Table */
.tech-table {
    padding: 80px 0;
    background-color: var(--gray);
}

.table-container {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
    background: var(--white);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.specs-table thead {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.specs-table th {
    padding: 25px;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.specs-table tbody tr {
    border-bottom: 1px solid var(--table-border);
    transition: var(--transition);
}

.specs-table tbody tr:hover {
    background-color: rgba(42, 157, 244, 0.05);
}

.specs-table td {
    padding: 20px 25px;
    font-size: 16px;
}

.specs-table td:first-child {
    font-weight: 600;
    color: var(--dark-blue);
    width: 40%;
    display: flex;
    align-items: center;
    gap: 12px;
}

.specs-table td:first-child i {
    color: var(--primary-color);
    width: 24px;
    text-align: center;
}

.specs-table td:last-child {
    color: var(--light-text);
    border-left: 1px solid var(--table-border);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: var(--dark-blue);
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

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

.about-text p {
    margin-bottom: 25px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--light-text);
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Features */
.features {
    padding: 80px 0;
    background-color: var(--gray);
}

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

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.feature-card p {
    color: var(--light-text);
    line-height: 1.7;
}

/* Rules */
.rules {
    padding: 80px 0;
    background-color: var(--white);
}

.rules-list {
    max-width: 800px;
    margin: 0 auto;
}

.rule-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    align-items: flex-start;
    border: 2px solid var(--table-border);
}

.rule-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.rule-text h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.rule-text p {
    color: var(--light-text);
    line-height: 1.7;
}

/* Strategies */
.strategies {
    padding: 80px 0;
    background-color: var(--gray);
}

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

.strategy-card {
    padding: 40px 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
    transition: var(--transition);
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.strategy-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.strategy-card h3 i {
    color: var(--primary-color);
}

.strategy-card p {
    color: var(--light-text);
    line-height: 1.7;
}

/* Demo Section */
.demo {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.demo-box {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.demo-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.demo-box p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.demo-btn, .real-money-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.demo-btn {
    background-color: var(--white);
    color: var(--primary-color);
}

.demo-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}

.real-money-btn {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.real-money-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.demo-note {
    font-size: 14px;
    opacity: 0.8;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background-color: var(--white);
}

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

.faq-item {
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 2px solid var(--table-border);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.faq-item p {
    color: var(--light-text);
    line-height: 1.7;
}

/* Play Now */
.play-now {
    padding: 80px 0;
    background-color: var(--gray);
}

.play-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.play-content h2 {
    font-size: 36px;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.play-content p {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 40px;
}

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

.play-btn, .register-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.play-btn {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(42, 157, 244, 0.3);
}

.play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 157, 244, 0.4);
}

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

.register-btn:hover {
    background-color: rgba(42, 157, 244, 0.1);
    transform: translateY(-3px);
}

.bonus-note {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background-color: var(--dark-blue);
    color: var(--white);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.footer-logo i {
    color: var(--ice-blue);
}

.footer-text {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.8;
    line-height: 1.7;
}

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

.footer-links a {
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--ice-blue);
}

.copyright {
    font-size: 14px;
    opacity: 0.6;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h2 {
        font-size: 42px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero {
        padding: 140px 0 60px;
    }
    
    .hero-text h2 {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .rule-item {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .strategies-content, .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .specs-table td:first-child {
        width: 35%;
    }
}

@media (max-width: 576px) {
    .hero-text h2 {
        font-size: 32px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .hero-buttons, .play-buttons, .demo-options {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary, .play-btn, .register-btn, .demo-btn, .real-money-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .specs-table td {
        padding: 15px 20px;
    }
    
    .specs-table td:first-child {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
        width: 100%;
    }
}