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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #ffffff;
    opacity: 1;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
    gap: 0.5rem;
}

.btn:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    color: white;
    padding: 0.5rem 1rem;
    height: 2.5rem;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translate3d(0, -1px, 0);
}

.btn-outline {
    border: 1px solid #e2e8f0;
    background: transparent;
    color: #64748b;
    padding: 0.5rem 1rem;
    height: 2.5rem;
}

.btn-outline:hover {
    background: #f1f5f9;
    color: #334155;
}

.btn-lg {
    padding: 0.75rem 2rem;
    height: 3rem;
    font-size: 1rem;
}

.btn-icon {
    width: 1rem;
    height: 1rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1100;
    width: 100%;
    border-bottom: 1px solid #e2e8f0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.nav-link:hover {
    color: #3b82f6;
}

.header-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .header-actions {
        display: flex;
    }
}

/* Desktop Menu Button */
.desktop-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #1e293b;
    transition: all 0.3s ease;
    border-radius: 0.375rem;
}

.desktop-menu-btn:hover {
    background: transparent;
    color: #3b82f6;
}

.desktop-menu-btn:active {
    background: transparent;
    transform: scale(0.95);
}

.desktop-menu-btn:focus {
    outline: none;
}

@media (min-width: 768px) {
    .desktop-menu-btn {
        display: flex;
    }
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.desktop-nav.open {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.desktop-nav-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.nav-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-section-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.desktop-nav-link {
    display: block;
    padding: 0.5rem 0;
    color: #64748b;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border-radius: 0.375rem;
}

.desktop-nav-link:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
    padding-left: 0.5rem;
}

.desktop-nav-link:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    background: rgba(59, 130, 246, 0.05);
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #1e293b;
    transition: all 0.3s ease;
    border-radius: 0.375rem;
    z-index: 1003;
    position: relative;
    flex-shrink: 0;
}

.mobile-menu-btn:hover {
    background: transparent;
    color: #3b82f6;
}

.mobile-menu-btn:active {
    background: transparent;
    transform: scale(0.95);
}

/* Ensure mobile menu button is visible on mobile */
@media (max-width: 767px) {
    .mobile-menu-btn {
        display: flex !important;
    }
    
    .desktop-menu-btn {
        display: none !important;
    }
    
    .header-actions {
        display: flex !important;
        gap: 0.5rem;
    }
    
    .header-actions .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
        border-radius: 0.375rem;
    }
    
    .header-content {
        justify-content: space-between;
        gap: 0.5rem;
    }
    
    .logo {
        flex-shrink: 0;
    }
    
    .logo img {
        width: 80px !important;
    }
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none !important;
    }
    
    .desktop-menu-btn {
        display: flex !important;
    }
    
    .header-actions {
        display: flex !important;
    }
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.mobile-nav.open {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav .container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Scrollbar styles for mobile nav */
.mobile-nav::-webkit-scrollbar {
    width: 6px;
}

.mobile-nav::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.mobile-nav::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.mobile-nav::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

@media (min-width: 768px) {
    .mobile-nav,
    .mobile-nav-overlay {
        display: none !important;
        visibility: hidden !important;
    }
}

.mobile-nav-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem 0 3rem 0;
}

.mobile-nav .nav-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav .nav-section-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-nav-link {
    display: block;
    padding: 0.5rem 0;
    color: #64748b;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border-radius: 0.375rem;
}

.mobile-nav-link:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
    padding-left: 0.5rem;
}

.mobile-nav-link:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    background: rgba(59, 130, 246, 0.05);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem 0;
    margin-top: 0.5rem;
    border-top: 1px solid #e2e8f0;
    grid-column: 1 / -1;
}

.mobile-nav-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1rem;
    font-weight: 600;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 480px) {
    .mobile-nav-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mobile-nav-actions .btn {
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }
    
    .header-actions .btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8125rem;
    }
    
    .logo img {
        width: 70px !important;
    }
    
    .header-content {
        gap: 0.375rem;
    }
}

@media (max-width: 360px) {
    .mobile-nav-actions .btn {
        padding: 0.625rem 0.375rem;
        font-size: 0.8125rem;
    }
    
    .mobile-nav-actions {
        gap: 0.5rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2364748b' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    padding: 5rem 0;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: white;
    backdrop-filter: blur(10px);
    border: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.badge-icon {
    width: 0.75rem;
    height: 0.75rem;
    color: #3b82f6;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 32rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 2rem;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    background: white;
    backdrop-filter: blur(10px);
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 2rem 1.5rem;
    text-align: center;
}

@media (min-width: 640px) {
    .feature-card {
        padding: 2.5rem 2rem;
    }
}

@media (min-width: 1024px) {
    .feature-card {
        padding: 3rem 2rem;
    }
}

.feature-card:hover {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

.feature-card-content {
    padding: 0;
    text-align: center;
}

@media (min-width: 640px) {
    .feature-card-content {
        padding: 0;
    }
}

@media (min-width: 1024px) {
    .feature-card-content {
        padding: 0;
    }
}

.feature-card > .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

@media (min-width: 640px) {
    .feature-card > .feature-icon {
        font-size: 3rem;
    }
}

.feature-card-content .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .feature-title {
        font-size: 1.25rem;
    }
}

.feature-description {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .feature-description {
        font-size: 1rem;
    }
}

.feature-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: transparent;
}

.feature-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.trophy-icon {
    color: #10b981;
}

.zap-icon {
    color: #3b82f6;
}

.shield-icon {
    color: #8b5cf6;
}

/* Hero section feature descriptions */
.hero .feature-description {
    color: #64748b;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 6s ease-in-out infinite;
}

.floating-1 {
    top: 5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(59, 130, 246, 0.08);
}

.floating-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 10rem;
    height: 10rem;
    background: rgba(99, 102, 241, 0.06);
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #3b82f6;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* First section title without top margin */
.section:first-of-type .section-title {
    margin-top: 0;
}

/* Centered section title */
.section-title-centered {
    text-align: center;
    margin-bottom: 2rem;
}

/* Promotions section title - dark color */
.promotions .section-title {
    color: #0f172a;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-description {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 32rem;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.feature-item {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-item-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-item-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.green-icon {
    color: #10b981;
}

.purple-icon {
    color: #8b5cf6;
}

.blue-icon {
    color: #3b82f6;
}

.orange-icon {
    color: #f97316;
}

.pink-icon {
    color: #ec4899;
}

.red-icon {
    color: #ef4444;
}

.feature-item-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.feature-item-description {
    color: #64748b;
}

/* Stats Section */
.stats-section {
    background: white;
    border-radius: 0;
    padding: 3rem 1rem;
    overflow: hidden;
}

@media (min-width: 640px) {
    .stats-section {
        padding: 4rem 2rem;
    }
}

@media (min-width: 1024px) {
    .stats-section {
        padding: 5rem 3rem;
    }
}

.stats-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .stats-header {
        margin-bottom: 4rem;
    }
}

.stats-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
}

@media (min-width: 640px) {
    .stats-title {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .stats-title {
        font-size: 2.25rem;
    }
}

.stats-description {
    color: #64748b;
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .stats-description {
        font-size: 1rem;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 5rem;
    }
}

.stat-card {
    text-align: center;
    padding: 0;
    min-width: 0;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-card-icon {
    background: #f1f5f9;
    transform: scale(1.05);
}

@media (min-width: 640px) {
    .stat-card-icon {
        width: 4rem;
        height: 4rem;
    }
}

.stat-icon {
    width: 1.75rem;
    height: 1.75rem;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    color: #2563eb;
}

@media (min-width: 640px) {
    .stat-icon {
        width: 2rem;
        height: 2rem;
    }
}

.stat-card-value {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    word-break: break-word;
    letter-spacing: -0.025em;
    line-height: 1;
}

@media (min-width: 640px) {
    .stat-card-value {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .stat-card-value {
        font-size: 2.5rem;
    }
}

.stat-card-label {
    color: #64748b;
    font-size: 0.875rem;
    word-break: break-word;
    font-weight: 500;
    line-height: 1.5;
}

@media (min-width: 640px) {
    .stat-card-label {
        font-size: 0.9375rem;
    }
}

/* Casino Section */
.casino {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.casino::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2394a3b8' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.casino-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .casino-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .casino-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.casino-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.casino-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.casino-item:hover {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.casino-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
}

.casino-item-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.casino-item-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.casino-item-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
}

.casino-item-games {
    color: #64748b;
    font-size: 0.875rem;
}

.casino-item-content {
    padding: 0 1.5rem 1.5rem;
}

.casino-item-description {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.casino-item-content .btn {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    border: 1px solid transparent;
    color: white;
}

.casino-item-content .btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Casino section title - white color */
.casino .section-title {
    color: #0f172a;
}

/* Sports Section */
.sports {
    padding: 5rem 0;
    background: white;
}

.sports-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sports-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sport-item {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sport-item:hover {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.sport-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
}

.sport-item-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sport-item-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.sky-icon {
    color: #0ea5e9;
}

.yellow-icon {
    color: #eab308;
}

/* Casino icon colors */
.casino-item-icon.green-icon {
    color: #10b981;
}

.casino-item-icon.blue-icon {
    color: #3b82f6;
}

.casino-item-icon.purple-icon {
    color: #8b5cf6;
}

.casino-item-icon.orange-icon {
    color: #f97316;
}

.casino-item-icon.red-icon {
    color: #ef4444;
}

.casino-item-icon.yellow-icon {
    color: #eab308;
}

.sport-item-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
}

.sport-item-events {
    color: #64748b;
    font-size: 0.875rem;
}

.sport-item-content {
    padding: 0 1.5rem 1.5rem;
}

.sport-item-description {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}


/* Promotions Section */
.promotions {
    padding: 5rem 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.promotions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .promotions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .promotions-grid {
        grid-template-columns: repeat(4, 1fr);
        align-items: stretch;
    }
    
    .promotion-card {
        height: 100%;
    }
}

.promotion-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.promotion-card:hover {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.15);
}

.promotion-card-content {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.promotion-icon-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.promotion-icon {
    width: 2rem;
    height: 2rem;
    color: white;
}

.green-gradient {
    background: #10b981;
}

.blue-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.purple-gradient {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.orange-gradient {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.promotion-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.promotion-description {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.promotion-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.promotion-card-content .btn {
    margin-top: auto;
}

.special-offer {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.special-offer.glass-effect {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.special-offer-content {
    padding: 2rem;
    text-align: center;
}

.special-offer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.clock-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #fbbf24;
}

.limited-badge {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.special-offer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.special-offer-description {
    color: #475569;
    margin-bottom: 1.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.special-offer-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .special-offer-actions {
        flex-direction: row;
    }
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-description {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.2s ease-in-out;
}

.social-link:hover {
    color: white;
}

.social-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease-in-out;
}

.footer-link:hover {
    color: white;
}

.support-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #94a3b8;
}

.support-icon {
    width: 1rem;
    height: 1rem;
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    width: fit-content;
}

.green-badge {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.blue-badge {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
    }
}

.footer-copyright {
    font-size: 0.875rem;
    color: #94a3b8;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease-in-out;
}

.footer-bottom-link:hover {
    color: white;
}

/* Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Card Hover Effect */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.w-full {
    width: 100%;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.hidden {
    display: none;
}

@media (min-width: 768px) {
    .md\\:flex {
        display: flex;
    }
    
    .md\\:hidden {
        display: none;
    }
}

@media (min-width: 1024px) {
    .lg\\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lg\\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .lg\\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mirror Section */
.mirror {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.mirror-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .mirror-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .mirror-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mirror-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mirror-card:hover {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mirror-card-content {
    padding: 1.5rem;
    text-align: center;
}

.mirror-icon-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.mirror-icon {
    width: 2rem;
    height: 2rem;
    color: white;
}

.mirror-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.mirror-description {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.mirror-url {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: #3b82f6;
    background: #f1f5f9;
    padding: 0.5rem;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
}

.mirror-info {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mirror-info-content {
    text-align: center;
}

.mirror-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2rem;
}

.mirror-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .mirror-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mirror-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.mirror-info-icon {
    width: 2rem;
    height: 2rem;
    color: #3b82f6;
    flex-shrink: 0;
}

.mirror-info-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.mirror-info-text p {
    font-size: 0.875rem;
    color: #64748b;
}

/* Auth Section */
.auth {
    padding: 5rem 0;
    background: white;
}

.auth-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .auth-content {
        grid-template-columns: 1fr 1fr;
    }
}

.auth-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.auth-card-header {
    padding: 1.5rem 1.5rem 0;
    text-align: center;
}

.auth-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.auth-card-description {
    color: #64748b;
    font-size: 0.875rem;
}

.auth-card-content {
    padding: 1.5rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.form-input {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.2s ease-in-out;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-input {
    width: 1rem;
    height: 1rem;
    accent-color: #3b82f6;
}

.checkbox-text {
    font-size: 0.875rem;
    color: #374151;
}

.forgot-password {
    font-size: 0.875rem;
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.forgot-password:hover {
    color: #2563eb;
}

.link {
    color: #3b82f6;
    text-decoration: none;
}

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

.auth-benefits {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 2rem;
}

.auth-benefits-content {
    text-align: center;
}

.auth-benefits-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2rem;
}

.auth-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .auth-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .auth-benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.auth-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.auth-benefit-icon {
    width: 2rem;
    height: 2rem;
    color: #3b82f6;
    flex-shrink: 0;
}

.auth-benefit-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.auth-benefit-text p {
    font-size: 0.875rem;
    color: #64748b;
}

/* Instruction Steps */
.instruction-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.instruction-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.step-description {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
}

.auth-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.register-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.benefit-icon {
    width: 1rem;
    height: 1rem;
    color: #10b981;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-content {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
    position: relative;
    z-index: 1;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.faq-question:active {
    background: #e2e8f0;
    transform: scale3d(0.98, 0.98, 1);
}

.faq-question:focus {
    outline: none;
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
    padding-right: 1rem;
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #3b82f6;
    transition: transform 0.3s ease-in-out;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-contact {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.faq-contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.faq-contact-description {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.faq-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .faq-contact-actions {
        flex-direction: row;
    }
}

/* Download Section */
.download {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.download-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.download-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .download-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .download-features {
        grid-template-columns: repeat(4, 1fr);
    }
}

.download-feature {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.download-feature:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #3b82f6;
}



.download-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .download-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .download-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.download-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.download-card:hover {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.download-card-content {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.download-icon-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.download-icon {
    width: 2rem;
    height: 2rem;
}

.android-icon {
    color: #10b981;
}

.ios-icon {
    color: #3b82f6;
}

.windows-icon {
    color: #8b5cf6;
}

.download-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.download-description {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.download-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.download-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.info-icon {
    width: 1rem;
    height: 1rem;
    color: #10b981;
}

.download-btn {
    margin-top: auto;
}

/* Download Section Styles */
.download-section {
    background: white;
    border-radius: 0;
    padding: 3rem 2rem;
    text-align: center;
    margin: 0;
}

@media (min-width: 640px) {
    .download-section {
        padding: 4rem 2rem;
    }
}

.download-section .section-title {
    color: #0f172a;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.download-section .section-description {
    color: #64748b;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

.download-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .download-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.download-btn-android {
    background: #10b981;
    color: white;
}

.download-btn-android:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.download-btn-ios {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.download-btn-ios:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.4);
}

.download-btn-windows {
    background: #0ea5e9;
    color: white;
}

.download-btn-windows:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(14, 165, 233, 0.3);
}

.download-btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    border: none;
}

.download-btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.download-btn-secondary {
    background: #f8fafc;
    color: #3b82f6;
    border: 2px solid #e2e8f0;
}

.download-btn-secondary:hover {
    background: white;
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.15);
}

/* Installation Section */
.installation-section {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.installation-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .installation-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .installation-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.installation-instructions {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.instructions-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2rem;
}

.instructions-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .instructions-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .instructions-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.download-benefits {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.benefits-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.benefit-icon {
    width: 2rem;
    height: 2rem;
    color: #3b82f6;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.benefit-text p {
    font-size: 0.875rem;
    color: #64748b;
}

/* SEO Text */
.seo-text {
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-text p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #64748b;
    text-align: justify;
    padding: 0 1rem;
}

/* Promotions SEO Text */
.promotions .seo-text {
    background: white;
    border-top: 1px solid #e2e8f0;
    padding: 3rem 0;
}

.promotions .seo-text p {
    color: #64748b;
}

/* Casino SEO Text */
.casino .seo-text {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 3rem 0;
}

.casino .seo-text p {
    color: #64748b;
}


/* Footer */
.footer {
    background: #0f172a;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-description {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.2s ease-in-out;
}

.social-link:hover {
    color: white;
}

.social-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease-in-out;
}

.footer-link:hover {
    color: white;
}

.support-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #94a3b8;
}

.support-icon {
    width: 1rem;
    height: 1rem;
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    width: fit-content;
}

.green-badge {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.blue-badge {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
    }
}

.footer-copyright {
    font-size: 0.875rem;
    color: #94a3b8;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease-in-out;
}

.footer-bottom-link:hover {
    color: white;
}

/* Improved SEO Text */
.seo-text {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.seo-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.seo-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.seo-content h2:first-child {
    margin-top: 0;
}

.seo-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 2rem 0 1rem 0;
    border-left: 4px solid #3b82f6;
    padding-left: 1rem;
}

.seo-content p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #64748b;
    text-align: justify;
    margin-bottom: 1rem;
}

.seo-content a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.seo-content a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.seo-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.seo-list li {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #64748b;
}

.seo-table-container {
    margin: 2rem 0;
    overflow-x: auto;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.seo-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 0.875rem;
}

.seo-table th {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.seo-table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    color: #64748b;
}

.seo-table tr:hover {
    background: #f8fafc;
}

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

.seo-highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 2rem 0;
}

.seo-highlight h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.seo-highlight p {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .seo-content {
        padding: 0 2rem;
    }
    
    .seo-content h2 {
        font-size: 2rem;
    }
    
    .seo-content h3 {
        font-size: 1.5rem;
    }
    
    .seo-content p {
        font-size: 1rem;
    }
    
    .seo-table th,
    .seo-table td {
        font-size: 0.875rem;
    }
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    z-index: 9999;
    transition: width 0.3s ease;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.back-to-top i {
    width: 1.25rem;
    height: 1.25rem;
}


/* Related Links Section */
.related-links {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.related-links-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 3rem;
}

.related-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .related-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .related-links-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.related-link {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-decoration: none;
    color: #1e293b;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.related-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.related-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.related-link-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.related-link h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.related-link p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Casino Page Specific Styles */
.casino-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.casino-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.casino-logo img {
    width: 100px;
    height: auto;
}

.casino-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
}

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

.casino-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.casino-section {
    padding: 4rem 0;
}

.casino-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.casino-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.casino-section-description {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.game-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.game-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #3b82f6;
    font-size: 1.5rem;
}

.game-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
    text-align: center;
}

.game-description {
    color: #64748b;
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 1rem;
}

.game-features {
    list-style: none;
    margin: 1rem 0;
}

.game-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
    padding: 0.25rem 0;
}

.game-features li::before {
    content: '🎮';
    font-size: 0.75rem;
}

.live-casino-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: #0f172a;
    border-radius: 1rem;
    padding: 3rem;
    margin: 3rem 0;
    border: 1px solid #e2e8f0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.live-casino-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ef4444;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.live-badge::before {
    content: '🔴';
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.providers-section {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 2rem;
    margin: 3rem 0;
}

.providers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .providers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.provider-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.provider-name {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.provider-games {
    font-size: 0.875rem;
    color: #64748b;
}

.bonus-section {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    margin: 3rem 0;
    border: 1px solid #e2e8f0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bonus-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 0.75rem;
}

.bonus-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.bonus-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.bonus-content p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
}

.features-section {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 2rem;
    margin: 3rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
}

/* Sports Betting Page Specific Styles */
.sports-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sports-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sport-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.sport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.sport-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.sport-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #3b82f6;
    font-size: 1.5rem;
}

.sport-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
    text-align: center;
}

.sport-description {
    color: #64748b;
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 1rem;
}

.sport-leagues {
    list-style: none;
    margin: 1rem 0;
}

.sport-leagues li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
    padding: 0.25rem 0;
}

.sport-leagues li::before {
    content: '🏆';
    font-size: 0.75rem;
}

.odds-section {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 1rem;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
}

.odds-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .odds-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.odds-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.odds-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.odds-value {
    font-size: 2rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.odds-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.markets-section {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    margin: 3rem 0;
    border: 1px solid #e2e8f0;
}

.markets-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .markets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.market-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.market-item:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.market-name {
    font-weight: 500;
    color: #0f172a;
}

.market-count {
    font-size: 0.875rem;
    color: #64748b;
}

/* Bonus Page Specific Styles */
.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bonus-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bonus-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.bonus-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #10b981;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.bonus-value {
    font-size: 2rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.bonus-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.bonus-description {
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.bonus-features {
    list-style: none;
    margin: 1rem 0;
}

.bonus-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.bonus-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
}

.promo-section {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border-radius: 1rem;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
}

.promo-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.promo-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        margin: 3rem 0;
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 5rem;
    }
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.terms-section {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    margin: 3rem 0;
    border: 1px solid #e2e8f0;
}

.terms-list {
    list-style: none;
    margin: 1rem 0;
}

.terms-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: #64748b;
}

.terms-list li::before {
    content: '•';
    color: #3b82f6;
    font-weight: 700;
    margin-top: 0.125rem;
}

/* Promo Code Page Specific Styles */
/* Requirements Section */
.requirements-section {
    background: white;
    border-radius: 0;
    padding: 3rem 1rem;
}

@media (min-width: 640px) {
    .requirements-section {
        padding: 4rem 2rem;
    }
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .requirements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .requirements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.requirement-item:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.requirement-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.requirement-text {
    flex: 1;
    color: #64748b;
    line-height: 1.6;
}

.requirement-text strong {
    color: #0f172a;
    display: block;
    margin-bottom: 0.25rem;
}

/* Steps Section */
.steps-section {
    background: white;
    border-radius: 0;
    padding: 3rem 1rem;
    margin: 0;
}

@media (min-width: 640px) {
    .steps-section {
        padding: 4rem 2rem;
    }
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .step-item {
        padding: 2.5rem;
    }
}

.step-number {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .step-title {
        font-size: 1.25rem;
    }
}

.step-description {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
}

/* Promo Code Page Additional Styles */
.code-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .code-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.code-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.code-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.code-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #10b981;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.code-value {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    background: #f1f5f9;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-align: center;
    margin: 1rem 0;
}

.code-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.code-description {
    color: #64748b;
    margin-bottom: 1rem;
}

.code-benefits {
    list-style: none;
    margin: 1rem 0;
}

.code-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.code-benefits li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
}

.how-to-section {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 2rem;
    margin: 3rem 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .related-links {
        padding: 2rem 0;
    }
    
    .related-links-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .related-link {
        padding: 1.5rem;
    }
    
    /* Mobile menu improvements - базовые стили применяются автоматически */
}

/* Sports Page Elements */
.live-odds-banner {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 2rem;
    overflow: hidden;
    position: relative;
}

.live-odds-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s linear infinite;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    white-space: nowrap;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.odds-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    flex: 1;
}

.odds-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
}

.odds-item .match {
    font-size: 0.875rem;
}

.odds-item .odds {
    font-weight: 700;
    font-size: 1.125rem;
    color: #fbbf24;
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

/* Casino Page Elements */
.jackpot-banner {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.jackpot-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 90,90 10,90" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 15s linear infinite;
}

.jackpot-info {
    flex: 1;
}

.jackpot-label {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.jackpot-amount {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.jackpot-timer {
    font-size: 0.875rem;
    opacity: 0.9;
}

.jackpot-visual {
    position: relative;
}

.coin-stack {
    position: relative;
    width: 60px;
    height: 60px;
}

.coin {
    position: absolute;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.coin-1 { top: 0; left: 0; animation-delay: 0s; }
.coin-2 { top: 10px; left: 10px; animation-delay: 0.3s; }
.coin-3 { top: 20px; left: 20px; animation-delay: 0.6s; }

.live-casino-status {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.live-status-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.status-icon {
    font-size: 1.5rem;
}

.status-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
}

.status-count {
    font-size: 0.75rem;
    color: #64748b;
}

.game-categories-quick {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.category-quick {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: 0.75rem;
    text-decoration: none;
    color: #1e293b;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.category-quick:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.category-icon {
    font-size: 1.5rem;
}

.category-quick span {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Bonus Page Elements */
.bonus-counter {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.counter-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.counter-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.counter-number {
    font-size: 2rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.active-promotions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.promotion-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.promotion-badge.hot {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.promotion-badge.new {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.promotion-badge.vip {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-title {
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-desc {
    font-size: 0.75rem;
    opacity: 0.9;
}

.bonus-timeline {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
    position: relative;
}

.bonus-timeline::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    right: 2rem;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.timeline-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    background: white;
    border: 3px solid #e2e8f0;
}

.timeline-item.completed .timeline-icon {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.timeline-item.active .timeline-icon {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

.timeline-item.pending .timeline-icon {
    background: #f59e0b;
    border-color: #f59e0b;
    color: white;
}

.timeline-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.timeline-desc {
    font-size: 0.75rem;
    color: #64748b;
}

/* Codes Page Elements */
.code-generator {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.generator-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.generator-header p {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.code-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.generated-code {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    padding: 0.75rem 1.5rem;
    background: #f8fafc;
    border-radius: 0.5rem;
    border: 2px solid #e2e8f0;
}

.copy-code-btn {
    padding: 0.75rem 1.5rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.copy-code-btn:hover {
    background: #1d4ed8;
}

.generate-btn {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.generate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.code-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-item.active {
    border-color: #3b82f6;
    background: #f8fafc;
}

.category-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.category-icon {
    font-size: 1.5rem;
}

.category-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
}

.category-count {
    font-size: 0.75rem;
    color: #64748b;
}

.code-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 0;
}

@media (min-width: 640px) {
    .stat-card {
        padding: 1.5rem;
    }
}

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

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

/* App Page Elements */
.app-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.app-stats .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.app-stats .stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.app-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.25rem;
}

.app-stats .stat-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

.platform-support {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.platform-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.platform-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.platform-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
}

.platform-version {
    font-size: 0.75rem;
    color: #64748b;
}

/* Platforms Grid and Cards */
.platforms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .platforms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.platform-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.15);
}

.platform-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 1rem 0 0.75rem;
}

.platform-description {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.platform-specs {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.platform-specs li {
    padding: 0.5rem 0;
    color: #64748b;
    font-size: 0.875rem;
    border-bottom: 1px solid #f1f5f9;
}

.platform-specs li:last-child {
    border-bottom: none;
}

.platform-specs li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 0.5rem;
}

.app-features-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.feature-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-preview:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.preview-icon {
    font-size: 1.5rem;
}

.preview-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.preview-desc {
    font-size: 0.75rem;
    color: #64748b;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Desktop Navigation Responsive */
@media (max-width: 1024px) {
    .desktop-nav-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .desktop-nav-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .nav-section {
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 1rem;
    }
    
    .nav-section:last-child {
        border-bottom: none;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .live-odds-banner {
        flex-direction: column;
        gap: 1rem;
    }
    
    .odds-scroll {
        width: 100%;
    }
    
    .quick-stats,
    .bonus-counter,
    .active-promotions,
    .code-categories,
    .code-stats,
    .app-stats,
    .platform-support,
    .app-features-preview {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .live-casino-status,
    .game-categories-quick {
        grid-template-columns: 1fr;
    }
    
    .bonus-timeline {
        flex-direction: column;
        gap: 2rem;
    }
    
    .bonus-timeline::before {
        display: none;
    }
    
    .jackpot-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .jackpot-amount {
        font-size: 2rem;
    }
}

@media (min-width: 768px) {
    .seo-text p {
        font-size: 1.125rem;
        padding: 2.5rem;
    }
}

/* Hero Features */
.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .hero-features {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hero-feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.hero-feature span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    text-align: center;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

/* Hero SEO Text */
.hero-seo-text {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    backdrop-filter: blur(10px);
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hero-seo-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #6366f1, #3b82f6);
}

.hero-seo-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-seo-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.seo-icon {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.hero-seo-text-content {
    flex: 1;
}

.hero-seo-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.hero-seo-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
    text-align: justify;
}

@media (min-width: 768px) {
    .hero-seo-text {
        margin-top: 4rem;
        padding: 2.5rem;
    }
    
    .hero-seo-content {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .hero-seo-icon {
        width: 56px;
        height: 56px;
    }
    
    .seo-icon {
        width: 28px;
        height: 28px;
    }
    
    .hero-seo-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-seo-description {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .hero-seo-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .hero-seo-icon {
        align-self: center;
    }
    
    .hero-seo-description {
        text-align: left;
    }
}

@media (min-width: 768px) {
    .seo-text p {
        font-size: 1rem;
        padding: 0 2rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
    will-change: transform, opacity;
    contain: layout style paint;
}

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

.scroll-to-top:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}

.scroll-to-top:active {
    transform: translateY(0);
}

.scroll-icon {
    width: 24px;
    height: 24px;
}

/* Performance optimizations for animations */
.feature-item, .sport-item, .promotion-card, .stat-card {
    will-change: transform, opacity;
    contain: layout style;
    backface-visibility: hidden;
    perspective: 1000px;
}

.floating-element {
    will-change: transform;
    contain: layout style paint;
    backface-visibility: hidden;
}

.gradient-text {
    will-change: background-position;
}

/* Optimize all hover elements */
.feature-item, .sport-item, .promotion-card, .stat-card, 
.mirror-card, .download-card, .feature-card, .btn-primary, 
.scroll-to-top, .faq-question {
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }
    
    .scroll-icon {
        width: 20px;
        height: 20px;
    }
    
    /* FAQ mobile improvements */
    .faq-question {
        padding: 1rem;
        min-height: 48px; /* Larger touch target for mobile */
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .faq-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem;
        font-size: 0.875rem;
    }
    
    /* Improve touch feedback */
    .faq-question:active {
        background: #e2e8f0;
        transform: scale3d(0.95, 0.95, 1);
    }
    
    /* Force touch events to work */
    .faq-question {
        pointer-events: auto;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    /* Ensure FAQ items are clickable */
    .faq-item {
        pointer-events: auto;
    }
}

/* Mobile Menu Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Icon sizes for menu buttons */
.desktop-menu-btn i,
.mobile-menu-btn i {
    width: 1.25rem;
    height: 1.25rem;
}

/* Ensure menu icons are visible */
.menu-icon,
.close-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Guide Section Styles */
.guide-section {
    padding: 2rem 0;
}

.guide-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .guide-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .guide-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.step-card .step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.step-card .step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.step-card .step-description {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
    padding: 0.25rem 0;
}

.step-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
    flex-shrink: 0;
}

/* Features Section Styles */
.features-section {
    padding: 2rem 0;
}

/* Interface Section Styles */
.interface-section {
    padding: 2rem 0;
}

.interface-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .interface-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .interface-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.interface-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.interface-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.interface-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 0.75rem;
}

.interface-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.interface-content p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Tips Section Styles */
.tips-section {
    padding: 2rem 0;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .tips-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
}

.tips-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.tips-list li::before {
    content: '💡';
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Section Styles */
.section {
    padding: 4rem 0;
    background: white;
}

.section:nth-child(even) {
    background: #f8fafc;
}

/* Live Section Styles */
.live-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 1rem;
    padding: 3rem;
    margin: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.live-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s linear infinite;
}

.live-section .section-title,
.live-section .section-description,
.live-section .btn,
.live-section .live-badge {
    position: relative;
    z-index: 1;
}

/* Odds Section Styles */
.odds-section {
    margin: 2rem 0;
}

.odds-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.odds-table thead {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.odds-table th {
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.odds-table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    color: #64748b;
}

.odds-table tr:hover {
    background: #f8fafc;
}

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

.odds-value {
    color: #3b82f6;
    font-weight: 600;
    transition: color 0.3s ease;
}

/* Sport Stats */
.sport-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.sport-stats .stat-item {
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.5rem;
}

.sport-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.25rem;
}

.sport-stats .stat-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

/* Registration Page Styles */
.registration-section {
    padding: 2rem 0;
}

.registration-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.method-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.method-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.method-description {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.method-time {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f1f5f9;
    color: #3b82f6;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Steps Section */
.steps-section {
    padding: 2rem 0;
}

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

.step-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.step-description {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 2rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.benefit-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Requirements Section */
.requirements-section {
    padding: 2rem 0;
}

.requirements-list {
    max-width: 800px;
    margin: 2rem auto 0;
    list-style: none;
    padding: 0;
}

.requirements-list li {
    padding: 1rem 1.5rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 3rem;
    transition: all 0.3s ease;
}

.requirements-list li:hover {
    border-color: #3b82f6;
    background: #f8fafc;
}

.requirements-list li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
}

/* Login Page Styles */
.login-section {
    padding: 2rem 0;
}

.login-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.method-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.method-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.method-btn .method-icon {
    font-size: 2rem;
}

/* Quick Access Section */
.quick-access {
    padding: 2rem 0;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.quick-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.quick-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.quick-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.quick-content p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

/* Security Section */
.security-section {
    padding: 2rem 0;
}

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

.security-item {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.security-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.security-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.security-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.security-content p {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

/* Troubleshooting Section */
.troubleshooting-section {
    padding: 2rem 0;
}

.troubleshooting-list {
    max-width: 800px;
    margin: 2rem auto 0;
    list-style: none;
    padding: 0;
}

.troubleshooting-list li {
    padding: 1rem 1.5rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 3rem;
    transition: all 0.3s ease;
}

.troubleshooting-list li:hover {
    border-color: #3b82f6;
    background: #f8fafc;
}

.troubleshooting-list li::before {
    content: '→';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
}

/* Verification Page Styles */
.step-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.step-card .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.step-card .step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.step-card .step-description {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Documents Section */
.documents-section {
    padding: 2rem 0;
}

.document-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.document-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.document-icon {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    color: #3b82f6;
}

.document-item strong {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
}

.document-item small {
    font-size: 0.875rem;
    color: #64748b;
}

/* Benefit Icon */
.benefit-icon {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    color: #3b82f6;
}

/* Verification Tips */
.verification-tips {
    padding: 2rem 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tip-item {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.tip-item strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.tip-item p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Warning Box */
.warning-box {
    background: #fef3c7;
    border: 2px solid #fbbf24;
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 2rem 0;
}

.warning-box strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 0.5rem;
}

.warning-box ul {
    margin: 0.5rem 0 0 1.5rem;
    color: #78350f;
}

.warning-box ul li {
    margin-bottom: 0.25rem;
}

/* Download Page Styles */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.platform-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.platform-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
}

.platform-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 1rem;
}

.platform-description {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 1.5rem;
}

.platform-specs {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.platform-specs li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 0.875rem;
}

.platform-specs li:last-child {
    border-bottom: none;
}

/* Download Section */
.download-section {
    padding: 2rem 0;
    text-align: center;
}

.download-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.download-btn-android:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.download-btn-ios:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
}

.download-btn-windows:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.download-btn span:first-child {
    font-size: 2rem;
}

/* Features Section */
.features-section {
    padding: 2rem 0;
}

.feature-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.feature-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

/* Installation Section */
.installation-section {
    padding: 2rem 0;
}

.installation-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Payment Methods Section */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.payment-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.payment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.payment-icon svg {
    width: 28px;
    height: 28px;
}

.payment-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.payment-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.payment-limits {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: 0.5rem;
    color: #3b82f6;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Limits Section */
.limits-section {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-radius: 1.5rem;
    padding: 3rem;
    margin-top: 2rem;
}

.limits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.limit-item {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.limit-item:hover {
    transform: translateY(-3px);
    border-color: #3b82f6;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.1);
}

.limit-label {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.limit-value {
    color: #1e293b;
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    border-radius: 1.5rem;
    padding: 3rem;
    margin-top: 2rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: #6366f1;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive adjustments for payment page */
@media (max-width: 768px) {
    .payment-grid,
    .limits-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .limits-section,
    .process-section {
        padding: 2rem 1.5rem;
    }
    
    .payment-card {
        padding: 1.5rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
}

/* Support/Customer Service Section */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.support-card .support-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.support-card .support-icon svg {
    width: 32px;
    height: 32px;
}

.support-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.support-description {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Contact Information Section */
.contact-info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-radius: 1.5rem;
    padding: 3rem;
    margin-top: 2rem;
}

.contact-item {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item:hover {
    transform: translateX(5px);
    border-color: #3b82f6;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.1);
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    color: #3b82f6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: 10px;
    padding: 10px;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    color: #1e293b;
    font-size: 1.125rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item small {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Responsive adjustments for support page */
@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info {
        padding: 2rem 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }
    
    .contact-item:hover {
        transform: translateY(-3px);
    }
    
    .support-card {
        padding: 1.5rem;
    }
}
.stats-section {
    margin-top: 40px;
}

/* Logo link styles for footer */
.footer-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.footer-logo a:hover {
    opacity: 0.8;
}