/* Reset & Variables */
:root {
    --primary: #008cff;
    --primary-dark: #0066cc;
    --accent: #19cc61;
    --accent-dark: #00a84d;
    --bg-dark: #fff;
    --bg-darker: #f1f4f8;
    --text-primary: #000;
    --text-secondary: #666;
    --text-muted: #95979a;
    --border: #f1f4f8;
}

* {
    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 24px;
}

/* Floating Action Buttons */
.fab-container {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 900;
    flex-direction: column;
    gap: 12px;
}

.fab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.fab-register {
    background: linear-gradient(180deg, #59b3ff 0%, #008cff 100%);
    color: #fff;
}

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

.fab:active {
    transform: scale(0.95);
}

.fab-icon {
    font-size: 18px;
    font-weight: bold;
}

.fab-text {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .fab-container {
        display: flex;
    }
}

/* Header */
.header {
    background: #fff;
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #f1f4f8;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

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

.brand-icon {
    width: 36px;
    height: 36px;
    color: var(--primary);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 22px;
    font-weight: 800;
    color: #008cff;
    letter-spacing: -0.5px;
}

.brand-tagline {
    font-size: 11px;
    color: #95979a;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-desktop {
    display: flex;
    gap: 36px;
}

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

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

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

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

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

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

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

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

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

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

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Navigation Drawer */
.nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    pointer-events: none;
}

.nav-drawer.active {
    pointer-events: auto;
}

.drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-drawer.active .drawer-overlay {
    opacity: 1;
}

.drawer-content {
    position: absolute;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    background: #fff;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    overflow-y: auto;
}

.nav-drawer.active .drawer-content {
    left: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--border);
}

.drawer-close {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.drawer-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.drawer-body {
    padding: 24px;
}

.drawer-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.drawer-btn {
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

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

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

.drawer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
}

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

.drawer-link-icon {
    font-size: 20px;
}

.drawer-link-text {
    font-weight: 500;
    font-size: 15px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: #f1f4f8;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: transparent;
    border-radius: 50%;
    pointer-events: none;
}

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

.hero-label {
    display: inline-block;
    color: #008cff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

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

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

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-cta {
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

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

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

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

.hero-trust {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

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

.trust-icon {
    width: 20px;
    height: 20px;
    color: #19cc61;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(180deg, #59b3ff 0%, #008cff 100%);
    color: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 140, 255, 0.3);
}

.badge-text {
    display: block;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.badge-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Section */
.steps-section {
    padding: 80px 0;
    background: #f1f4f8;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step-card:hover {
    border-color: #008cff;
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0, 140, 255, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(180deg, #59b3ff 0%, #008cff 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(0, 140, 255, 0.3);
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    font-family: 'Rubik', sans-serif;
}

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

.promo-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #008cff 0%, #0066cc 100%);
}

.promo-box {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.promo-heading {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Rubik', sans-serif;
}

.promo-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.promo-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.promo-benefits li {
    font-size: 16px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 500;
}

.btn-promo-large {
    display: inline-block;
    background: #fff;
    color: #008cff;
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Rubik', sans-serif;
}

.btn-promo-large:hover {
    background: #f1f4f8;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.promo-badge-large {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.promo-badge-icon {
    font-size: 80px;
    margin-bottom: 10px;
}

.promo-badge-text {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    font-family: 'Rubik', sans-serif;
}

.section {
    padding: 80px 0;
}

.section-dark {
    background: #f1f4f8;
}

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

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

.section-heading.centered {
    text-align: center;
    margin-bottom: 48px;
}

.section-description {
    font-size: 16px;
    color: #95979a;
}

.section-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #008cff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.section-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.section-link:hover {
    color: #0066cc;
}

.section-link:hover svg {
    transform: translateX(4px);
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

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

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

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

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

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

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

.game:hover .game-overlay {
    opacity: 1;
}

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

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

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

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

.game-tag {
    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 4px 12px rgba(255, 68, 68, 0.4);
}

.game-tag-new {
    background: linear-gradient(180deg, #59b3ff 0%, #008cff 100%);
    box-shadow: 0 4px 12px rgba(0, 140, 255, 0.3);
}

.game-info {
    padding: 20px;
}

.game-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}

.game-provider {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

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

.game-stat {
    color: #666;
    background: #f1f4f8;
    padding: 4px 10px;
    border-radius: 6px;
}

.game-stat:first-child {
    color: #19cc61;
    background: rgba(25, 204, 97, 0.1);
    font-weight: 600;
}

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

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

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

/* Footer */
.footer {
    background: #f1f4f8;
    padding: 60px 0 24px;
    margin-top: 80px;
    border-top: 1px solid #e5e7eb;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-about {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 16px;
}

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

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge {
    background: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #e5e7eb;
    color: #666;
}

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

/* Responsive */
@media (max-width: 768px) {
    .nav-desktop,
    .header-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 60px 0;
    }

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

    .hero-heading {
        font-size: 40px;
    }

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

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

    .btn-cta {
        width: 100%;
        text-align: center;
    }

    .section {
        padding: 60px 0;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .section-heading {
        font-size: 28px;
    }

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

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

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

@media (max-width: 480px) {
    .hero-heading {
        font-size: 32px;
    }

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

    .games-grid {
        grid-template-columns: 1fr;
    }
}
.comparison-section {
    padding: 80px 0;
}

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

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
}

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

.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.highlight {
    color: #19cc61;
    font-weight: 600;
}

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

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

.comparison-table {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.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(-4px);
    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;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 16px;
    }
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .promo-box {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .promo-heading {
        font-size: 28px;
    }

    .promo-text {
        font-size: 16px;
    }

    .promo-badge-large {
        width: 150px;
        height: 150px;
    }

    .promo-badge-icon {
        font-size: 60px;
    }

    .promo-badge-text {
        font-size: 24px;
    }
}
