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

:root {
    --primary-color: #ff6b00;
    --secondary-color: #1f74ff;
    --accent-color: #00c4ff;
    --dark-bg: #0a2f7a;
    --darker-bg: #041c4f;
    --card-bg: rgba(10, 45, 110, 0.88);
    --page-bg: #041c4f;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --gradient-1: linear-gradient(135deg, #0b3f9c 0%, #0d5fe0 100%);
    --gradient-2: linear-gradient(135deg, #ff6b00 0%, #ff8f00 100%);
    --gradient-3: linear-gradient(135deg, #1f8fff 0%, #23b2ff 100%);
    --shadow-glow: 0 0 30px rgba(31, 140, 255, 0.35);
    --shadow-card: 0 10px 40px rgba(5, 24, 66, 0.45);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    background: var(--page-bg, #05091b);
    color: var(--text-primary, #ffffff);
    font-family: 'Inter', 'Roboto', 'Segoe UI', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    min-height: 100vh;
}

body.menu-open {
    overflow: hidden;
}

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

/* Prevent overflow on all elements */
img, video, iframe {
    max-width: 100%;
    height: auto;
}

section {
    overflow-x: hidden;
    width: 100%;
}

/* Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--darker-bg);
    overflow: hidden;
}

.particles::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(123, 47, 247, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(255, 0, 110, 0.1) 0%, transparent 50%);
    animation: particlesFloat 20s ease-in-out infinite;
}

@keyframes particlesFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 30, 84, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
}

.header.header-condensed {
    background: rgba(6, 30, 84, 0.97);
    padding: 15px 0 !important;
    box-shadow: 0 12px 40px rgba(5, 24, 66, 0.35);
}

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

.logo {
    display: inline-flex;
    align-items: center;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 80px;
    width: auto;
    display: block;
}

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

.nav-label {
    font-size: 11px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    padding-right: 18px;
    margin-right: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-group {
    position: relative;
}

.nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 14px;
    transition: all 0.25s ease;
}

.nav-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: inherit;
    transition: transform 0.25s ease;
}

.nav-arrow::before {
    content: '▾';
    line-height: 1;
}

.nav-group:hover .nav-arrow,
.nav-group:focus-within .nav-arrow,
.nav-group.is-active .nav-arrow {
    transform: rotate(180deg);
}

.nav-group:hover .nav-trigger,
.nav-group:focus-within .nav-trigger,
.nav-group.is-active .nav-trigger {
    color: var(--text-primary);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.18) 0%, rgba(123, 47, 247, 0.18) 100%);
    box-shadow: 0 12px 24px rgba(0, 212, 255, 0.15);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    display: none;
    min-width: 220px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(7, 10, 28, 0.92);
    box-shadow: 0 30px 60px rgba(0, 8, 35, 0.45);
    border: 1px solid rgba(0, 212, 255, 0.18);
    gap: 6px;
    z-index: 1200;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
    display: grid;
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 24px;
    width: 18px;
    height: 18px;
    background: inherit;
    border-left: inherit;
    border-top: inherit;
    transform: rotate(45deg);
    z-index: -1;
}

.nav-dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.25s ease;
}

.nav-dropdown-link:hover,
.nav-dropdown-link.active {
    color: var(--primary-color);
    background: rgba(0, 212, 255, 0.12);
    text-shadow: 0 0 18px rgba(0, 212, 255, 0.35);
}

.nav-dropdown-link.is-disabled {
    color: rgba(255, 255, 255, 0.35);
    pointer-events: none;
    cursor: default;
}

.nav-dropdown-link.is-disabled::after {
    content: 'Em breve';
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(0, 212, 255, 0.6);
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-2);
    color: white;
    box-shadow: 0 12px 32px rgba(255, 107, 0, 0.38);
}

.btn-primary:hover {
    box-shadow: 0 16px 44px rgba(255, 107, 0, 0.5);
    transform: translateY(-2px);
}

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

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

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

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

.burger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 80px);
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    padding: 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 2px solid rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.05);
}

.mobile-menu-header h3 {
    font-size: 18px;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
    padding-left: 30px;
}

.mobile-icon {
    font-size: 20px;
    flex-shrink: 0;
}

/* Mobile Navigation Section */
.mobile-nav-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-section-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.mobile-section-trigger:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
}

.mobile-section-trigger span:nth-child(2) {
    flex: 1;
}

.mobile-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.mobile-nav-section.active .mobile-arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    transition: max-height 0.3s ease;
}

.mobile-nav-section.active .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu-link {
    display: block;
    padding: 12px 20px 12px 60px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.mobile-submenu-link:hover {
    background: rgba(0, 212, 255, 0.05);
    color: var(--primary-color);
    padding-left: 70px;
}

.mobile-submenu-link.active {
    color: var(--primary-color);
}

.mobile-submenu-link.is-disabled {
    color: rgba(255, 255, 255, 0.35);
    pointer-events: none;
}

.mobile-submenu-link.is-disabled::after {
    content: 'Em breve';
    float: right;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(0, 212, 255, 0.6);
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.stat-value {
    font-size: 36px;
    font-weight: 900;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Hero Image */
.hero-image {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    border-radius: 20px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-card);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    width: 280px;
    height: 180px;
    top: 50px;
    left: 50px;
    background: var(--gradient-1);
}

.card-2 {
    width: 220px;
    height: 140px;
    top: 200px;
    right: 80px;
    background: var(--gradient-2);
    animation-delay: -2s;
}

.card-3 {
    width: 200px;
    height: 120px;
    bottom: 80px;
    left: 100px;
    background: var(--gradient-3);
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* SEO Text */
.seo-text {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.seo-text p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 60px;
}

/* Features Section */
.features {
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

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

/* Providers Grid - 4 columns by default */
.providers-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* FAQ Grid - 2 columns by default */
.faq-grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 16px;
    margin-top: -10px;
    margin-bottom: 20px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.feature-icon {
    font-size: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Games Section */
.games {
    background: var(--darker-bg);
}

/* Tabs */
.tabs {
    margin-top: 40px;
}

.tabs-header {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 35px;
    background: transparent;
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-btn.active {
    background: var(--gradient-2);
    border-color: transparent;
    color: white;
    box-shadow: var(--shadow-glow);
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-panel.active {
    display: block;
}

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

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

.game-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.game-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.game-title {
    font-size: 18px;
    font-weight: 700;
    margin: 20px 20px 10px;
}

.game-description {
    color: var(--text-secondary);
    font-size: 14px;
    padding: 0 20px 20px;
}

/* Quick Start */
.quick-start {
    background: linear-gradient(180deg, rgba(5, 8, 30, 1) 0%, rgba(6, 10, 35, 1) 100%);
    position: relative;
}

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

.quick-card {
    position: relative;
    background: rgba(15, 20, 45, 0.95);
    border: 1px solid rgba(0, 212, 255, 0.12);
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 20px 50px rgba(3, 10, 30, 0.4);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.quick-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.35), rgba(157, 0, 255, 0.35)) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    opacity: 0.2;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.quick-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.35);
    box-shadow: 0 25px 60px rgba(0, 212, 255, 0.18);
}

.quick-card:hover::after {
    opacity: 0.35;
}

.step-badge {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.35);
}

.quick-card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.quick-card-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.quick-card-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-card-list li {
    position: relative;
    padding-left: 24px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.quick-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(0, 212, 255, 0.5));
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.4);
}

/* Sports Line */
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 40px;
}

.sports-line {
    position: relative;
}

.sports-line-layout {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
}

.sports-overview {
    background: rgba(12, 16, 40, 0.95);
    border-radius: 28px;
    border: 1px solid rgba(0, 212, 255, 0.12);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 30px 60px rgba(0, 8, 25, 0.45);
}

.stat-capsule {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(0, 212, 255, 0.12);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(0, 212, 255, 0.25);
    margin-right: 10px;
    margin-bottom: 10px;
}

.sports-lead {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.sports-advantages {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sports-advantages li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text-secondary);
    line-height: 1.6;
}

.sports-advantages li span {
    font-size: 18px;
    line-height: 1;
}

.sports-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.sports-actions .btn {
    min-width: 190px;
}

.sports-matrix {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.sports-card {
    background: rgba(13, 19, 45, 0.9);
    border: 1px solid rgba(0, 212, 255, 0.12);
    border-radius: 24px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.sports-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.18);
}

.sports-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sports-card-header h3 {
    margin: 0;
    font-size: 18px;
}

.sports-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(0, 212, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.sports-card p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.sports-markets {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sports-markets span {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.08);
    font-size: 12px;
    font-weight: 600;
}

/* Live Zone */
.live-zone {
    background: linear-gradient(180deg, rgba(8, 12, 35, 1) 0%, rgba(4, 6, 25, 1) 100%);
    position: relative;
}

.live-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.live-card {
    background: linear-gradient(150deg, rgba(0, 212, 255, 0.25) 0%, rgba(157, 0, 255, 0.25) 100%);
    border-radius: 28px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 212, 255, 0.25);
}

.live-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 68, 102, 0.2);
    border: 1px solid rgba(255, 68, 102, 0.45);
    border-radius: 999px;
    padding: 6px 14px;
    color: #ff4470;
    font-weight: 700;
    margin-bottom: 20px;
}

.live-title {
    font-size: 20px;
    margin: 0 0 12px;
}

.live-score {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}

.team-name {
    display: block;
    font-weight: 600;
    color: #fff;
}

.team-score {
    display: block;
    font-size: 32px;
    font-weight: 700;
}

.live-timer {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.7);
}

.live-coefficients {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.live-coefficients span {
    padding: 10px 18px;
    border-radius: 14px;
    background: rgba(9, 12, 32, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 600;
}

.live-content .section-title {
    margin-bottom: 14px;
}

.live-benefits {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: var(--text-secondary);
}

.live-benefits li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    line-height: 1.6;
}

.live-benefits li span {
    font-size: 18px;
}

.live-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Casino Preview */
.casino-preview {
    position: relative;
}

.casino-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: stretch;
}

.casino-intro {
    background: rgba(12, 16, 40, 0.92);
    border: 1px solid rgba(0, 212, 255, 0.12);
    border-radius: 28px;
    padding: 45px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 30px 70px rgba(0, 8, 25, 0.45);
}

.casino-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.casino-stat {
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.18);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
}

.casino-stat-value {
    font-size: 26px;
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
}

.casino-stat-label {
    font-size: 13px;
    color: var(--text-secondary);
}

.casino-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--text-secondary);
}

.casino-list li {
    position: relative;
    padding-left: 22px;
}

.casino-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: rgba(0, 212, 255, 0.8);
}

.casino-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.casino-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.casino-card {
    background: rgba(15, 20, 45, 0.9);
    border: 1px solid rgba(0, 212, 255, 0.12);
    border-radius: 24px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.28);
}

.casino-icon {
    font-size: 32px;
}

.casino-card h3 {
    margin: 0;
    font-size: 18px;
}

.casino-card p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Payment Systems */
.payment-systems {
    background: linear-gradient(180deg, rgba(5, 9, 28, 1) 0%, rgba(9, 14, 32, 1) 100%);
}

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

.payment-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 26px 24px;
    background: rgba(12, 17, 38, 0.95);
    border: 1px solid rgba(0, 212, 255, 0.12);
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0, 8, 25, 0.35);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.3);
}

.payment-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(0, 212, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.payment-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.payment-card p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* FAQ Cards */
.faq-grid-alt .feature-card {
    border: 1px solid rgba(0, 212, 255, 0.15);
    min-height: 180px;
}

.faq-grid-alt .feature-title {
    font-size: 18px;
}

.faq-grid-alt .feature-description {
    line-height: 1.6;
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.18) 0%, rgba(157, 0, 255, 0.18) 100%);
    padding: 80px 0;
}

.cta-wrapper {
    background: rgba(9, 12, 30, 0.9);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 30px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 30px 80px rgba(0, 212, 255, 0.25);
}

.cta-title {
    font-size: 32px;
    margin: 0;
}

.cta-text {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    max-width: 720px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
/* Casino Game Tabs - Enhanced Layout */
.game-tab {
    position: relative;
    display: grid;
    grid-template-columns: minmax(240px, 320px) 1fr;
    gap: 40px;
    background: linear-gradient(155deg, rgba(10, 15, 35, 0.95) 0%, rgba(15, 20, 45, 0.98) 100%);
    border: 1px solid rgba(0, 212, 255, 0.12);
    border-radius: 30px;
    padding: 45px 50px;
    box-shadow: 0 30px 80px rgba(0, 8, 30, 0.45);
    overflow: hidden;
}

.game-tab::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.35), rgba(157, 0, 255, 0.35)) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    opacity: 0.3;
    pointer-events: none;
}

.game-tab-media {
    position: relative;
    border-radius: 24px;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    color: white;
    background: var(--tab-gradient, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
    box-shadow: 0 25px 45px var(--tab-glow, rgba(118, 75, 162, 0.45));
    isolation: isolate;
}

.game-tab-media::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 65%);
    opacity: 0.4;
    pointer-events: none;
}

.game-tab-icon {
    font-size: 64px;
    line-height: 1;
    z-index: 1;
}

.game-tab-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    z-index: 1;
}

.game-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    background: rgba(9, 14, 35, 0.25);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.game-chip.accent {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.game-media-note {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    z-index: 1;
}

.game-tab-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.game-tab-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.game-tab-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

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

.game-meta-card {
    background: rgba(20, 30, 55, 0.85);
    border-radius: 18px;
    padding: 18px 20px;
    border: 1px solid rgba(0, 212, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 8, 30, 0.3);
}

.meta-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
}

.meta-value {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.game-feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.game-feature-list li {
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.game-feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(0, 212, 255, 0.4));
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.4);
}

.game-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.game-actions .btn {
    flex-shrink: 0;
}

.game-actions .btn-secondary {
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
}

.game-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.theme-slots {
    --tab-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --tab-glow: rgba(118, 75, 162, 0.45);
}

.theme-roulette {
    --tab-gradient: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    --tab-glow: rgba(255, 154, 158, 0.45);
}

.theme-blackjack {
    --tab-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --tab-glow: rgba(56, 249, 215, 0.4);
}

.theme-baccarat {
    --tab-gradient: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    --tab-glow: rgba(48, 207, 208, 0.4);
}

.theme-instant {
    --tab-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --tab-glow: rgba(240, 147, 251, 0.45);
}

.theme-poker {
    --tab-gradient: linear-gradient(135deg, #36d1dc 0%, #5b86e5 100%);
    --tab-glow: rgba(91, 134, 229, 0.4);
}

/* Bonuses Section */
.bonuses {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

/* Slider */
.slider {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 100%;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.bonus-slide {
    min-width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.bonus-card {
    background: var(--card-bg);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 30px;
    padding: 50px 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.bonus-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.bonus-amount {
    font-size: 80px;
    font-weight: 900;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6));
    line-height: 1;
}

.bonus-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.bonus-description {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.bonus-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.bonus-features li {
    padding: 10px 0 10px 35px;
    position: relative;
    color: var(--text-secondary);
}

.bonus-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 18px;
    width: 25px;
    text-align: center;
}

/* Game features - same styles */
.game-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.game-features li {
    padding: 10px 0 10px 35px;
    position: relative;
    color: var(--text-secondary);
}

.game-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 18px;
    width: 25px;
    text-align: center;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 212, 255, 0.2);
    border: 2px solid var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.slider-btn-prev {
    left: 10px;
}

.slider-btn-next {
    right: 10px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* App Section */
.app {
    background: var(--dark-bg);
}

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

.app-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.app-features-list {
    margin-bottom: 40px;
}

.app-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.app-feature-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.app-feature-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.app-feature-item p {
    color: var(--text-secondary);
    font-size: 14px;
}

.app-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-app {
    background: var(--card-bg);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.btn-app:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.app-icon {
    font-size: 36px;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-btn-small {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 400;
}

.app-btn-large {
    font-size: 18px;
    font-weight: 700;
}

/* Hidden Details */
.app-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    margin-top: 30px;
}

.app-details.active {
    max-height: 500px;
}

.app-details-content {
    background: var(--card-bg);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-top: 20px;
}

.app-details-content h4 {
    margin-bottom: 20px;
    font-size: 20px;
}

.app-details-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.app-details-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.app-details-note {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    background: var(--card-bg);
    border: 10px solid rgba(0, 212, 255, 0.3);
    border-radius: 40px;
    margin: 0 auto;
    box-shadow: var(--shadow-glow);
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%);
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(123, 47, 247, 0.3) 0%, transparent 50%);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    padding: 60px 0 30px;
    position: relative;
    z-index: 2;
}

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

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    transition: all 0.3s ease;
}

.social-link-initials {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.social-link:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-text {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    color: var(--text-secondary);
    font-size: 14px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--dark-bg);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 30px;
    padding: 50px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: var(--shadow-glow);
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.modal-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 30px;
    text-align: center;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input {
    padding: 15px 20px;
    background: var(--card-bg);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.modal-footer-text {
    text-align: center;
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 14px;
}

.modal-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.modal-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .game-tab {
        grid-template-columns: minmax(0, 260px) 1fr;
        gap: 30px;
        padding: 35px 38px;
    }
    
    .game-tab-media {
        padding: 32px 28px;
    }
    
    .game-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-card {
        padding: 28px 24px;
    }
    
    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sports-line-layout {
        grid-template-columns: 1fr;
    }
    
    .sports-matrix {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .live-grid {
        grid-template-columns: 1fr;
    }
    
    .casino-grid {
        grid-template-columns: 1fr;
    }
    
    .casino-intro {
        padding: 36px;
    }
    
    .casino-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-card {
        padding: 24px 20px;
    }
    
    .cta-wrapper {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    /* Header & Navigation */
    .nav {
        display: none;
    }
    
    .burger {
        display: flex;
    }
    
    .header-content {
        padding: 0 15px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 40px;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-value {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    /* Features & Games */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .game-card, .feature-card {
        padding: 20px;
    }
    
    .game-title, .feature-title {
        font-size: 18px;
    }
    
    .game-tab {
        grid-template-columns: 1fr;
        padding: 28px 24px;
        gap: 25px;
    }
    
    .game-tab-media {
        padding: 24px 22px;
        gap: 18px;
        align-items: flex-start;
    }
    
    .game-tab-icon {
        font-size: 56px;
    }
    
    .game-tab-chips {
        gap: 8px;
    }
    
    .game-tab-content {
        gap: 20px;
    }
    
    .game-tab-title {
        font-size: 24px;
    }
    
    .game-tab-description {
        font-size: 15px;
    }
    
    .game-meta {
        grid-template-columns: 1fr;
    }
    
    .game-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .game-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .quick-grid {
        grid-template-columns: 1fr;
    }
    
    .step-badge {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }
    
    .quick-card-title {
        font-size: 18px;
    }
    
    .sports-matrix {
        grid-template-columns: 1fr;
    }
    
    .sports-card {
        padding: 24px;
    }
    
    .live-card {
        padding: 28px;
    }
    
    .live-coefficients {
        gap: 10px;
    }
    
    .live-coefficients span {
        flex: 1 1 calc(33.33% - 10px);
        text-align: center;
    }
    
    .casino-intro {
        padding: 32px 26px;
    }
    
    .casino-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .payment-icon {
        width: 44px;
        height: 44px;
    }
    
    .cta-wrapper {
        padding: 32px 26px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-actions {
        width: 100%;
    }
    
    .cta-actions .btn {
        flex: 1 1 100%;
        justify-content: center;
    }
    
    /* Tabs - barra de navegação melhorada com scroll */
    .tabs-header {
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
        padding: 0 15px 15px;
        gap: 10px;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch; /* Scroll suave no iOS */
        scrollbar-width: thin; /* Barra de scroll fina para Firefox */
        /* Indicador em gradiente à direita */
        position: relative;
    }
    
    /* Esconder scrollbars em Chrome, Safari, Edge */
    .tabs-header::-webkit-scrollbar {
        height: 4px;
    }
    
    .tabs-header::-webkit-scrollbar-track {
        background: rgba(0, 212, 255, 0.05);
        border-radius: 10px;
    }
    
    .tabs-header::-webkit-scrollbar-thumb {
        background: rgba(0, 212, 255, 0.3);
        border-radius: 10px;
    }
    
    .tabs-header::-webkit-scrollbar-thumb:hover {
        background: rgba(0, 212, 255, 0.5);
    }
    
    .tab-btn {
        white-space: nowrap;
        font-size: 14px;
        padding: 10px 20px;
        flex-shrink: 0; /* Impedir que os botões encolham */
        padding: 10px 0 10px 35px; /* Manter margem esquerda para o ícone */
        border-width: 1px; /* Borda mais fina para poupar espaço */
    }
    
    /* Providers - 2 columns on tablets */
    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .provider-card {
        padding: 20px;
    }
    
    /* FAQ - 1 column on tablets */
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    /* Better text readability */
    .bonus-features li,
    .game-features li {
        font-size: 15px;
        line-height: 1.6;
        padding: 10px 0 10px 35px; /* Manter margem esquerda para o ícone */
    }
    
    .game-description,
    .feature-description {
        font-size: 15px;
        line-height: 1.6;
    }
    
    /* Tables */
    .info-table {
        display: block;
        overflow-x: auto;
    }
    
    .info-table table {
        min-width: 600px;
    }
    
    .info-table th,
    .info-table td {
        padding: 12px 10px;
        font-size: 13px;
    }
    
    /* FAQ */
    .faq-item {
        padding: 20px;
    }
    
    .faq-question {
        font-size: 16px;
        padding-right: 40px;
    }
    
    /* Advantages */
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .advantage-item {
        padding: 25px 20px;
    }
    
    /* App Section */
    .app-content {
        grid-template-columns: 1fr;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Common */
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .btn-primary, .btn-secondary {
        font-size: 15px;
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    .header {
        padding: 12px 0;
    }
    
    .logo-image {
        height: 56px;
    }
    
    /* Hero Section */
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-large {
        padding: 14px 30px;
        font-size: 16px;
        width: 100%;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    /* Sections */
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    /* Games & Features */
    .games-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .game-card, .feature-card {
        padding: 20px 15px;
    }
    
    .game-image {
        height: 150px;
        font-size: 48px;
    }
    
    .game-title, .feature-title {
        font-size: 17px;
    }
    
    .game-description, .feature-description {
        font-size: 14px;
    }
    
    .game-tab {
        padding: 24px 20px;
        gap: 20px;
    }
    
    .game-tab-media {
        padding: 20px;
        gap: 16px;
    }
    
    .game-tab-icon {
        font-size: 48px;
    }
    
    .game-tab-chips {
        gap: 6px;
    }
    
    .game-chip {
        font-size: 11px;
        padding: 8px 12px;
    }
    
    .game-tab-title {
        font-size: 22px;
    }
    
    .game-tab-description {
        font-size: 14px;
    }
    
    .game-meta-card {
        padding: 16px;
    }
    
    .quick-card {
        padding: 24px 18px;
        gap: 16px;
    }
    
    .quick-card-text {
        font-size: 14px;
    }
    
    .quick-card-list li {
        font-size: 13px;
    }
    
    .sports-overview {
        padding: 28px 20px;
        gap: 20px;
    }
    
    .sports-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .sports-card {
        padding: 22px 18px;
    }
    
    .sports-markets {
        gap: 8px;
    }
    
    .sports-markets span {
        width: 100%;
        text-align: center;
    }
    
    .live-card {
        padding: 24px 18px;
    }
    
    .live-coefficients span {
        flex: 1 1 100%;
    }
    
    .live-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .casino-intro {
        padding: 26px 18px;
    }
    
    .casino-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .casino-showcase {
        grid-template-columns: 1fr;
    }
    
    .payment-card {
        padding: 22px 16px;
        gap: 14px;
    }
    
    .cta-wrapper {
        padding: 28px 18px;
    }
    
    .cta-title {
        font-size: 26px;
    }
    
    .cta-text {
        font-size: 14px;
    }
    
    /* Tabs - barra compacta para ecrãs pequenos */
    .tabs-header {
        gap: 8px;
        padding: 0 10px 12px;
    }
    
    .tab-btn {
        font-size: 13px;
        padding: 8px 16px;
        min-width: auto;
        border-width: 1px; /* Tonelhor borda para economizar espaço */
        padding: 8px 0 8px 35px; /* Manter margem esquerda para o ícone */
    }
    
    /* Providers - 1 column on mobile */
    .providers-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .provider-card {
        padding: 20px 15px;
    }
    
    .provider-logo {
        font-size: 32px;
    }
    
    /* Larger icons for better visibility */
    .feature-icon {
        font-size: 48px;
    }
    
    .feature-title {
        font-size: 17px;
    }
    
    .feature-description {
        font-size: 14px;
        line-height: 1.7;
    }
    
    /* Advantages */
    .advantage-item {
        padding: 20px 15px;
    }
    
    .advantage-icon {
        font-size: 32px;
        width: 50px;
        height: 50px;
    }
    
    .advantage-title {
        font-size: 16px;
    }
    
    .advantage-text {
        font-size: 13px;
    }
    
    /* Slider */
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    /* Bonus Cards */
    .bonus-card {
        padding: 30px 20px;
    }
    
    .bonus-amount {
        font-size: 60px;
    }
    
    .bonus-title {
        font-size: 20px;
    }
    
    .bonus-description {
        font-size: 14px;
    }
    
    /* FAQ */
    .faq-item {
        padding: 18px 15px;
    }
    
    .faq-question {
        font-size: 15px;
        padding-right: 35px;
    }
    
    .faq-answer {
        font-size: 14px;
    }
    
    .faq-toggle {
        font-size: 20px;
    }
    
    /* Tables */
    .info-table table {
        min-width: 500px;
    }
    
    .info-table th,
    .info-table td {
        padding: 10px 8px;
        font-size: 12px;
    }
    
    /* Buttons */
    .btn {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .btn-small {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    /* Modal */
    .modal-content {
        padding: 25px 18px;
        width: 95%;
        max-width: none;
    }
    
    .modal-title {
        font-size: 22px;
    }
    
    .form-input {
        font-size: 15px;
        padding: 12px 15px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-title {
        font-size: 16px;
    }
    
    .footer-links {
        font-size: 13px;
    }
    
    /* SEO Text */
    .seo-text {
        padding: 30px 0;
    }
    
    .seo-text p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* Extra Small Devices (320px and below) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .providers-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-btn {
        font-size: 12px;
        padding: 8px 14px;
    }
    
    .bonus-amount {
        font-size: 48px;
    }
    
    .hero-stats {
        gap: 10px;
    }
    
    .stat-value {
        font-size: 24px;
    }
}

/* Additional Mobile Styles - Applied to All Screen Sizes */
@media (max-width: 1024px) {
    /* Bonus Features Lists */
    .bonus-features, .game-features {
        font-size: 14px;
    }
    
    .bonus-features li, .game-features li {
        padding: 8px 0 8px 35px; /* Manter margem esquerda para o ícone */
    }
    
    /* Live Section */
    .live-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .live-image {
        width: 100%;
    }
    
    /* Guide Section */
    .guide-content {
        padding: 30px 20px;
    }
    
    .guide-section h3 {
        font-size: 20px;
    }
    
    /* Platform Features */
    .platform-feature {
        padding: 20px 15px;
    }
}

/* Ensure touch-friendly elements on mobile */
@media (hover: none) and (pointer: coarse) {
    .btn, .tab-btn, .nav-link, .mobile-nav-link {
        min-height: 44px;
        min-width: 44px;
    }
    
    .faq-item {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(0, 212, 255, 0.1);
    }
    
    .mobile-section-trigger {
        -webkit-tap-highlight-color: rgba(0, 212, 255, 0.1);
    }
}

/* iOS Specific Fixes */
@supports (-webkit-touch-callout: none) {
    /* Fix for iOS Safari */
    body {
        -webkit-text-size-adjust: 100%;
        -webkit-font-smoothing: antialiased;
    }
    
    .btn, .tab-btn {
        -webkit-appearance: none;
        -webkit-border-radius: 12px;
    }
    
    input, textarea {
        -webkit-appearance: none;
        border-radius: 8px;
    }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    .particles {
        display: none; /* Hide particles on mobile for better performance */
    }
    
    * {
        -webkit-backface-visibility: hidden;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/* ========================================
   PROVIDERS WITH LICENSES DESIGN
   ======================================== */

.providers-licensed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.provider-card-licensed {
    position: relative;
    background: linear-gradient(145deg, 
        rgba(10, 10, 30, 0.9) 0%, 
        rgba(20, 20, 40, 0.95) 100%);
    border: 2px solid rgba(0, 212, 255, 0.15);
    border-radius: 20px;
    padding: 25px 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.provider-card-licensed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.provider-card-licensed:hover::before {
    opacity: 1;
}

.provider-card-licensed:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 
        0 15px 40px rgba(0, 212, 255, 0.2),
        0 0 80px rgba(157, 0, 255, 0.15);
}

.provider-card-licensed.featured {
    border: 2px solid rgba(0, 212, 255, 0.4);
    background: linear-gradient(145deg, 
        rgba(0, 212, 255, 0.05) 0%, 
        rgba(157, 0, 255, 0.05) 100%),
        linear-gradient(145deg, 
        rgba(10, 10, 30, 0.9) 0%, 
        rgba(20, 20, 40, 0.95) 100%);
}

.provider-card-licensed.featured::before {
    opacity: 1;
}

.featured-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-2);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.provider-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.provider-name-lg {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.license-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.license-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 1.5px solid;
    transition: all 0.3s ease;
}

/* MGA - Malta Gaming Authority (Gold) */
.license-badge.mga {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border-color: rgba(255, 193, 7, 0.4);
}

.license-badge.mga:hover {
    background: rgba(255, 193, 7, 0.2);
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
}

/* UKGC - UK Gambling Commission (Blue) */
.license-badge.ukgc {
    background: rgba(33, 150, 243, 0.1);
    color: #2196f3;
    border-color: rgba(33, 150, 243, 0.4);
}

.license-badge.ukgc:hover {
    background: rgba(33, 150, 243, 0.2);
    box-shadow: 0 0 15px rgba(33, 150, 243, 0.3);
}

/* Curacao (Green) */
.license-badge.curacao {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border-color: rgba(76, 175, 80, 0.4);
}

.license-badge.curacao:hover {
    background: rgba(76, 175, 80, 0.2);
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.3);
}

/* Gibraltar (Purple) */
.license-badge.gibraltar {
    background: rgba(156, 39, 176, 0.1);
    color: #9c27b0;
    border-color: rgba(156, 39, 176, 0.4);
}

.license-badge.gibraltar:hover {
    background: rgba(156, 39, 176, 0.2);
    box-shadow: 0 0 15px rgba(156, 39, 176, 0.3);
}

.provider-specialty {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 15px 0;
    min-height: 42px;
}

.provider-stats {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.stat-label {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Responsive - Tablets */
@media (max-width: 768px) {
    .providers-licensed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .provider-name-lg {
        font-size: 20px;
    }
    
    .license-badge {
        font-size: 9px;
        padding: 3px 8px;
    }
    
    .provider-specialty {
        font-size: 13px;
        min-height: auto;
    }
    
    .stat-value {
        font-size: 16px;
    }
    
    .featured-label {
        font-size: 10px;
        padding: 3px 8px;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .providers-licensed-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .provider-card-licensed {
        padding: 20px 18px;
    }
    
    .provider-name-lg {
        font-size: 22px;
    }
    
    .license-badge {
        font-size: 9px;
    }
    
    .provider-specialty {
        font-size: 14px;
    }
    
    .provider-stats {
        gap: 10px;
    }
    
    .stat-value {
        font-size: 17px;
    }
}

/* Responsive - Very Small Screens */
@media (max-width: 360px) {
    .provider-name-lg {
        font-size: 20px;
    }
    
    .provider-specialty {
        font-size: 13px;
    }
    
    .stat-value {
        font-size: 16px;
    }
    
    .license-badges {
        gap: 4px;
    }
    
    .license-badge {
        font-size: 8px;
        padding: 3px 6px;
    }
    
    .game-tab {
        padding: 20px 16px;
    }
    
    .game-tab-icon {
        font-size: 42px;
    }
    
    .game-tab-chips {
        gap: 5px;
    }
    
    .game-actions .btn {
        min-height: 44px;
    }
}

/* Trust Statistics Section */
.trust-stats {
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    padding: 100px 0;
}

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

.stat-card {
    background: var(--card-bg);
    border: 2px solid rgba(0, 212, 255, 0.15);
    border-radius: 30px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    transition: opacity 0.4s ease;
    opacity: 0;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.stat-icon {
    font-size: 60px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    display: block;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.stat-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .stat-card {
        padding: 40px 30px;
    }
    
    .stat-icon {
        font-size: 50px;
    }
    
    .stat-number {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .trust-stats {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 35px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }
    
    .stat-number {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .stat-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .trust-stats {
        padding: 50px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 30px;
    }
    
    .stat-card {
        padding: 28px 18px;
    }
    
    .stat-icon {
        font-size: 38px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-description {
        font-size: 13px;
    }
}

/* Advantages Section */
.advantages {
    background: var(--dark-bg);
    padding: 100px 0;
}

.advantages .features-grid {
    margin-top: 50px;
}

@media (max-width: 768px) {
    .advantages {
        padding: 60px 0;
    }
    
    .advantages .features-grid {
        margin-top: 35px;
    }
}

@media (max-width: 480px) {
    .advantages {
        padding: 50px 0;
    }
    
    .advantages .features-grid {
        margin-top: 30px;
    }
}

/* Homepage Layout */
.main {
    position: relative;
    z-index: 1;
}

.page-hero {
    padding: 140px 0 100px;
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.95) 0%, rgba(5, 8, 20, 0.9) 100%);
}

.page-hero__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: stretch;
}

.page-hero__content {
    flex: 1 1 420px;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-hero__title {
    font-size: 46px;
    line-height: 1.15;
    margin: 0;
}

.page-hero__lead {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.page-hero__aside {
    flex: 1 1 320px;
    max-width: 440px;
    background: rgba(15, 20, 45, 0.85);
    border: 1px solid rgba(0, 212, 255, 0.18);
    border-radius: 28px;
    padding: 32px 30px;
    box-shadow: 0 25px 60px rgba(0, 8, 35, 0.45);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.page-hero__subtitle {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.page-hero__aside p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.75;
}

.content-section {
    padding: 90px 0;
    background: var(--dark-bg);
}

.content-section:nth-of-type(even) {
    background: var(--darker-bg);
}

.section-heading {
    max-width: 860px;
    margin: 0 auto 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.section-heading h2 {
    font-size: 40px;
    margin: 0;
}

.section-heading p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.info-grid--compact {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.info-card {
    background: rgba(20, 25, 55, 0.85);
    border: 1px solid rgba(0, 212, 255, 0.18);
    border-radius: 26px;
    padding: 28px 26px;
    box-shadow: 0 18px 50px rgba(0, 8, 35, 0.4);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.info-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
}

.info-card p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.75;
}

.info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.35);
    box-shadow: 0 28px 70px rgba(0, 212, 255, 0.25);
}

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

.split-column {
    background: rgba(18, 22, 48, 0.85);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 24px;
    padding: 30px 28px;
    box-shadow: 0 16px 45px rgba(0, 8, 30, 0.4);
}

.split-column h3 {
    margin: 0 0 18px;
    font-size: 22px;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    position: relative;
    padding-left: 28px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

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

.faq-item {
    background: rgba(18, 24, 52, 0.85);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 24px;
    padding: 26px 24px;
    box-shadow: 0 16px 40px rgba(0, 8, 35, 0.35);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.3);
}

.faq-item h3 {
    margin: 0 0 12px;
    font-size: 18px;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-hero {
        padding: 110px 0 80px;
    }

    .page-hero__inner {
        gap: 40px;
    }

    .section-heading h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 110px 0 70px;
    }

    .page-hero__inner {
        flex-direction: column;
    }

    .page-hero__title {
        font-size: 38px;
    }

    .page-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .content-section {
        padding: 70px 0;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 90px 0 60px;
    }

    .page-hero__title {
        font-size: 30px;
    }

    .page-hero__lead {
        font-size: 16px;
    }

    .page-hero__aside {
        padding: 24px 22px;
    }

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

    .section-heading h2 {
        font-size: 26px;
    }

    .info-card,
    .split-column,
    .faq-item {
        padding: 24px 20px;
    }
}

/* ========================================
   New UX Layout Overrides
   ======================================== */
.main {
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(0, 212, 255, 0.12);
    border: 1px solid rgba(0, 212, 255, 0.25);
    font-size: 13px;
    letter-spacing: 0.4px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 18px;
}

.section-badge span[data-lucide] {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
}

.hero {
    position: relative;
    padding: 160px 0 110px;
    background: linear-gradient(180deg, rgba(9, 13, 35, 0.98) 0%, rgba(5, 9, 25, 0.92) 100%);
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: stretch;
}

.hero-content {
    flex: 1 1 520px;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hero h1 {
    margin: 0;
    font-size: 48px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
    margin-top: 10px;
}

.hero-stat {
    padding: 22px 20px;
    border-radius: 20px;
    background: rgba(15, 20, 45, 0.85);
    border: 1px solid rgba(0, 212, 255, 0.15);
    box-shadow: 0 18px 45px rgba(0, 8, 35, 0.35);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-stat-value {
    font-size: 28px;
    font-weight: 800;
}

.hero-stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.hero-sidebar {
    flex: 1 1 280px;
    max-width: 360px;
    display: grid;
    gap: 20px;
}

.hero-feature-card {
    padding: 26px 24px;
    border-radius: 24px;
    background: rgba(15, 20, 45, 0.85);
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 8, 35, 0.4);
    display: grid;
    gap: 12px;
}

.hero-feature-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
}

.hero-feature-card h3 {
    margin: 0;
    font-size: 18px;
}

.hero-feature-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.hero-seo-text {
    margin-top: 50px;
    padding: 26px 30px;
    border-radius: 26px;
    background: rgba(13, 18, 40, 0.9);
    border: 1px solid rgba(0, 212, 255, 0.2);
    display: flex;
    gap: 24px;
    align-items: flex-start;
    box-shadow: 0 25px 60px rgba(0, 8, 35, 0.35);
}

.hero-seo-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--primary-color);
}

.hero-seo-text h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.hero-seo-text p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.8;
}

.floating-element {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.18) 0%, transparent 65%);
    filter: blur(0px);
    z-index: 1;
    animation: float 12s ease-in-out infinite;
}

.floating-element--one {
    top: -80px;
    right: -120px;
}

.floating-element--two {
    bottom: -120px;
    left: -80px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.6; }
    50% { transform: translate3d(20px, -30px, 0); opacity: 0.85; }
}

.features,
.sports,
.promotions,
.casino,
.auth,
.faq,
.download {
    position: relative;
    padding: 100px 0;
}

.features .section-heading,
.sports .section-heading,
.promotions .section-heading,
.casino .section-heading,
.auth .section-heading,
.download .section-heading,
.faq .section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.features-grid,
.promotions-grid,
.casino-grid,
.auth-grid,
.faq-grid,
.download-features,
.download-cards,
.download-benefits {
    display: grid;
    gap: 24px;
}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-bottom: 36px;
}

.info-card {
    background: rgba(18, 24, 52, 0.9);
    border: 1px solid rgba(0, 212, 255, 0.18);
    border-radius: 24px;
    padding: 28px 26px;
    box-shadow: 0 20px 55px rgba(0, 8, 40, 0.4);
    display: grid;
    gap: 14px;
}

.info-card h3,
.info-card p {
    margin: 0;
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 15px;
}

.info-icon {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 22px;
    margin-bottom: 36px;
}

.metric-card {
    border-radius: 22px;
    background: rgba(15, 20, 45, 0.85);
    border: 1px solid rgba(0, 212, 255, 0.18);
    padding: 26px 24px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0, 8, 35, 0.35);
}

.metric-value {
    display: block;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 6px;
}

.metric-label {
    color: var(--text-secondary);
    font-size: 14px;
    letter-spacing: 0.3px;
}

.seo-text {
    margin-top: 50px;
    background: rgba(13, 18, 40, 0.9);
    border-radius: 28px;
    border: 1px solid rgba(0, 212, 255, 0.18);
    padding: 40px;
    box-shadow: 0 28px 65px rgba(0, 8, 40, 0.45);
    display: grid;
    gap: 20px;
}

.seo-text h2 {
    margin: 0;
    font-size: 26px;
}

.seo-text p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.8;
}

.seo-list {
    margin: 10px 0 0;
    padding-left: 20px;
    display: grid;
    gap: 8px;
}

.seo-list li {
    color: var(--text-secondary);
    line-height: 1.7;
}

.seo-highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 20px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 18px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.seo-highlight span[data-lucide] {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.seo-table {
    display: block;
    overflow-x: auto;
    margin: 24px 0;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.18);
    background: rgba(12, 17, 36, 0.8);
    -webkit-overflow-scrolling: touch;
}

.seo-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.seo-table th,
.seo-table td {
    padding: 16px 18px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.08);
}

.seo-table th {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
}

.seo-table tbody tr:hover {
    background: rgba(0, 212, 255, 0.08);
}

.sports-grid,
.promotions-grid,
.casino-grid,
.download-cards {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.sport-item,
.promotion-card,
.casino-item,
.download-card {
    background: rgba(18, 24, 52, 0.9);
    border: 1px solid rgba(0, 212, 255, 0.16);
    border-radius: 24px;
    padding: 26px 24px;
    display: grid;
    gap: 14px;
    text-align: left;
    box-shadow: 0 20px 55px rgba(0, 8, 40, 0.4);
}

.sport-icon,
.promotion-icon,
.casino-icon,
.download-card-header span[data-lucide] {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
}

.sport-item h3,
.promotion-card h3,
.casino-item h3,
.download-card h3 {
    margin: 0;
    font-size: 18px;
}

.sport-item p,
.promotion-card p,
.casino-item p,
.download-card p {
    margin: 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.promotion-amount {
    font-size: 26px;
    font-weight: 800;
}

.promo-special {
    margin-top: 32px;
    padding: 32px;
    border-radius: 26px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(123, 47, 247, 0.1) 100%);
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    align-items: center;
}

.promo-special h3 {
    margin: 0 0 10px;
}

.promo-special p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

.promo-special-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.casino-grid {
    margin-bottom: 36px;
}

.auth-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

.auth-card {
    background: rgba(17, 23, 48, 0.92);
    border: 1px solid rgba(0, 212, 255, 0.18);
    border-radius: 24px;
    padding: 28px 26px;
    display: grid;
    gap: 18px;
    box-shadow: 0 20px 55px rgba(0, 8, 35, 0.38);
}

.auth-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.auth-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.instruction-steps {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 10px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.auth-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-bottom: 36px;
}

.auth-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(12, 18, 40, 0.9);
    border: 1px solid rgba(0, 212, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
}

.auth-benefit span[data-lucide] {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
}

.faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-bottom: 30px;
}

.faq-item {
    background: rgba(18, 24, 52, 0.9);
    border: 1px solid rgba(0, 212, 255, 0.16);
    border-radius: 22px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.active {
    border-color: rgba(0, 212, 255, 0.35);
    box-shadow: 0 18px 45px rgba(0, 8, 35, 0.35);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.faq-question span[data-lucide] {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question span[data-lucide] {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 22px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-contact {
    margin-top: 20px;
    padding: 28px 30px;
    border-radius: 24px;
    background: rgba(12, 18, 40, 0.92);
    border: 1px solid rgba(0, 212, 255, 0.18);
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: space-between;
    align-items: center;
}

.faq-contact h3 {
    margin: 0 0 8px;
}

.faq-contact p {
    margin: 0;
    color: var(--text-secondary);
}

.faq-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.download-features {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-bottom: 28px;
}

.download-feature,
.download-benefit {
    padding: 20px 22px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.16);
    background: rgba(18, 24, 52, 0.9);
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.download-feature span[data-lucide],
.download-benefit span[data-lucide] {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.download-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.download-card button {
    justify-self: flex-start;
}

.installation-instructions {
    margin: 36px 0;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(0, 212, 255, 0.18);
    background: rgba(13, 18, 40, 0.92);
}

.installation-instructions h3 {
    margin: 0 0 16px;
}

.installation-instructions ol {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 10px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(0, 212, 255, 0.25);
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.25);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.35);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(0, 212, 255, 0.15);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.25);
}

.scroll-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.9) 0%, rgba(123, 47, 247, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 14px 35px rgba(0, 212, 255, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.scroll-to-top span[data-lucide] {
    width: 22px;
    height: 22px;
}

.scroll-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.on-scroll {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .hero {
        padding: 130px 0 80px;
    }

    .hero-layout {
        gap: 36px;
    }

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

    .section-heading {
        margin-bottom: 36px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 70px;
    }

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

    .hero-sidebar {
        max-width: none;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .hero-seo-text {
        flex-direction: column;
        padding: 24px;
    }

    .seo-text {
        padding: 28px;
    }

    .promo-special,
    .faq-contact {
        flex-direction: column;
        align-items: flex-start;
    }

    .download-card {
        text-align: left;
    }
}

@media (max-width: 560px) {
    .hero {
        padding: 110px 0 60px;
    }

    .hero h1 {
        font-size: 32px;
    }

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

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

    .seo-table table {
        min-width: 520px;
    }

    .scroll-to-top {
        right: 18px;
        bottom: 18px;
    }
}

.sport-item svg[data-lucide],
.promotion-card svg[data-lucide],
.casino-item svg[data-lucide],
.download-card-header svg[data-lucide],
.download-feature svg[data-lucide],
.download-benefit svg[data-lucide],
.hero-feature-card svg[data-lucide],
.info-card svg[data-lucide],
.auth-benefit svg[data-lucide],
.section-badge svg[data-lucide],
.seo-highlight svg[data-lucide],
.hero-seo-text svg[data-lucide] {
    width: 28px;
    height: 28px;
    stroke-width: 1.6;
}

.hero-feature-card svg[data-lucide],
.sport-item svg[data-lucide],
.promotion-card svg[data-lucide],
.casino-item svg[data-lucide],
.download-card-header svg[data-lucide],
.download-feature svg[data-lucide],
.download-benefit svg[data-lucide],
.auth-benefit svg[data-lucide] {
    color: var(--primary-color);
}

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

.game-card {
    background: rgba(18, 24, 52, 0.92);
    border: 1px solid rgba(0, 212, 255, 0.18);
    border-radius: 24px;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 20px 55px rgba(0, 8, 40, 0.4);
}

.game-card-icon {
    font-size: 42px;
    line-height: 1;
}

.game-card h3 {
    margin: 0;
}

.game-card p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

.game-features {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 6px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.game-card .btn {
    align-self: flex-start;
}

.live-casino-section {
    padding: 0;
    background: transparent;
}

.live-casino-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 48px 36px;
    text-align: center;
    border-radius: 28px;
    border: 1px solid rgba(0, 212, 255, 0.25);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12) 0%, rgba(123, 47, 247, 0.12) 100%);
    box-shadow: 0 25px 60px rgba(0, 8, 35, 0.35);
    display: grid;
    gap: 20px;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 26px;
    border-radius: 999px;
    background: rgba(255, 0, 102, 0.18);
    border: 1px solid rgba(255, 0, 102, 0.35);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-size: 13px;
}

.providers-section .providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.provider-card {
    background: rgba(18, 24, 52, 0.9);
    border: 1px solid rgba(0, 212, 255, 0.18);
    border-radius: 22px;
    padding: 24px 22px;
    display: grid;
    gap: 10px;
    box-shadow: 0 18px 48px rgba(0, 8, 35, 0.35);
}

.provider-card h3 {
    margin: 0;
}

.provider-card p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.bonus-item {
    background: rgba(18, 24, 52, 0.9);
    border: 1px solid rgba(0, 212, 255, 0.18);
    border-radius: 22px;
    padding: 26px 24px;
    display: grid;
    gap: 12px;
    text-align: left;
    box-shadow: 0 18px 48px rgba(0, 8, 35, 0.35);
}

.bonus-icon {
    font-size: 32px;
    line-height: 1;
}

.bonus-item h3 {
    margin: 0;
}

.bonus-item p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.feature-item {
    background: rgba(18, 24, 52, 0.92);
    border: 1px solid rgba(0, 212, 255, 0.18);
    border-radius: 22px;
    padding: 24px 22px;
    display: grid;
    gap: 10px;
    text-align: left;
    box-shadow: 0 18px 48px rgba(0, 8, 35, 0.35);
}

.feature-item-icon {
    font-size: 28px;
}

.feature-item h3 {
    margin: 0;
}

.feature-item p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

.related-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.related-link {
    background: rgba(18, 24, 52, 0.92);
    border: 1px solid rgba(0, 212, 255, 0.18);
    border-radius: 22px;
    padding: 24px 22px;
    display: grid;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 18px 48px rgba(0, 8, 35, 0.35);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.related-link:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.32);
}

.related-icon {
    font-size: 28px;
}

.related-link h3 {
    margin: 0;
}

.related-link p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .live-casino-card {
        padding: 36px 24px;
    }

    .seo-highlight {
        flex-direction: column;
    }

    .seo-table {
        border-radius: 16px;
    }

    .seo-table table {
        min-width: 640px;
    }

    .seo-table th,
    .seo-table td {
        padding: 12px 14px;
        font-size: 13px;
        white-space: normal;
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .seo-highlight {
        padding: 16px;
    }

    .seo-table th,
    .seo-table td {
        padding: 10px 12px;
        font-size: 12px;
    }
}

.badge-soon::after {
    content: 'Em breve';
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 8px;
}

@media (max-width: 1024px) {
    .badge-soon::after {
        content: 'Em breve';
        top: -6px;
        right: -6px;
        font-size: 9px;
        padding: 2px 5px;
    }
}

