/* ===============================================
   AVIATOR INDIA - Modern Minimalist Design
   =============================================== */

/* CSS Variables */
:root {
    /* Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a24;
    --bg-card-hover: #22222e;
    
    --accent-primary: #e63946;
    --accent-secondary: #ff6b6b;
    --accent-gradient: linear-gradient(135deg, #e63946 0%, #ff6b6b 100%);
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6b6b7b;
    
    --success: #2ecc71;
    --warning: #f39c12;
    --danger: #e74c3c;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 24px;
    
    /* Typography */
    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(230, 57, 70, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===============================================
   HEADER
   =============================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 28px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-links {
    padding: 20px;
}

.mobile-nav-links li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-links a {
    display: block;
    padding: 15px 0;
    color: var(--text-secondary);
    font-weight: 500;
}

.mobile-lang-switcher {
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
}

.mobile-lang-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.mobile-lang-toggle:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-primary);
}

.mobile-lang-toggle i {
    transition: transform var(--transition-fast);
}

.mobile-lang-switcher.open .mobile-lang-toggle i {
    transform: rotate(180deg);
}

.mobile-lang-toggle-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-lang-toggle-content .fa-globe {
    color: var(--accent-primary);
}

.mobile-lang-options {
    display: none;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    padding: 12px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
}

.mobile-lang-switcher.open .mobile-lang-options {
    display: flex;
}

.mobile-lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.mobile-lang-option:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
    border-color: var(--accent-primary);
}

.mobile-lang-option.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}

.mobile-lang-option .lang-code {
    min-width: 28px;
    font-weight: 600;
}

/* Language Switcher */
.language-switcher {
    position: relative;
    margin-left: 20px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 600;
}

.lang-btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-primary);
}

.lang-flag {
    font-weight: 700;
    font-size: 0.8rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-fast);
    min-width: 140px;
    box-shadow: var(--shadow-md);
    z-index: 100;
}

.language-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.lang-option:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

.lang-option.active {
    background: rgba(230, 57, 70, 0.1);
    color: var(--accent-primary);
}

.lang-option .lang-flag {
    width: 24px;
    text-align: center;
}

/* ===============================================
   BUTTONS
   =============================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-medium);
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(230, 57, 70, 0.4);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-primary);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    background: rgba(230, 57, 70, 0.1);
}

.btn-block {
    width: 100%;
}

/* ===============================================
   HERO SECTION
   =============================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 80px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero > .container {
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, #a0a0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--accent-secondary);
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Browser Simulation */
.browser-simulation {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.browser-address {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.browser-address i {
    color: var(--success);
    font-size: 0.75rem;
}

.browser-actions {
    color: var(--text-muted);
}

/* Game Simulation */
.game-simulation {
    position: relative;
}

.game-header {
    display: flex;
    justify-content: center;
    padding: 8px;
    background: #f1c40f;
}

.game-mode {
    font-size: 0.75rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-area {
    position: relative;
    height: 280px;
    background: linear-gradient(180deg, #0d1b2a 0%, #1b263b 50%, #415a77 100%);
    overflow: hidden;
}

#aviatorCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.multiplier {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-mono);
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
    z-index: 10;
}

.game-controls {
    padding: 16px;
    background: var(--bg-secondary);
}

.bet-panel {
    display: flex;
    gap: 12px;
    align-items: center;
}

.bet-amount {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.currency {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
}

.bet-amount input {
    width: 80px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 600;
    outline: none;
}

.bet-btn {
    flex: 1;
    padding: 14px 24px;
    background: var(--success);
    border: none;
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
}

.bet-btn:hover {
    background: #27ae60;
}

.bet-btn.cash-out {
    background: var(--warning);
}

/* Hero Background Effects */
.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-primary);
    top: -200px;
    right: -200px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #3a0ca3;
    bottom: -100px;
    left: -100px;
}

/* ===============================================
   SECTIONS
   =============================================== */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: 100px;
    color: var(--accent-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.section-intro {
    max-width: 800px;
    margin: -24px auto 48px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ===============================================
   ABOUT SECTION
   =============================================== */
.about {
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: start;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.feature i {
    color: var(--accent-primary);
    font-size: 1.2rem;
}

.feature span {
    font-weight: 600;
}

.about-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 57, 70, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.card-icon i {
    color: var(--accent-primary);
    font-size: 1.5rem;
}

.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.about-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.card-list li:last-child {
    border-bottom: none;
}

.card-list i {
    color: var(--success);
}

/* ===============================================
   TRUST SECTION
   =============================================== */
.trust-section {
    background: linear-gradient(135deg, var(--bg-primary) 0%, #0d0d14 100%);
}

.trust-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: center;
}

.trust-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.badge i {
    font-size: 2rem;
    color: var(--accent-primary);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.badge-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===============================================
   HOW TO PLAY SECTION
   =============================================== */
.how-to-play {
    background: var(--bg-secondary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.step-card {
    position: relative;
    padding: 32px 24px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition-medium);
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--accent-gradient);
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.85rem;
}

.step-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 16px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
}

.step-icon i {
    font-size: 1.5rem;
    color: var(--accent-primary);
}

.step-card h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pro-tip {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: var(--radius-lg);
}

.tip-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--success);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
}

.tip-content h4 {
    color: var(--success);
    margin-bottom: 8px;
}

.tip-content p {
    color: var(--text-secondary);
}

/* ===============================================
   LOGIN SECTION
   =============================================== */
.login-section {
    background: var(--bg-primary);
}

.login-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
}

.login-steps > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.login-step {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.login-step:last-child {
    border-bottom: none;
}

.login-step-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    color: var(--accent-primary);
}

.login-step-content h4 {
    margin-bottom: 8px;
}

.login-step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.login-info-card {
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    height: fit-content;
}

.login-info-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.login-info-card h3 i {
    color: var(--accent-primary);
}

.login-info-card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.login-info-card ul li:last-child {
    border-bottom: none;
}

.login-info-card ul li i {
    color: var(--success);
}

/* ===============================================
   DEMO SECTION
   =============================================== */
.demo-section {
    background: var(--bg-secondary);
}

.demo-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.demo-iframe-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a24 0%, #12121a 100%);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.demo-iframe-wrapper iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.demo-placeholder-loader {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #415a77 100%);
    border-radius: var(--radius-lg);
}

.loader-content {
    text-align: center;
}

.loader-plane {
    font-size: 3rem;
    color: var(--accent-primary);
    animation: fly 2s ease-in-out infinite;
}

@keyframes fly {
    0%, 100% { 
        transform: translateY(0) rotate(-10deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(-10deg); 
    }
}

.loader-content p {
    margin-top: 16px;
    color: var(--text-secondary);
    font-size: 1rem;
}

.demo-text-bottom {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.demo-text-bottom p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.demo-text-bottom .btn {
    margin-top: 12px;
}

/* ===============================================
   DOWNLOAD SECTION
   =============================================== */
.download-section {
    background: var(--bg-primary);
}

.download-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
}

.download-info p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.download-steps {
    margin-top: 32px;
}

.download-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.download-step-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.85rem;
}

.download-step p {
    margin: 0;
    padding-top: 4px;
}

.download-card {
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
}

/* iPhone Mockup */
.iphone-mockup {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.iphone-frame {
    position: relative;
    width: 220px;
    height: 450px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 0 0 3px #333,
        0 0 0 6px #1a1a1a,
        0 20px 50px rgba(0, 0, 0, 0.5);
}

.iphone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.iphone-notch::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 30px;
    overflow: hidden;
}

.iphone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.iphone-home-bar {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #555;
    border-radius: 2px;
}

.download-card h3 {
    margin-bottom: 12px;
}

.download-card > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.app-requirements {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.requirement {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.requirement i {
    color: var(--accent-primary);
}

/* ===============================================
   TRICKS SECTION
   =============================================== */
.tricks-section {
    background: var(--bg-secondary);
}

.tricks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.trick-card {
    padding: 28px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.trick-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.trick-header i {
    font-size: 1.5rem;
    color: var(--accent-primary);
}

.trick-risk {
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.trick-risk.low {
    background: rgba(46, 204, 113, 0.1);
    color: var(--success);
}

.trick-risk.medium {
    background: rgba(243, 156, 18, 0.1);
    color: var(--warning);
}

.trick-risk.high {
    background: rgba(231, 76, 60, 0.1);
    color: var(--danger);
}

.trick-card h3 {
    margin-bottom: 12px;
}

.trick-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.trick-example {
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trick-example span {
    color: var(--accent-secondary);
}

.bankroll-tips {
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.bankroll-tips h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.bankroll-tips h3 i {
    color: var(--accent-primary);
}

.tips-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tip {
    text-align: center;
}

.tip i {
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin-bottom: 12px;
}

.tip p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===============================================
   REAL MONEY SECTION
   =============================================== */
.real-money-section {
    background: var(--bg-primary);
}

.real-money-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
}

.real-money-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.payment-methods {
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.payment-methods h3 {
    margin-bottom: 24px;
    text-align: center;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.method i {
    font-size: 1.5rem;
    color: var(--accent-primary);
}

.method span {
    font-weight: 500;
    color: var(--text-secondary);
}

/* ===============================================
   CASINOS SECTION
   =============================================== */
.casinos-section {
    background: var(--bg-secondary);
}

.casinos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.casino-card {
    position: relative;
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition-medium);
}

.casino-card:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 57, 70, 0.3);
}

.casino-card.featured {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.casino-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--accent-gradient);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.casino-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.casino-logo img {
    max-height: 60px;
    max-width: 160px;
    object-fit: contain;
}

.casino-card h3 {
    margin-bottom: 12px;
}

.casino-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
    color: #f1c40f;
}

.casino-rating span {
    margin-left: 8px;
    color: var(--text-secondary);
    font-weight: 600;
}

.casino-features {
    text-align: left;
    margin-bottom: 24px;
}

.casino-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.casino-features li:last-child {
    border-bottom: none;
}

.casino-features i {
    color: var(--success);
}

/* ===============================================
   DAMAN SECTION
   =============================================== */
.daman-section {
    background: linear-gradient(135deg, #0d0d14 0%, #1a0a0a 100%);
}

.daman-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

.daman-phone-mockup {
    position: sticky;
    top: 100px;
}

.daman-phone-mockup .iphone-frame {
    width: 260px;
    height: 530px;
    box-shadow: 
        0 0 0 3px #333,
        0 0 0 6px #1a1a1a,
        0 30px 60px rgba(0, 0, 0, 0.5);
}

.daman-right-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.daman-info {
    padding-right: 0;
}

.daman-login-card {
    margin-left: 0;
}

.daman-info p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.daman-highlights {
    margin-top: 32px;
}

.highlight {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
}

.highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 57, 70, 0.1);
    border-radius: var(--radius-sm);
}

.highlight-icon i {
    color: var(--accent-primary);
    font-size: 1.2rem;
}

.highlight-content h4 {
    margin-bottom: 4px;
}

.highlight-content p {
    margin: 0;
    font-size: 0.9rem;
}

.daman-login-card {
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.daman-login-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.daman-login-card h3 i {
    color: var(--accent-primary);
}

.daman-login-card > p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.daman-steps {
    margin-bottom: 24px;
    padding-left: 20px;
}

.daman-steps li {
    position: relative;
    padding: 12px 0 12px 20px;
    border-left: 2px solid var(--border-color);
    color: var(--text-secondary);
}

.daman-steps li::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--accent-primary);
    border-radius: 50%;
}

.daman-cta {
    display: flex;
    gap: 12px;
}

.daman-cta .btn {
    flex: 1;
}

/* ===============================================
   PLATFORM SECTIONS (1win, 1xBet)
   =============================================== */
.platform-section {
    background: var(--bg-secondary);
}

.platform-section.platform-alt {
    background: linear-gradient(135deg, #0d0d14 0%, #0a1a0a 100%);
}

.platform-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

.platform-phone-mockup {
    position: sticky;
    top: 100px;
}

.platform-phone-mockup .iphone-frame {
    width: 260px;
    height: 530px;
    box-shadow: 
        0 0 0 3px #333,
        0 0 0 6px #1a1a1a,
        0 30px 60px rgba(0, 0, 0, 0.5);
}

.platform-right-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.platform-info p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.platform-highlights {
    margin-top: 32px;
}

.platform-login-card {
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.platform-login-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.platform-login-card h3 i {
    color: var(--accent-primary);
}

.platform-login-card > p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.platform-steps {
    margin-bottom: 24px;
    padding-left: 20px;
}

.platform-steps li {
    position: relative;
    padding: 12px 0 12px 20px;
    border-left: 2px solid var(--border-color);
    color: var(--text-secondary);
}

.platform-steps li::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--accent-primary);
    border-radius: 50%;
}

.platform-cta {
    display: flex;
    gap: 12px;
}

.platform-cta .btn {
    flex: 1;
}

/* ===============================================
   FAQ SECTION
   =============================================== */
.faq-section {
    background: var(--bg-secondary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-card-hover);
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--accent-primary);
    transition: var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--text-secondary);
}

/* ===============================================
   RESPONSIBLE GAMING
   =============================================== */
.responsible-section {
    background: var(--bg-primary);
    padding: 60px 0;
}

.responsible-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: var(--radius-lg);
}

.responsible-content i {
    font-size: 2.5rem;
    color: var(--warning);
    margin-bottom: 16px;
}

.responsible-content h3 {
    margin-bottom: 12px;
}

.responsible-content p {
    max-width: 700px;
    color: var(--text-secondary);
}

/* ===============================================
   FOOTER
   =============================================== */
.footer {
    background: var(--bg-secondary);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links h4,
.footer-info h4 {
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.footer-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: 20px;
}

.footer-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-badges i {
    color: var(--accent-primary);
}

/* ===============================================
   SCROLL TO TOP BUTTON
   =============================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-gradient);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 50px rgba(230, 57, 70, 0.5);
}

@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

/* ===============================================
   RESPONSIVE
   =============================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-content,
    .trust-content,
    .login-content,
    .download-content,
    .platform-content,
    .real-money-content {
        grid-template-columns: 1fr;
    }
    
    .daman-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .daman-phone-mockup,
    .platform-phone-mockup {
        position: relative;
        top: auto;
        display: flex;
        justify-content: center;
    }
    
    .daman-phone-mockup .iphone-frame,
    .platform-phone-mockup .iphone-frame {
        width: 220px;
        height: 450px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tricks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tips-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .casinos-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .language-switcher {
        display: none;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .multiplier {
        font-size: 2.5rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .tricks-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-row {
        grid-template-columns: 1fr;
    }
    
    .demo-iframe-wrapper {
        border-radius: var(--radius-md);
    }
    
    .demo-iframe-wrapper iframe {
        height: 550px;
    }
    
    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .app-requirements {
        flex-direction: column;
        gap: 12px;
    }
    
    .iphone-frame {
        width: 180px;
        height: 370px;
        border-radius: 32px;
        padding: 10px;
    }
    
    .iphone-notch {
        width: 80px;
        height: 22px;
        top: 10px;
    }
    
    .iphone-screen {
        border-radius: 24px;
    }
    
    .daman-cta {
        flex-direction: column;
    }
    
    .daman-phone-mockup .iphone-frame,
    .platform-phone-mockup .iphone-frame {
        width: 180px;
        height: 370px;
    }
    
    .platform-cta {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 90px 0 40px;
        min-height: auto;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .browser-simulation {
        border-radius: 0;
    }
    
    .demo-iframe-wrapper {
        margin: 0 auto;
        border-radius: 0;
        max-width: none;
    }
    
    .demo-iframe-wrapper iframe {
        height: 520px;
    }
    
    .game-area {
        height: 200px;
    }
    
    .multiplier {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
}

