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

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #fff;
    color: #000;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    backdrop-filter: blur(20px);
    border-top: 1px solid #f1f4f8;
    padding: 8px 0;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-bottom-nav .nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #95979a;
    padding: 8px 4px;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-bottom-nav .nav-item:active {
    transform: scale(0.95);
}

.mobile-bottom-nav .nav-item.nav-item-primary {
    color: #008cff;
}

.mobile-bottom-nav .nav-item.nav-item-primary .nav-icon {
    background: linear-gradient(180deg, #59b3ff 0%, #008cff 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-top: -25px;
    box-shadow: 0 4px 20px rgba(0, 140, 255, 0.4);
    color: #fff;
}

.mobile-bottom-nav .nav-icon {
    font-size: 20px;
}

.mobile-bottom-nav .nav-label {
    font-size: 11px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    
    body {
        padding-bottom: 70px;
    }
}

.header {
    background: #fff;
    backdrop-filter: blur(10px);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #f1f4f8;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    font-size: 32px;
    filter: drop-shadow(0 0 10px rgba(0, 140, 255, 0.3));
}

.logo-content {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #008cff;
}

.logo-badge {
    font-size: 10px;
    color: #95979a;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #95979a;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #008cff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #008cff;
    transition: width 0.3s ease;
}

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

.header-cta {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-outline {
    background: #f1f4f8;
    color: #008cff;
    border: 1px solid #008cff;
}

.btn-outline:hover {
    background: #008cff;
    color: #fff;
}

.btn-primary {
    background: linear-gradient(180deg, #59b3ff 0%, #008cff 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 140, 255, 0.3);
    font-family: 'Rubik', sans-serif;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 140, 255, 0.4);
    filter: brightness(1.1);
}

.menu-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-burger span {
    width: 24px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    backdrop-filter: blur(20px);
    z-index: 1001;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    border-left: 1px solid #f1f4f8;
}

.sidebar-menu.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #f1f4f8;
}

.sidebar-close {
    background: transparent;
    border: none;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

.sidebar-close:hover {
    color: #ff4444;
    transform: rotate(90deg);
}

.sidebar-content {
    padding: 20px;
}

.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.sidebar-btn {
    padding: 14px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.sidebar-btn-primary {
    background: linear-gradient(180deg, #59b3ff 0%, #008cff 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 140, 255, 0.3);
    font-family: 'Rubik', sans-serif;
}

.sidebar-btn-secondary {
    background: #f1f4f8;
    color: #008cff;
    border: 1px solid #008cff;
    font-family: 'Rubik', sans-serif;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-link {
    color: #000;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.sidebar-link:hover {
    background: #f1f4f8;
    color: #008cff;
}

.hero-banner {
    padding: 60px 0;
    background: #f1f4f8;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(180deg, #ff6b6b 0%, #ff4444 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
}

.hero-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 54px;
    color: #000;
    font-family: 'Rubik', sans-serif;
}

.hero-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.btn-hero {
    background: linear-gradient(180deg, #59b3ff 0%, #008cff 100%);
    color: #fff;
    padding: 16px 32px;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(0, 140, 255, 0.3);
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 140, 255, 0.4);
    filter: brightness(1.1);
}

.btn-hero-outline {
    background: #f1f4f8;
    color: #008cff;
    border: 1px solid #008cff;
    padding: 16px 32px;
    font-size: 16px;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: #008cff;
    color: #fff;
}

.hero-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.feature-icon {
    color: #19cc61;
    font-weight: bold;
}

.hero-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid #f1f4f8;
}

.categories-section {
    padding: 60px 0;
    background: #fff;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.category-card {
    background: linear-gradient(135deg, #f1f4f8 0%, #fff 100%);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #f1f4f8;
}

.category-card:hover {
    background: linear-gradient(135deg, #fff 0%, #f1f4f8 100%);
    border-color: #008cff;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 140, 255, 0.15);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.category-name {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    font-family: 'Rubik', sans-serif;
}

.category-count {
    font-size: 14px;
    color: #008cff;
    font-weight: 600;
}

.payment-methods-section {
    padding: 60px 0;
    background: #f1f4f8;
}

.section-subtitle.centered {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.payment-method {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.payment-method:hover {
    border-color: #008cff;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 140, 255, 0.1);
}

.payment-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.payment-name {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.quick-stats {
    padding: 40px 0;
    background: #fff;
}

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

.stat-card {
    background: #f1f4f8;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #f1f4f8;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: #fff;
    border-color: #008cff;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 140, 255, 0.1);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #008cff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.games-section {
    padding: 60px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
    font-family: 'Rubik', sans-serif;
}

.section-subtitle {
    font-size: 15px;
    color: #95979a;
}

.section-more {
    color: #008cff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.section-more:hover {
    color: #0066cc;
    transform: translateX(5px);
}

.games-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.game-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f1f4f8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 140, 255, 0.15);
    border-color: #008cff;
}

.game-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.game-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-thumbnail img {
    transform: scale(1.1);
}

.game-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(180deg, #ff6b6b 0%, #ff4444 100%);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(255, 68, 68, 0.4);
}

.game-badge.badge-new {
    background: linear-gradient(180deg, #59b3ff 0%, #008cff 100%);
    box-shadow: 0 2px 10px rgba(0, 140, 255, 0.4);
}

.game-actions {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-actions {
    opacity: 1;
}

.game-action-btn {
    padding: 10px 20px;
    background: linear-gradient(180deg, #59b3ff 0%, #008cff 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.game-action-btn:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.game-action-demo {
    background: #f1f4f8;
    color: #008cff;
    border: 1px solid #008cff;
}

.game-action-demo:hover {
    background: #008cff;
    color: #fff;
}

.game-details {
    padding: 16px;
}

.game-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #000;
}

.game-provider {
    font-size: 13px;
    color: #95979a;
    margin-bottom: 10px;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.game-rtp {
    color: #19cc61;
    font-weight: 600;
}

.game-vol {
    color: #666;
    background: #f1f4f8;
    padding: 2px 8px;
    border-radius: 4px;
}

.comparison-section {
    padding: 60px 0;
    background: #f1f4f8;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #f1f4f8;
}

.comparison-table th {
    background: #f1f4f8;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    font-family: 'Rubik', sans-serif;
}

.comparison-table td {
    color: #000;
}

.comparison-table td.highlight {
    color: #19cc61;
    font-weight: 600;
}

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

.comparison-table tr:hover {
    background: #f9fafb;
}

.faq-section {
    padding: 60px 0;
}

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

.faq-item {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #f1f4f8;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    background: #f9fafb;
    border-color: #008cff;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 140, 255, 0.1);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
    font-family: 'Rubik', sans-serif;
}

.faq-answer {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.providers-section {
    padding: 60px 0;
}

.section-title.centered {
    text-align: center;
    margin-bottom: 40px;
}

.providers-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
}

.provider-item {
    background: #f1f4f8;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid #f1f4f8;
}

.provider-item:hover {
    background: #fff;
    border-color: #008cff;
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 140, 255, 0.1);
}

.footer {
    background: #f1f4f8;
    padding: 50px 0 20px;
    margin-top: 60px;
    border-top: 1px solid #e5e7eb;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-desc {
    color: #666;
    font-size: 14px;
}

.footer-heading {
    font-size: 16px;
    margin-bottom: 16px;
    color: #000;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
}

.payment-icons,
.security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-badge,
.security-badge {
    background: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 12px;
    border: 1px solid #e5e7eb;
    color: #666;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    color: #666;
    font-size: 13px;
}

@media (max-width: 768px) {
    .main-nav,
    .header-cta {
        display: none;
    }

    .menu-burger {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 40px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-hero,
    .btn-hero-outline {
        width: 100%;
        text-align: center;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 28px;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .games-carousel {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 16px;
    }

    .providers-slider {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
        line-height: 36px;
    }

    .section-title {
        font-size: 24px;
    }

    .games-carousel {
        grid-template-columns: 1fr;
    }
}
