* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --dark-bg: #071322;
    --darker-bg: #050a14;
    --card-bg: #0f1a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --gradient: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --success-color: #4caf50;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: rgb(7, 19, 34);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    padding-bottom: 100px;
}

section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Top Scrolling Banner */
.top-banner {
    background: rgba(15, 26, 42, 0.95);
    border-top: 1px solid rgba(247, 147, 30, 0.3);
    border-bottom: 1px solid rgba(247, 147, 30, 0.2);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    z-index: 999;
    margin-top: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.banner-scroll {
    display: flex;
    animation: scroll 25s linear infinite;
    white-space: nowrap;
    width: max-content;
    will-change: transform;
}

.banner-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 30px;
    color: #f7931e;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.banner-item i {
    font-size: 18px;
    color: #f7931e;
    filter: drop-shadow(0 0 3px rgba(247, 147, 30, 0.5));
}

.separator {
    margin-left: 10px;
    color: #f7931e;
    font-size: 12px;
    font-weight: bold;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* Header */
.header {
    position: sticky;
    top: 0;
    background: rgba(7, 19, 34, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo img,
.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #f7931e;
    background: rgba(255, 107, 53, 0.1);
    position: relative;
}

.logo-circle {
    font-size: 20px;
    font-weight: 800;
    color: #f7931e;
    line-height: 1;
    margin-top: 8px;
}

.logo-matka {
    font-size: 10px;
    font-weight: 700;
    color: #f7931e;
    line-height: 1;
    margin-top: 2px;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    color: #f7931e;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(247, 147, 30, 0.3);
}

.logo-text p {
    font-size: 10px;
    color: #f7931e;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    font-weight: 500;
}

.logo-text p i {
    font-size: 10px;
    color: #f7931e;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-menu a:hover::after {
    width: 100%;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(15, 41, 72, 0.8);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    font-size: 14px;
    color: var(--text-primary);
    transition: all 0.3s;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
}

/* Hero Section */
.hero {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, rgb(7, 19, 34) 0%, rgb(5, 10, 20) 100%);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(13, 24, 41, 0.8);
    border: 1px solid rgba(247, 147, 30, 0.3);
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 20px;
    color: #f7931e;
    font-weight: 600;
}

.trust-badge i {
    color: #f7931e;
    font-size: 14px;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    margin: 0 0 15px;
    color: #f7931e;
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(247, 147, 30, 0.6), 0 0 40px rgba(247, 147, 30, 0.4);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 18px;
    color: #ffffff;
    margin: 0 0 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-app-section {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.app-preview {
    position: relative;
    flex-shrink: 0;
    display: inline-block;
    width: max-content;
}

.app-logo-box {
    width: 120px;
    height: 120px;
    background: linear-gradient(180deg, #1a2744 0%, #0d1829 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(247, 147, 30, 0.3);
    position: relative;
}

.app-logo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.app-logo-main {
    font-size: 32px;
    font-weight: 900;
    color: #f7931e;
    line-height: 1;
    letter-spacing: 1px;
}

.app-logo-sub {
    font-size: 14px;
    font-weight: 700;
    color: #f7931e;
    letter-spacing: 2px;
    margin-top: 4px;
}

.app-logo-box {
    width: 140px;
    height: 180px;
    background: linear-gradient(180deg, #1a2744 0%, #0d1829 100%);
    border-radius: 20px;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    border: 2px solid rgba(247, 147, 30, 0.3);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    padding: 0;
}

.app-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.app-logo-box:hover {
    transform: scale(1.05);
    border-color: #f7931e;
    box-shadow: 0 15px 40px rgba(247, 147, 30, 0.3);
}

/* Dashboard Design */
.app-dashboard {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #1a2744 0%, #0d1829 100%);
    border-radius: 18px;
    overflow: hidden;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    background: rgba(247, 147, 30, 0.15);
    border-bottom: 1px solid rgba(247, 147, 30, 0.2);
}

.dashboard-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.dashboard-name {
    font-size: 14px;
    font-weight: 800;
    color: #f7931e;
    letter-spacing: 0.5px;
}

.dashboard-matka {
    font-size: 8px;
    font-weight: 700;
    color: #f7931e;
    letter-spacing: 1px;
    margin-top: 1px;
}

.dashboard-menu {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dashboard-menu span {
    width: 12px;
    height: 2px;
    background: #f7931e;
    border-radius: 1px;
}

.dashboard-content {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dashboard-card {
    background: rgba(247, 147, 30, 0.1);
    border: 1px solid rgba(247, 147, 30, 0.3);
    border-radius: 8px;
    padding: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-icon {
    font-size: 14px;
}

.card-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-label {
    font-size: 7px;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-value {
    font-size: 10px;
    font-weight: 700;
    color: #f7931e;
    line-height: 1.2;
}

.dashboard-numbers {
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
    padding: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.dash-num {
    font-size: 16px;
    font-weight: 800;
    color: #f7931e;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(247, 147, 30, 0.15);
    border-radius: 6px;
    border: 1px solid rgba(247, 147, 30, 0.3);
}

.dashboard-action {
    background: #f7931e;
    color: #0d1829;
    padding: 6px;
    border-radius: 8px;
    text-align: center;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.verified-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    left: auto;
    bottom: auto;
    transform: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: #4caf50;
    color: #ffffff;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
    pointer-events: none;
}

.verified-badge i {
    font-size: 10px;
}

.download-section {
    flex: 1;
    min-width: 250px;
}

.download-btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #f7931e 0%, #ffa341 100%);
    color: #0d1829;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 10px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(247, 147, 30, 0.5);
}

.download-btn-main::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.download-btn-main:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(247, 147, 30, 0.6);
    background: #ffa341;
}

.download-btn-main:hover::before {
    width: 300px;
    height: 300px;
}

.download-btn-main:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.download-btn-main img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.download-info {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 20px;
}

.stat-item {
    text-align: left;
    flex: 1;
    min-width: 100px;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: #f7931e;
    margin: 0;
    line-height: 1.1;
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: -0.5px;
}

.stat-number i {
    font-size: 24px;
    color: #f7931e;
    margin-left: 2px;
}

.stat-label {
    font-size: 14px;
    color: #b0b0b0;
    margin: 8px 0 0;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Features Carousel */
/* Promo Card - Right Side */
.promo-card {
    background: linear-gradient(135deg, rgba(26, 39, 68, 0.9) 0%, rgba(13, 24, 41, 0.95) 100%);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(247, 147, 30, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    min-height: 400px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.promo-content {
    display: flex;
    gap: 15px;
    align-items: center;
    position: relative;
}

.promo-image {
    position: relative;
    flex: 0 0 180px;
    height: 280px;
}

.promo-girl {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    filter: brightness(0.9);
}

.phone-mockup-overlay {
    position: absolute;
    top: 15px;
    right: -15px;
    width: 90px;
    height: 160px;
    background: linear-gradient(180deg, #1a2744 0%, #0d1829 100%);
    border-radius: 12px;
    border: 2px solid rgba(247, 147, 30, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.promo-image {
    overflow: hidden;
    position: relative;
}

.phone-app-logo {
    font-size: 16px;
    font-weight: 800;
    color: #f7931e;
    text-align: center;
    line-height: 1.2;
    padding: 10px;
}

.coins-decoration {
    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="10" cy="10" r="5" fill="%23f7931e" opacity="0.5"/><circle cx="90" cy="20" r="4" fill="%23f7931e" opacity="0.4"/><circle cx="80" cy="80" r="6" fill="%23f7931e" opacity="0.3"/></svg>');
    pointer-events: none;
}

.promo-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.promo-headline {
    font-size: 28px;
    font-weight: 800;
    color: #f7931e;
    margin: 0;
    text-shadow: 0 0 20px rgba(247, 147, 30, 0.5);
    line-height: 1.2;
}

.promo-subtext {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
}

.promo-btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background: #f7931e;
    color: #0d1829;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s;
    text-transform: uppercase;
}

.promo-btn-primary:hover {
    background: #ffa341;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(247, 147, 30, 0.5);
}

.promo-btn-secondary {
    display: inline-block;
    padding: 10px 24px;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-weight: 600;
    font-size: 12px;
    text-align: center;
    transition: all 0.3s;
    text-transform: uppercase;
}

.promo-btn-secondary:hover {
    border-color: #f7931e;
    color: #f7931e;
}

.promo-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.promo-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--text-secondary);
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-features i {
    color: #4caf50;
    font-size: 10px;
}

.promo-nav-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.promo-nav-btn:hover {
    background: #f7931e;
    border-color: #f7931e;
    transform: translateY(-50%) scale(1.1);
}

/* Hero Bottom Info */
.hero-bottom-info {
    text-align: center;
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(247, 147, 30, 0.2);
}

.bottom-title {
    font-size: 20px;
    font-weight: 700;
    color: #f7931e;
    margin: 0 0 5px;
}

.bottom-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 0 15px;
}

.bottom-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(247, 147, 30, 0.1);
    border: 1px solid rgba(247, 147, 30, 0.3);
    border-radius: 25px;
    font-size: 13px;
    color: var(--text-primary);
}

.bottom-badge i {
    color: #ff6b35;
}

/* Keep old carousel for compatibility */
.features-carousel {
    background: linear-gradient(135deg, rgba(13, 24, 41, 0.95) 0%, rgba(7, 19, 34, 0.98) 100%);
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(247, 147, 30, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(247, 147, 30, 0.1);
}

.features-carousel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(247, 147, 30, 0.1) 0%, transparent 70%);
    animation: rotateGradient 20s linear infinite;
    pointer-events: none;
}

.features-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(247, 147, 30, 0.03) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(139, 92, 246, 0.03) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: shimmer 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
}

.carousel-container {
    position: relative;
    min-height: 320px;
    background: linear-gradient(135deg, rgba(13, 24, 41, 0.98) 0%, rgba(7, 19, 34, 1) 100%);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 15px;
    border: 1px solid rgba(247, 147, 30, 0.25);
    overflow: hidden;
    will-change: transform, opacity;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(247, 147, 30, 0.1);
    z-index: 1;
}

.carousel-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(247, 147, 30, 0.1), transparent);
    animation: slideShine 3s infinite;
    z-index: 0;
}

@keyframes slideShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.carousel-slide {
    display: none;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.active {
    display: flex;
    gap: 15px;
    align-items: center;
    opacity: 1;
    transform: translateX(0);
    animation: slideInFromRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
    position: relative;
}

.carousel-slide.active .carousel-visual {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.carousel-slide.active .carousel-text-content {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutToLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-30px);
    }
}

.carousel-visual {
    flex: 0 0 45%;
    position: relative;
    height: 280px;
    z-index: 1;
}

.carousel-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-girl {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    filter: brightness(0.9) contrast(1.05);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-slide.active .carousel-girl {
    animation: imageZoom 1s ease-out;
}

@keyframes imageZoom {
    from {
        transform: scale(1.1);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.carousel-phone {
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    width: 110px;
    height: 190px;
    background: linear-gradient(180deg, #1a2744 0%, #0d1829 100%);
    border-radius: 20px;
    border: 3px solid #f7931e;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 20px 50px rgba(247, 147, 30, 0.5),
        0 0 30px rgba(247, 147, 30, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: phoneFloat 3s ease-in-out infinite;
}

.carousel-slide.active .carousel-phone {
    animation: phoneFloat 3s ease-in-out infinite, phoneSlideIn 0.8s ease-out 0.3s both;
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(-50%) translateY(0);
    }
    50% {
        transform: translateY(-50%) translateY(-10px);
    }
}

@keyframes phoneSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0) scale(1);
    }
}

.phone-screen-content {
    padding: 15px 10px;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, #0d1829 0%, #1a2744 100%);
}

.phone-header {
    font-size: 12px;
    font-weight: 700;
    color: #f7931e;
    margin-bottom: 10px;
}

.phone-numbers {
    font-size: 16px;
    font-weight: 800;
    color: #f7931e;
    letter-spacing: 3px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.phone-betting {
    font-size: 9px;
    color: #b0b0b0;
    text-transform: uppercase;
    margin-top: auto;
}

.carousel-coins {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.carousel-coins::before,
.carousel-coins::after {
    content: '💰';
    position: absolute;
    font-size: 24px;
    opacity: 0.4;
    animation: coinFloat 4s ease-in-out infinite;
}

.carousel-coins::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.carousel-coins::after {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

@keyframes coinFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
        opacity: 0.6;
    }
}

.carousel-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 20px;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
}

.carousel-headline {
    font-size: 32px;
    font-weight: 900;
    color: #f7931e;
    margin: 0 0 10px 0;
    text-shadow: 
        0 0 20px rgba(247, 147, 30, 0.6),
        0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #f7931e 0%, #ffa341 50%, #ffb84d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from {
        filter: brightness(1);
    }
    to {
        filter: brightness(1.2);
    }
}

.carousel-subtext {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 12px 0;
    line-height: 1.6;
    letter-spacing: 0.3px;
    font-weight: 400;
}

.carousel-btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #f7931e 0%, #ffa341 50%, #ffb84d 100%);
    color: #0d1829;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    box-shadow: 
        0 6px 20px rgba(247, 147, 30, 0.4),
        0 0 0 0 rgba(247, 147, 30, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.carousel-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.carousel-btn-primary:hover::before {
    left: 100%;
}

.carousel-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(247, 147, 30, 0.5),
        0 0 0 4px rgba(247, 147, 30, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.carousel-btn-primary:hover {
    background: linear-gradient(135deg, #ffa341 0%, #ffb84d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 147, 30, 0.5);
}

.carousel-btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(247, 147, 30, 0.05);
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #f7931e;
    border-radius: 10px;
    font-weight: 600;
    font-size: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    margin-bottom: 15px;
    width: fit-content;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.carousel-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(247, 147, 30, 0.1);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.carousel-btn-secondary:hover::before {
    width: 100%;
}

.carousel-btn-secondary:hover {
    border-color: #ffa341;
    color: #ffa341;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(247, 147, 30, 0.3);
}

.carousel-btn-secondary span {
    position: relative;
    z-index: 1;
}

.carousel-btn-secondary:hover {
    border-color: #f7931e;
    color: #f7931e;
    background: rgba(247, 147, 30, 0.1);
}

.carousel-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.feature-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.feature-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

/* Secure Platform - Green */
.feature-icon-secure {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: rgba(16, 185, 129, 0.3);
}

.feature-icon-secure::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.feature-icon-item:hover .feature-icon-secure::before {
    width: 100%;
    height: 100%;
}

.feature-icon-item:hover .feature-icon-secure {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 
        0 8px 25px rgba(16, 185, 129, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(16, 185, 129, 0.5);
}

/* Instant Withdrawal - Blue/Teal */
.feature-icon-withdrawal {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-icon-withdrawal::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.feature-icon-item:hover .feature-icon-withdrawal::before {
    width: 100%;
    height: 100%;
}

.feature-icon-item:hover .feature-icon-withdrawal {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 
        0 8px 25px rgba(59, 130, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
}

/* Support 24/7 - Purple/Pink */
.feature-icon-support {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-color: rgba(139, 92, 246, 0.3);
}

.feature-icon-support::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.feature-icon-item:hover .feature-icon-support::before {
    width: 100%;
    height: 100%;
}

.feature-icon-item:hover .feature-icon-support {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 
        0 8px 25px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(139, 92, 246, 0.5);
}

.feature-icon-circle i {
    font-size: 20px;
    color: #ffffff;
    position: relative;
    z-index: 1;
    transition: transform 0.4s;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-icon-item:hover .feature-icon-circle i {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon-item span {
    font-size: 11px;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
    transition: color 0.4s;
    font-weight: 500;
}

.feature-icon-item:hover span {
    color: #f7931e;
}

.carousel-bottom-section {
    margin-top: 15px;
}

.carousel-bottom-heading {
    text-align: center;
    margin-bottom: 15px;
}

.bottom-headline {
    font-size: 22px;
    font-weight: 800;
    color: #f7931e;
    margin: 0 0 4px;
    text-shadow: 0 0 15px rgba(247, 147, 30, 0.5);
}

.bottom-subline {
    font-size: 13px;
    color: #ffffff;
    margin: 0 0 12px;
}

.carousel-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 28px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #f472b6 100%);
    border-radius: 14px;
    border: none;
    box-shadow: 
        0 6px 25px rgba(139, 92, 246, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    margin-top: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: bannerShine 3s infinite;
}

@keyframes bannerShine {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.carousel-banner:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 30px rgba(139, 92, 246, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.banner-icon-wrapper {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 4px 15px rgba(251, 191, 36, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.carousel-banner:hover .banner-icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
    box-shadow: 
        0 6px 20px rgba(251, 191, 36, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.carousel-banner i {
    font-size: 18px;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.4s;
}

.carousel-banner:hover i {
    transform: scale(1.1);
}

.carousel-banner span {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.carousel-slide i {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.active i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.carousel-slide img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.carousel-slide h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.carousel-slide p {
    color: var(--text-secondary);
    font-size: 14px;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
    z-index: 10;
}

.carousel-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.carousel-controls button:hover:not(:disabled) {
    background: rgba(247, 147, 30, 0.8);
    border-color: #f7931e;
    transform: scale(1.1);
}

.carousel-controls button:disabled {
    opacity: 0.2;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: rgb(15, 26, 42);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Bottom row - 3 cards centered */
.stats-grid .stat-card:nth-child(5),
.stats-grid .stat-card:nth-child(6),
.stats-grid .stat-card:nth-child(7) {
    grid-column: span 1;
}

.stats-grid .stat-card:nth-child(5) {
    grid-column: 1;
}

.stats-grid .stat-card:nth-child(6) {
    grid-column: 2;
}

.stats-grid .stat-card:nth-child(7) {
    grid-column: 3;
}

/* Bottom row cards have white text for heading */
.stats-grid .stat-card:nth-child(5) h3,
.stats-grid .stat-card:nth-child(6) h3,
.stats-grid .stat-card:nth-child(7) h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

.stats-grid .stat-card:nth-child(5) p,
.stats-grid .stat-card:nth-child(6) p,
.stats-grid .stat-card:nth-child(7) p {
    color: #b0b0b0;
    font-size: 12px;
    margin-top: 5px;
}

.stat-card {
    text-align: center;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(247, 147, 30, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.08);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover i {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-color);
}

.stat-card i {
    font-size: 40px;
    color: #f7931e;
    margin-bottom: 12px;
    display: block;
}

.stat-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 28px;
    font-weight: 900;
    color: #f7931e;
    margin: 8px 0;
    line-height: 1.2;
}

.stat-card p {
    color: #b0b0b0;
    font-size: 13px;
    font-weight: 400;
    margin: 0;
}

/* Security Features */
.security-features {
    padding: 60px 0;
    background: rgb(7, 19, 34);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.08);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover i {
    transform: scale(1.15) rotate(5deg);
    color: var(--primary-color);
}

.feature-item i {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.feature-item img {
    width: 60px;
    height: 60px;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-item p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: rgb(15, 26, 42);
}

.trust-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.trust-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.8s;
}

.trust-content:hover {
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.05);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    transform: translateY(-3px);
}

.trust-content:hover::before {
    left: 100%;
}

.trust-content:hover i {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-color);
}

.trust-left i {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-left i {
    font-size: 50px;
    color: #f7931e;
    filter: drop-shadow(0 0 10px rgba(247, 147, 30, 0.5));
}

.trust-left img {
    width: 60px;
    height: 60px;
}

.trust-left h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 700;
}

.trust-left p {
    color: #b0b0b0;
    font-size: 13px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-left p::before {
    content: '•';
    color: #4caf50;
    font-size: 16px;
}

.trust-right {
    display: flex;
    gap: 40px;
    align-items: center;
}

.rating-box {
    text-align: center;
}

.stars {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-bottom: 10px;
}

.stars i {
    font-size: 18px;
    color: #f7931e;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-content:hover .stars i {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
}

.rating-box p {
    color: #b0b0b0;
    font-size: 13px;
    margin: 5px 0 0;
}

.uptime-box {
    text-align: center;
}

.uptime-number {
    font-size: 36px;
    font-weight: 900;
    color: #f7931e;
    margin: 0;
    line-height: 1.2;
}

.uptime-label {
    color: #b0b0b0;
    font-size: 13px;
    margin-top: 5px;
}

.uptime-label {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 5px 0 0;
}

/* Leaderboard Section */
.leaderboard-section {
    padding: 80px 0;
    background: rgb(7, 19, 34);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
    max-width: 100%;
}

.header-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.header-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.header-with-icon img {
    width: 30px;
    height: 30px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 16px;
    color: var(--text-secondary);
}

.leaderboard-top {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
    align-items: end;
}

.winner-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.winner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.winner-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.winner-card:hover::before {
    opacity: 1;
}

.winner-card:hover .winner-avatar {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.winner-avatar {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.position-1 {
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
    order: 2;
}

.position-2 {
    order: 1;
}

.position-3 {
    order: 3;
}

.winner-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.winner-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.crown {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
}

.position-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 35px;
    height: 35px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}

.winner-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.winner-location {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
}

.winner-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 24px;
    font-weight: 800;
    color: var(--success-color);
    margin-bottom: 10px;
}

.winner-amount img {
    width: 20px;
    height: 20px;
}

.winner-game {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

.champion-badge {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 15px;
    background: var(--gradient);
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.recent-wins {
    margin-bottom: 40px;
}

.recent-wins-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.recent-wins-header img {
    width: 30px;
    height: 30px;
}

.recent-wins-header h3 {
    font-size: 24px;
}

.recent-wins-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.recent-win-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.recent-win-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--gradient);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.recent-win-item:hover {
    transform: translateX(5px);
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.08);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.recent-win-item:hover::after {
    transform: scaleY(1);
}

.recent-win-item:hover img {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.recent-win-item img {
    transition: all 0.3s;
}

.recent-win-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.win-details {
    flex: 1;
}

.win-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.win-game {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
}

.win-amount-time {
    text-align: right;
}

.win-amount {
    font-weight: 800;
    color: var(--success-color);
    margin-bottom: 5px;
}

.win-time {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
}

.cta-box {
    text-align: center;
    padding: 40px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    width: 100%;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cta-box:hover {
    background: rgba(255, 107, 53, 0.15);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    transform: translateY(-5px);
}

.cta-box:hover::before {
    opacity: 1;
}

.cta-box:hover i {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.8));
}

.cta-box i {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.cta-box img {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: block;
}

.cta-box h3 {
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
}

.cta-box p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #ff7a45 0%, #ffa341 100%);
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:active {
    transform: translateY(-1px) scale(0.98);
}

.cta-button img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    color: var(--text-secondary);
    font-size: 14px;
}

.cta-note img {
    width: 20px;
    height: 20px;
}

/* App Screenshots */
.screenshots-section {
    padding: 80px 0;
    background: rgb(15, 26, 42);
}

.screenshots-carousel {
    position: relative;
    margin-bottom: 50px;
}

.screenshots-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.screenshots-container::-webkit-scrollbar {
    height: 6px;
}

.screenshots-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.screenshots-container::-webkit-scrollbar-thumb {
    background: rgba(247, 147, 30, 0.5);
    border-radius: 3px;
}

.screenshot-item {
    flex: 0 0 250px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.screenshot-item img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.screenshot-item:hover {
    transform: scale(1.05);
}

.screenshot-item:hover img {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    transform: scale(1.02);
}

.screenshot-prev,
.screenshot-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
}

.screenshot-prev {
    left: -25px;
}

.screenshot-next {
    right: -25px;
}

.screenshot-prev:hover,
.screenshot-next:hover {
    background: var(--primary-color);
    color: white;
}

.screenshot-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.screenshot-feature {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.screenshot-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 107, 53, 0.05);
}

.screenshot-feature:hover i {
    transform: scale(1.15) rotate(5deg);
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

.screenshot-feature i {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.screenshot-feature img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.screenshot-feature h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.screenshot-feature p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* How to Play */
.how-to-play-section {
    padding: 80px 0;
    background: rgb(7, 19, 34);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.step-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

.step-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.step-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.3);
}

.step-card:hover::after {
    transform: scaleX(1);
}

.step-card:hover .step-icon-large {
    transform: scale(1.15) rotate(10deg);
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.5));
}

.step-icon-large {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}

.step-image {
    width: 100px;
    height: 100px;
    margin: 20px auto;
    border-radius: 15px;
}

.step-icon-large {
    font-size: 60px;
    color: var(--primary-color);
    margin: 20px auto;
    display: block;
    text-align: center;
}

.carousel-slide i {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.stat-card i,
.feature-item i,
.why-item i,
.screenshot-feature i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.payment-method i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.footer-logo .logo-icon {
    font-size: 50px;
    line-height: 1;
}

.footer-logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.qr-placeholder-large {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--primary-color);
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
}

.step-arrow {
    width: 30px;
    height: 30px;
    margin-top: 20px;
}

.play-cta {
    text-align: center;
    padding: 40px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    margin-bottom: 40px;
    width: 100%;
    box-sizing: border-box;
}

.play-cta h3 {
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
}

.play-cta p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    text-align: center;
}

.play-button {
    padding: 16px 40px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.play-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.play-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #ff7a45 0%, #ffa341 100%);
}

.play-button:hover::before {
    width: 300px;
    height: 300px;
}

.play-button:active {
    transform: translateY(-1px) scale(0.98);
}

.play-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.play-feature {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 107, 53, 0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.play-feature::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.play-feature:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.25);
}

.play-feature:hover::before {
    width: 200px;
    height: 200px;
}

.play-feature:hover .feature-percent {
    transform: scale(1.1);
    color: var(--primary-color);
}

.feature-percent {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-percent {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.play-feature p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

/* Game Rates */
.rates-section {
    padding: 80px 0;
    background: rgb(15, 26, 42);
}

.rates-table-container {
    overflow-x: auto;
    margin-bottom: 40px;
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
}

.rates-table thead {
    background: rgba(255, 107, 53, 0.2);
}

.rates-table th {
    padding: 20px;
    text-align: left;
    font-weight: 700;
    font-size: 16px;
}

.rates-table td {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.rates-table tr {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rates-table tr:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: scale(1.01);
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.2);
}

.rates-table tr:hover td {
    color: var(--text-primary);
    font-weight: 600;
}

.rates-table tr:hover td i {
    transform: scale(1.2);
    color: var(--primary-color);
}

.rates-table td i {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rates-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

.highest-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px;
    background: var(--success-color);
    border-radius: 10px;
    font-size: 11px;
    margin-left: 8px;
}

.highest-badge img {
    width: 12px;
    height: 12px;
}

.rates-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.rate-info-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.rate-info-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.08);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.rate-info-item:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--primary-color);
}

.rate-info-item i {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.rate-info-item img {
    width: 50px;
    height: 50px;
}

.rate-info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.rate-info-item p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

.rates-cta {
    text-align: center;
    padding: 40px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    width: 100%;
    box-sizing: border-box;
}

.rates-cta img {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: block;
}

.rates-cta h3 {
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
}

.rates-cta p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: center;
}

.best-rates-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.best-rates-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
    transition: left 0.6s;
}

.best-rates-badge:hover {
    background: rgba(255, 107, 53, 0.3);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.best-rates-badge:hover::before {
    left: 100%;
}

.best-rates-badge:hover i {
    transform: scale(1.2) rotate(10deg);
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) scale(1.2) rotate(10deg);
    }
    50% {
        transform: translateY(-5px) scale(1.2) rotate(10deg);
    }
}

.best-rates-badge i {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.best-rates-badge img {
    width: 20px;
    height: 20px;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: rgb(7, 19, 34);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.why-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.why-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.25);
}

.why-item:hover::before {
    opacity: 1;
}

.why-item:hover i {
    transform: scale(1.2) rotate(10deg);
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

.why-item i {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.why-item img {
    width: 60px;
    height: 60px;
}

.why-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.why-item p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

/* Payment Section */
.payment-section {
    padding: 80px 0;
    background: rgb(15, 26, 42);
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 120px;
    position: relative;
    overflow: hidden;
}

.payment-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.payment-method:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.payment-method:hover::before {
    opacity: 1;
}

.payment-method:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--primary-color);
}

.payment-method i {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.payment-method img {
    width: 60px;
    height: 60px;
}

.payment-method p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.payment-security {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(76, 175, 80, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.payment-security::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.2), transparent);
    transition: left 0.6s;
}

.payment-security:hover {
    transform: translateY(-3px);
    background: rgba(76, 175, 80, 0.15);
    border-color: #4caf50;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.payment-security:hover::before {
    left: 100%;
}

.payment-security:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #4caf50;
}

.payment-security i {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.payment-security img {
    width: 30px;
    height: 30px;
}

.payment-security span {
    color: var(--success-color);
    font-weight: 600;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: rgb(7, 19, 34);
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
}

.testimonials-container::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 350px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.08);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.25);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

.testimonial-avatar {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.testimonial-stars img {
    width: 20px;
    height: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    gap: 15px;
    align-items: center;
}

.author-initials {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.author-name {
    font-weight: 600;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.author-name img {
    width: 16px;
    height: 16px;
}

.author-location {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: rgb(15, 26, 42);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto 40px;
}

.faq-item {
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.05);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.15);
}

.faq-item.active {
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.08);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: none;
    border: none;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

.faq-question div {
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-number {
    width: 30px;
    height: 30px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    border: 2px solid var(--primary-color);
}

.faq-cta img {
    width: 50px;
    height: 50px;
}

.faq-cta div h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.faq-cta div p {
    color: var(--text-secondary);
    margin: 0;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.whatsapp-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    background: #20ba5a;
}

.whatsapp-button:hover::before {
    width: 300px;
    height: 300px;
}

.whatsapp-button:active {
    transform: translateY(-1px) scale(0.98);
}

.whatsapp-button img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Footer CTA */
.footer-cta {
    padding: 60px 0;
    background: var(--gradient);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.footer-cta h3 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
}

.footer-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    text-align: center;
}

.download-footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    background: #ffffff;
    color: #ff6b35;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.download-footer-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.download-footer-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    color: #ff7a45;
}

.download-footer-btn:hover::before {
    width: 300px;
    height: 300px;
}

.download-footer-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.download-footer-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: rgb(5, 10, 20);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
}

.footer-logo-text h3 {
    font-size: 20px;
    margin-bottom: 5px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo-text p {
    font-size: 11px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    font-size: 13px;
}

.footer-badge img {
    width: 20px;
    height: 20px;
}

.footer-links h4,
.footer-contact h4,
.footer-download h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s;
    color: var(--primary-color);
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    padding-left: 15px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-contact li {
    margin-bottom: 15px;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 5px;
    border-radius: 8px;
}

.footer-contact a:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.footer-contact a:hover i {
    transform: scale(1.2);
    color: var(--primary-color);
}

.footer-contact a i {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-contact a img {
    width: 20px;
    height: 20px;
}

.download-qr {
    text-align: center;
}

.download-qr img {
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
    border-radius: 10px;
}

.download-qr p {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 15px;
}

.download-apk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.download-apk-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.download-apk-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #ff7a45 0%, #ffa341 100%);
}

.download-apk-btn:hover::before {
    width: 300px;
    height: 300px;
}

.download-apk-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.download-apk-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 10px;
}

/* Floating Buttons */
/* Fixed Bottom Action Buttons */
.fixed-bottom-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 12px;
    padding: 15px;
    background: rgba(15, 26, 42, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(247, 147, 30, 0.2);
    z-index: 1000;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
}

.fixed-download-btn,
.fixed-whatsapp-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.fixed-download-btn {
    background: linear-gradient(135deg, #f7931e 0%, #ffa341 100%);
    box-shadow: 0 4px 15px rgba(247, 147, 30, 0.4);
}

.fixed-download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.fixed-download-btn:hover::before {
    left: 100%;
}

.fixed-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 147, 30, 0.5);
    background: linear-gradient(135deg, #ffa341 0%, #ffb84d 100%);
}

.fixed-whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.fixed-whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.fixed-whatsapp-btn:hover::before {
    left: 100%;
}

.fixed-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #2ee576 0%, #25d366 100%);
}

.fixed-download-btn i,
.fixed-whatsapp-btn i {
    font-size: 20px;
    flex-shrink: 0;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-label {
    font-size: 11px;
    opacity: 0.9;
    font-weight: 500;
}

.btn-main-text {
    font-size: 14px;
    font-weight: 700;
    margin-top: 2px;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid,
    .features-grid,
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .screenshot-prev,
    .screenshot-next {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Top Banner */
    .top-banner {
        padding: 6px 0;
    }
    
    .banner-item {
        padding: 0 15px;
        font-size: 12px;
        gap: 6px;
    }
    
    .banner-item i {
        font-size: 14px;
    }
    
    /* Header */
    .navbar {
        padding: 12px 0;
    }
    
    .nav-menu,
    .language-selector {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.98);
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
        gap: 15px;
        z-index: 1000;
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo img {
        height: 40px;
    }
    
    .logo-text h1 {
        font-size: 16px;
    }
    
    .logo-text p {
        font-size: 8px;
    }
    
    /* Hero Section */
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .trust-badge {
        padding: 8px 16px;
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .hero-app-section {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
        align-items: center;
        text-align: center;
    }
    
    .app-preview {
        display: flex;
        justify-content: center;
    }
    
    .app-logo-box {
        width: 120px;
        height: 150px;
    }
    
    .dashboard-name {
        font-size: 12px;
    }
    
    .dashboard-matka {
        font-size: 7px;
    }
    
    .card-value {
        font-size: 9px;
    }
    
    .dash-num {
        font-size: 14px;
        width: 20px;
        height: 20px;
    }
    
    .dashboard-action {
        font-size: 7px;
        padding: 5px;
    }
    
    .verified-badge {
        top: -6px;
        right: -6px;
        left: auto;
        font-size: 9px;
        padding: 3px 8px;
    }
    
    .download-section {
        width: 100%;
        text-align: center;
    }
    
    .download-btn-main {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
    
    .download-info {
        font-size: 12px;
        text-align: center;
    }
    
    .hero-stats {
        gap: 20px;
        justify-content: space-around;
        text-align: center;
    }
    
    .stat-item {
        text-align: center;
        flex: 1;
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-number i {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    /* Promo Card Mobile */
    .promo-card {
        padding: 15px;
        min-height: auto;
    }
    
    .promo-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .promo-image {
        flex: 0 0 auto;
        width: 100%;
        height: 250px;
    }
    
    .phone-mockup-overlay {
        right: 5px;
        width: 80px;
        height: 140px;
    }
    
    .promo-image {
        overflow: hidden;
    }
    
    .phone-app-logo {
        font-size: 14px;
    }
    
    .promo-text {
        text-align: center;
    }
    
    .promo-headline {
        font-size: 24px;
    }
    
    .promo-subtext {
        font-size: 11px;
    }
    
    .promo-btn-primary,
    .promo-btn-secondary {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .promo-features {
        justify-content: center;
        gap: 10px;
    }
    
    .promo-features span {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .promo-nav-btn {
        display: none;
    }
    
    .hero-bottom-info {
        padding: 15px;
        margin-top: 20px;
    }
    
    .bottom-title {
        font-size: 18px;
    }
    
    .bottom-subtitle {
        font-size: 12px;
    }
    
    .bottom-badge {
        padding: 10px 20px;
        font-size: 11px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    /* Features Carousel */
    .features-carousel {
        padding: 20px;
    }
    
    .carousel-container {
        min-height: auto;
        padding: 15px;
    }
    
    .carousel-slide.active {
        flex-direction: column;
        gap: 15px;
    }
    
    .carousel-visual {
        flex: 0 0 auto;
        width: 100%;
        height: 200px;
    }
    
    .carousel-phone {
        right: 10px;
        width: 70px;
        height: 120px;
    }
    
    .carousel-text-content {
        padding-left: 0;
        text-align: center;
    }
    
    .carousel-headline {
        font-size: 28px;
        text-align: center;
    }
    
    .carousel-subtext {
        font-size: 12px;
        text-align: center;
    }
    
    .carousel-btn-primary,
    .carousel-btn-secondary {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .carousel-features {
        justify-content: center;
        gap: 10px;
    }
    
    .feature-icon-circle {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon-circle i {
        font-size: 16px;
    }
    
    .feature-icon-item span {
        font-size: 10px;
    }
    
    .bottom-headline {
        font-size: 20px;
    }
    
    .bottom-subline {
        font-size: 12px;
    }
    
    .carousel-banner {
        padding: 12px 18px;
        flex-direction: row;
        gap: 10px;
        margin-top: 12px;
    }
    
    .banner-icon-wrapper {
        width: 28px;
        height: 28px;
    }
    
    .carousel-banner i {
        font-size: 16px;
    }
    
    .carousel-banner span {
        font-size: 12px;
        text-align: left;
    }
    
    /* Stats Section */
    .stats-section {
        padding: 40px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stats-grid .stat-card:nth-child(5),
    .stats-grid .stat-card:nth-child(6),
    .stats-grid .stat-card:nth-child(7) {
        grid-column: span 1;
    }
    
    .stats-grid .stat-card:nth-child(7) {
        grid-column: 1 / -1;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-card i {
        font-size: 35px;
    }
    
    .stat-card img {
        width: 40px;
        height: 40px;
    }
    
    .stat-card h3 {
        font-size: 24px;
    }
    
    .stat-card:nth-child(5) h3,
    .stat-card:nth-child(6) h3,
    .stat-card:nth-child(7) h3 {
        font-size: 16px;
    }
    
    .stat-card p {
        font-size: 11px;
    }
    
    /* Security Features */
    .security-features {
        padding: 40px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-item {
        padding: 20px;
        gap: 15px;
    }
    
    .feature-item img {
        width: 50px;
        height: 50px;
    }
    
    .feature-item h3 {
        font-size: 16px;
    }
    
    .feature-item p {
        font-size: 13px;
    }
    
    /* Trust Section */
    .trust-section {
        padding: 40px 0;
    }
    
    .trust-content {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
        text-align: center;
    }
    
    .trust-left {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-right {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Leaderboard */
    .leaderboard-section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    .leaderboard-top {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .position-1 {
        order: 1;
    }
    
    .position-2 {
        order: 2;
    }
    
    .position-3 {
        order: 3;
    }
    
    .winner-card {
        padding: 25px;
    }
    
    .winner-avatar {
        width: 80px;
        height: 80px;
    }
    
    .winner-card h3 {
        font-size: 18px;
    }
    
    .winner-amount {
        font-size: 20px;
    }
    
    .recent-wins-header h3 {
        font-size: 20px;
    }
    
    .recent-wins-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .recent-win-item {
        padding: 12px;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .cta-box img {
        margin: 0 auto 15px;
    }
    
    .cta-box h3 {
        font-size: 22px;
        text-align: center;
    }
    
    .cta-box p {
        text-align: center;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        max-width: 300px;
        border-radius: 50px;
    }
    
    .cta-note {
        justify-content: center;
    }
    
    /* Screenshots */
    .screenshots-section {
        padding: 50px 0;
    }
    
    .screenshot-item {
        flex: 0 0 200px;
    }
    
    .screenshot-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* How to Play */
    .how-to-play-section {
        padding: 50px 0;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .step-card {
        padding: 25px 20px;
    }
    
    .step-image {
        width: 80px;
        height: 80px;
    }
    
    .step-card h3 {
        font-size: 18px;
    }
    
    .play-cta {
        padding: 30px 20px;
    }
    
    .play-cta h3 {
        font-size: 22px;
        text-align: center;
    }
    
    .play-cta p {
        text-align: center;
    }
    
    .play-button {
        width: 100%;
        max-width: 300px;
        padding: 14px 28px;
        border-radius: 50px;
    }
    
    .play-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .play-feature {
        padding: 20px;
    }
    
    .feature-percent {
        font-size: 28px;
    }
    
    /* Game Rates */
    .rates-section {
        padding: 50px 0;
    }
    
    .rates-table-container {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
    
    .rates-table {
        min-width: 600px;
    }
    
    .rates-table th,
    .rates-table td {
        padding: 12px 8px;
        font-size: 12px;
    }
    
    .rates-table th {
        font-size: 13px;
    }
    
    .rates-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .rate-info-item {
        padding: 20px;
        gap: 15px;
    }
    
    .rate-info-item img {
        width: 40px;
        height: 40px;
    }
    
    .rates-cta {
        padding: 30px 20px;
    }
    
    .rates-cta img {
        margin: 0 auto 15px;
    }
    
    .rates-cta h3 {
        font-size: 22px;
        text-align: center;
    }
    
    .rates-cta p {
        text-align: center;
    }
    
    .best-rates-badge {
        justify-content: center;
    }
    
    /* Why Choose */
    .why-choose-section {
        padding: 50px 0;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-item {
        padding: 25px;
    }
    
    .why-item img {
        width: 50px;
        height: 50px;
    }
    
    .why-item h3 {
        font-size: 18px;
    }
    
    /* Payment */
    .payment-section {
        padding: 50px 0;
    }
    
    .payment-methods {
        gap: 15px;
    }
    
    .payment-method {
        padding: 20px;
        min-width: 100px;
    }
    
    .payment-method img {
        width: 50px;
        height: 50px;
    }
    
    .payment-method p {
        font-size: 12px;
    }
    
    /* Testimonials */
    .testimonials-section {
        padding: 50px 0;
    }
    
    .testimonial-card {
        flex: 0 0 300px;
        padding: 25px;
    }
    
    /* FAQ */
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 14px;
    }
    
    .faq-number {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    
    .faq-answer p {
        padding: 0 15px 15px;
        font-size: 13px;
    }
    
    .faq-cta {
        flex-direction: column;
        gap: 20px;
        padding: 25px 20px;
        text-align: center;
    }
    
    .faq-cta div {
        text-align: center;
    }
    
    .faq-cta div h3 {
        font-size: 20px;
    }
    
    .faq-cta {
        text-align: center;
    }
    
    .faq-cta div {
        text-align: center;
    }
    
    .whatsapp-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 14px 28px;
        font-size: 15px;
        border-radius: 50px;
    }
    
    /* Footer CTA */
    .footer-cta {
        padding: 40px 0;
    }
    
    .footer-cta h3 {
        font-size: 24px;
    }
    
    .footer-cta p {
        font-size: 14px;
    }
    
    .footer-cta h3 {
        font-size: 24px;
    }
    
    .footer-cta p {
        font-size: 14px;
    }
    
    .download-footer-btn {
        padding: 14px 28px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
        border-radius: 50px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .footer-badge {
        justify-content: center;
    }
    
    .footer-links,
    .footer-contact,
    .footer-download {
        text-align: center;
    }
    
    .footer-contact ul {
        align-items: center;
    }
    
    .footer-contact a {
        justify-content: center;
    }
    
    .footer-bottom p {
        font-size: 11px;
        line-height: 1.6;
    }
    
    /* Floating Buttons */
    body {
        padding-bottom: 90px;
    }
    
    .fixed-bottom-buttons {
        padding: 12px;
        gap: 10px;
    }
    
    .fixed-download-btn,
    .fixed-whatsapp-btn {
        padding: 14px 16px;
        gap: 10px;
    }
    
    .fixed-download-btn i,
    .fixed-whatsapp-btn i {
        font-size: 18px;
    }
    
    .btn-label {
        font-size: 10px;
    }
    
    .btn-main-text {
        font-size: 12px;
    }
}

/* Disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {
    .stat-card:hover,
    .feature-item:hover,
    .why-item:hover,
    .winner-card:hover,
    .testimonial-card:hover,
    .step-card:hover,
    .payment-method:hover,
    .recent-win-item:hover {
        transform: none;
    }
    
    .stat-card:active,
    .feature-item:active,
    .why-item:active {
        transform: scale(0.98);
        background: rgba(255, 107, 53, 0.1);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    /* Reduce hover effects on small screens */
    .stat-card:hover,
    .feature-item:hover,
    .why-item:hover {
        transform: translateY(-3px) scale(1.01);
    }
    
    .winner-card:hover,
    .testimonial-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    /* Hero */
    .hero-title {
        font-size: 32px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 13px;
        text-align: center;
    }
    
    .hero-description {
        font-size: 13px;
        text-align: center;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .trust-badge {
        margin: 0 auto 15px;
        display: inline-flex;
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .app-logo-box {
        width: 100px;
        height: 130px;
    }
    
    .dashboard-header {
        padding: 6px 8px;
    }
    
    .dashboard-name {
        font-size: 11px;
    }
    
    .dashboard-matka {
        font-size: 6px;
    }
    
    .dashboard-content {
        padding: 8px;
        gap: 6px;
    }
    
    .dashboard-card {
        padding: 5px;
    }
    
    .card-icon {
        font-size: 12px;
    }
    
    .card-label {
        font-size: 6px;
    }
    
    .card-value {
        font-size: 8px;
    }
    
    .dash-num {
        font-size: 12px;
        width: 18px;
        height: 18px;
    }
    
    .dashboard-action {
        font-size: 6px;
        padding: 4px;
    }

    .verified-badge {
        top: -5px;
        right: -5px;
        left: auto;
        font-size: 8px;
        padding: 3px 7px;
        gap: 4px;
    }
    
    .app-logo-box {
        width: 100px;
        height: 100px;
    }
    
    .app-logo-main {
        font-size: 28px;
    }
    
    .app-logo-sub {
        font-size: 12px;
    }
    
    .carousel-container {
        min-height: auto;
        padding: 12px;
    }
    
    .carousel-slide.active {
        flex-direction: column;
        gap: 12px;
    }
    
    .carousel-visual {
        height: 180px;
    }
    
    .carousel-phone {
        right: 5px;
        width: 60px;
        height: 100px;
    }
    
    .phone-header {
        font-size: 10px;
    }
    
    .phone-numbers {
        font-size: 14px;
    }
    
    .phone-betting {
        font-size: 8px;
    }
    
    .carousel-headline {
        font-size: 24px;
    }
    
    .carousel-subtext {
        font-size: 11px;
    }
    
    .carousel-btn-primary {
        padding: 12px 24px;
        font-size: 12px;
    }
    
    .carousel-btn-secondary {
        padding: 10px 24px;
        font-size: 11px;
    }
    
    .carousel-features {
        gap: 8px;
        justify-content: center;
    }
    
    .feature-icon-circle {
        width: 35px;
        height: 35px;
    }
    
    .feature-icon-circle i {
        font-size: 14px;
    }
    
    .feature-icon-item span {
        font-size: 9px;
    }
    
    .bottom-headline {
        font-size: 18px;
    }
    
    .bottom-subline {
        font-size: 11px;
    }
    
    .carousel-banner {
        padding: 10px 16px;
        flex-direction: row;
        gap: 8px;
        margin-top: 10px;
    }
    
    .banner-icon-wrapper {
        width: 24px;
        height: 24px;
    }
    
    .carousel-banner i {
        font-size: 14px;
    }
    
    .carousel-banner span {
        font-size: 11px;
        text-align: left;
    }

    .verified-badge i {
        font-size: 9px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-number i {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    /* Promo Card */
    .promo-card {
        padding: 12px;
    }
    
    .promo-image {
        height: 220px;
    }
    
    .phone-mockup-overlay {
        width: 60px;
        height: 110px;
        right: 0;
        top: 10px;
    }
    
    .promo-image {
        overflow: hidden;
        position: relative;
    }
    
    .phone-app-logo {
        font-size: 12px;
    }
    
    .promo-headline {
        font-size: 20px;
    }
    
    .promo-subtext {
        font-size: 10px;
    }
    
    .promo-btn-primary {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .promo-btn-secondary {
        padding: 8px 20px;
        font-size: 11px;
    }
    
    .bottom-title {
        font-size: 16px;
    }
    
    .bottom-subtitle {
        font-size: 11px;
    }
    
    .bottom-badge {
        padding: 8px 15px;
        font-size: 10px;
    }
    
    /* Stats Grid */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stats-grid .stat-card:nth-child(5),
    .stats-grid .stat-card:nth-child(6),
    .stats-grid .stat-card:nth-child(7) {
        grid-column: 1;
    }
    
    .stat-card {
        padding: 18px 12px;
    }
    
    .stat-card i {
        font-size: 30px;
    }
    
    .stat-card h3 {
        font-size: 22px;
    }
    
    .stat-card:nth-child(5) h3,
    .stat-card:nth-child(6) h3,
    .stat-card:nth-child(7) h3 {
        font-size: 15px;
    }
    
    .stat-card p {
        font-size: 10px;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header p {
        font-size: 13px;
    }
    
    /* Download Buttons */
    .download-btn-main {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    /* Tables */
    .rates-table {
        min-width: 500px;
        font-size: 11px;
    }
    
    .rates-table th,
    .rates-table td {
        padding: 10px 6px;
    }
    
    /* Floating Buttons - Smaller on very small screens */
    body {
        padding-bottom: 85px;
    }
    
    .fixed-bottom-buttons {
        padding: 10px;
        gap: 8px;
    }
    
    .fixed-download-btn,
    .fixed-whatsapp-btn {
        padding: 12px 14px;
        gap: 8px;
    }
    
    .fixed-download-btn i,
    .fixed-whatsapp-btn i {
        font-size: 16px;
    }
    
    .btn-label {
        font-size: 9px;
    }
    
    .btn-main-text {
        font-size: 11px;
    }
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Prevent horizontal overflow */
body > * {
    max-width: 100%;
    overflow-x: hidden;
}

/* Global Hover Effects */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Smooth transitions for all interactive elements */
a, button, .payment-method, .why-item, .feature-item, .stat-card, .winner-card, .testimonial-card, .step-card {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

/* Glow effect on hover for primary elements */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.6), 0 0 30px rgba(255, 107, 53, 0.4);
    }
}

/* Shimmer effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Pulse animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Touch-friendly improvements */
button,
a,
input,
select,
textarea {
    -webkit-tap-highlight-color: rgba(255, 107, 53, 0.3);
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
    width: 100%;
}

/* Button base styles */
button,
a.btn,
.download-btn-main,
.cta-button,
.play-button,
.download-footer-btn,
.whatsapp-button,
.download-apk-btn {
    box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
}

/* Image alignment fix */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Text alignment utilities */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Flex utilities */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container alignment */
.container {
    box-sizing: border-box;
}

/* Smooth scrolling on mobile */
@media (max-width: 768px) {
    * {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Better text rendering on mobile */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Improve tap targets */
    button,
    a.btn,
    .download-btn-main,
    .cta-button,
    .play-button {
        min-height: 44px;
        min-width: 44px;
    }
}
