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

:root {
    /* Sleek Modern Dark Theme */
    --primary: #f0b90b;
    --primary-dark: #d4a309;
    --primary-light: #f4c430;
    --primary-glow: rgba(240, 185, 11, 0.2);
    
    /* Consistent Binance Gold Accents */
    --accent-1: #f0b90b;
    --accent-2: #f0b90b;
    --accent-3: #f0b90b;
    --accent-4: #f0b90b;
    --accent-5: #f0b90b;
    --accent-6: #f0b90b;
    
    /* Sleek Dark Palette */
    --bg-primary: #000000;
    --bg-secondary: #080808;
    --bg-card: #0f0f0f;
    --bg-elevated: #181818;
    --bg-glass: rgba(15, 15, 15, 0.98);
    
    /* Refined Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #e8e8e8;
    --text-muted: #999999;
    --text-accent: #f0b90b;
    
    /* Modern Borders & Shadows */
    --border-color: #1a1a1a;
    --border-accent: #f0b90b;
    --border-subtle: #333333;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.8);
    --shadow-glow: 0 0 20px rgba(240, 185, 11, 0.15);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(240, 185, 11, 0.2);
    
    /* Glass Effects */
    --glass: rgba(15, 15, 15, 0.95);
    --glass-border: rgba(240, 185, 11, 0.15);
    
    /* Animation Timings */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.75rem;
    font-weight: 650;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.12;
    letter-spacing: -0.025em;
}

h3 {
    font-size: 1.65rem;
    font-weight: 600;
    letter-spacing: -0.015em;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

/* Sleek Modern Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #000000;
    box-shadow: var(--shadow-md), var(--shadow-glow);
    border: 1px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: var(--primary-light);
    scale: 1.02;
}

.btn-primary:active {
    transform: translateY(0);
    scale: 0.98;
    transition: var(--transition-fast);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-subtle);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(240, 185, 11, 0.05);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-telegram {
    background: #0088cc;
    color: white;
    border: 1px solid #0088cc;
    box-shadow: var(--shadow-md), 0 0 20px rgba(0, 136, 204, 0.2);
}

.btn-telegram:hover {
    background: #0077bb;
    border-color: #0077bb;
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-lg), 0 0 25px rgba(0, 136, 204, 0.3);
    color: white;
}

.btn-telegram:active {
    transform: translateY(0) scale(0.98);
    transition: var(--transition-fast);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg-glass);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
    background: rgba(240, 185, 11, 0.08);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.nav-toggle:hover {
    background: rgba(240, 185, 11, 0.08);
}

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

/* Mobile Navigation Active State */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Menu */
.nav-links.mobile-active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-glass);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
}

.nav-links.mobile-active a {
    padding: 1rem 2rem;
    border-radius: 0;
    border-bottom: 1px solid var(--border-subtle);
    text-align: center;
}

.nav-links.mobile-active a:last-child {
    border-bottom: none;
}

.nav-links.mobile-active a:hover {
    background: rgba(240, 185, 11, 0.08);
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    width: 100%;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.8rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.binance-partnership {
    margin-bottom: 1.8rem;
    text-align: left;
}

.binance-logo-container {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(240, 185, 11, 0.12);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(240, 185, 11, 0.25);
    transition: var(--transition-smooth);
}

.binance-logo-container i {
    color: var(--primary);
    font-size: 1.2rem;
}

.binance-logo-container:hover {
    background: rgba(240, 185, 11, 0.18);
    border-color: rgba(240, 185, 11, 0.35);
    transform: translateY(-1px);
}

.binance-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.partnership-text {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-glass);
    color: var(--primary);
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.hero-badge:hover {
    background: rgba(240, 185, 11, 0.08);
    border-color: var(--primary);
    transform: translateY(-1px) scale(1.02);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.hero h1 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 95%;
}

.trading-pairs {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.trading-pairs i {
    color: var(--primary);
    font-size: 0.9rem;
}

.trading-pairs .fas.fa-exchange-alt {
    color: var(--text-muted);
    font-size: 0.7rem;
    margin: 0 0.3rem;
}

.trading-hours {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.trading-hours i {
    color: var(--primary);
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.payment-methods i {
    color: var(--primary);
    font-size: 0.9rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.binance-qr {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
}

.binance-qr:hover {
    border-color: rgba(240, 185, 11, 0.3);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(240, 185, 11, 0.1);
}

.qr-logo {
    text-align: center;
    margin-bottom: 1rem;
}

.qr-binance-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.qr-image {
    width: 220px;
    height: 220px;
    object-fit: contain;
    border-radius: 0;
    box-shadow: var(--shadow-md);
}

.simple-guidelines {
    margin-top: 1.2rem;
    text-align: center;
}

.simple-guidelines p {
    margin-bottom: 0.4rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
}

.simple-guidelines p:last-child {
    margin-bottom: 0;
    margin-top: 0.6rem;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(240, 185, 11, 0.2);
    font-weight: 500;
}

/* Quick Stats Section */
.quick-stats {
    padding: 35px 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
    flex: 1;
    min-width: 110px;
    padding: 0.5rem;
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-2px);
}

.stat-item i {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.15rem;
}

.stat-item .stat-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1;
}

/* Responsive adjustments for quick stats */
@media (max-width: 768px) {
    .quick-stats {
        padding: 25px 0;
    }
    
    .stats-row {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
        max-width: 100%;
    }
    
    .stat-item {
        min-width: 100px;
        flex: 0 0 auto;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .quick-stats {
        padding: 20px 0;
    }
    
    .stats-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .stat-item {
        min-width: 80px;
        padding: 0.4rem;
        max-width: none;
    }
    
    .stat-item i {
        font-size: 1rem;
    }
    
    .stat-item .stat-number {
        font-size: 1rem;
    }
    
    .stat-item .stat-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 360px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 0 5px;
    }
    
    .stat-item {
        min-width: 70px;
        padding: 0.3rem;
    }
    
    .stat-item i {
        font-size: 0.9rem;
    }
    
    .stat-item .stat-number {
        font-size: 0.85rem;
    }
    
    .stat-item .stat-label {
        font-size: 0.6rem;
    }
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
}

.stats h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
}

.stat-card {
    background: var(--bg-glass);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.stat-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
    background: rgba(240, 185, 11, 0.04);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    box-shadow: var(--shadow-sm);
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.4rem;
    letter-spacing: 0.5px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.stat-description {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-primary);
    position: relative;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.8rem;
    margin-top: 2.5rem;
}

.step-card {
    background: var(--bg-glass);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition-smooth);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.step-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
    background: rgba(240, 185, 11, 0.04);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(240, 185, 11, 0.3);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(240, 185, 11, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 1.2rem;
}

.step-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.step-card h3 {
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-muted);
}

/* Security Section */
.safety {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

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

.safety-header .protection-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg), 0 0 30px rgba(240, 185, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.safety-header .protection-icon::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: shine 3s ease-in-out infinite;
}

.safety-header .protection-icon i {
    font-size: 3rem;
    color: #000000;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

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

.safety-title i {
    font-size: 3.5rem;
    color: var(--primary);
}

.safety-title h2 {
    margin-bottom: 0;
}

.safety-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.protection-card {
    text-align: center;
    padding: 2rem 1rem;
}

.seller-protection h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.buyer-protection h3 {
    color: #27ae60;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.protection-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.seller-protection .protection-icon {
    background: #e74c3c;
}

.buyer-protection .protection-icon {
    background: #27ae60;
}

.protection-icon i {
    font-size: 2rem;
    color: white;
}

.protection-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.legal-guarantee {
    text-align: center;
    padding: 2rem 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.legal-icon {
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-sm);
}

.legal-icon i {
    font-size: 2.2rem;
    color: white;
}

.legal-guarantee h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.5rem;
}

.legal-guarantee p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--bg-primary);
    position: relative;
}

.contact h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.contact-item {
    background: var(--bg-glass);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    display: flex;
    gap: 1.5rem;
    align-items: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-item:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    background: rgba(240, 185, 11, 0.04);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.contact-icon i {
    font-size: 1.2rem;
    color: white;
}

.contact-text h3 {
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.contact-text p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-brand {
    text-align: left;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 100%;
}

/* Social Proof Badges */
.social-proof {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.proof-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(240, 185, 11, 0.08);
    color: var(--primary);
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(240, 185, 11, 0.2);
    transition: var(--transition-smooth);
}

.proof-badge:hover {
    background: rgba(240, 185, 11, 0.12);
    border-color: rgba(240, 185, 11, 0.3);
    transform: translateY(-1px);
}

.proof-badge i {
    font-size: 0.9rem;
}

.footer-details {
    text-align: left;
}

.footer-details h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.company-details span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Company Detail Items with Icons */
.company-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.company-detail-item i {
    color: var(--primary);
    font-size: 0.9rem;
    width: 16px;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.company-detail-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

/* Address link styling within company detail item */
.company-detail-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
    line-height: 1.4;
}

.company-detail-item a:hover {
    color: var(--primary);
}

.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-company-info {
    margin-bottom: 1rem;
}

.footer-company-info p {
    margin-bottom: 0.6rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Legal Links */
.legal-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.legal-link:hover {
    color: var(--primary);
}

/* Mobile Footer Responsiveness */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .social-proof {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .proof-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.7rem;
    }
    
    .footer-details {
        text-align: center;
    }
    
    .company-details {
        align-items: center;
    }
    
    .company-detail-item {
        justify-content: center;
    }
    
    .legal-links {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .social-proof {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }
    
    .proof-badge {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .company-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .security-badge {
        padding: 1rem;
        max-width: 280px;
    }
    
    .security-icon {
        width: 45px;
        height: 45px;
    }
    
    .security-icon i {
        font-size: 1.1rem;
    }
    
    .footer-cta {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .legal-links {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: #000000;
    padding: 16px 22px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transition: var(--transition-smooth);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.floating-btn.btn-telegram {
    background: #0088cc;
    color: white;
    box-shadow: var(--shadow-lg), 0 0 20px rgba(0, 136, 204, 0.3);
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-hover);
    color: white;
}

.floating-btn.btn-telegram:hover {
    background: #0077bb;
    box-shadow: var(--shadow-lg), 0 0 25px rgba(0, 136, 204, 0.4);
    color: white;
}

.floating-btn i {
    font-size: 1.2rem;
}

.floating-btn span {
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--bg-primary);
    position: relative;
}

/* FAQ Header */
.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header .faq-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg), 0 0 30px rgba(240, 185, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.faq-header .faq-icon::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: shine 3s ease-in-out infinite;
}

.faq-header .faq-icon i {
    font-size: 3rem;
    color: #000000;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

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

.faq-title i {
    font-size: 3rem;
    color: var(--primary);
}

.faq-title h2 {
    margin-bottom: 0;
}

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

.faq-item {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    margin-bottom: 1.2rem;
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background: rgba(240, 185, 11, 0.06);
}

.faq-question h3 {
    margin-bottom: 0;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition-smooth);
    font-size: 1rem;
}

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

.faq-answer {
    padding: 0 2.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-answer {
    padding: 0 2.5rem 2rem;
    max-height: 250px;
}

.faq-answer p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 20px;
    }
    
    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .binance-partnership {
        margin-bottom: 1.5rem;
    }
    
    .binance-logo-container {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
    }
    
    .trading-pairs, .trading-hours, .payment-methods {
        justify-content: center;
        font-size: 0.85rem;
    }
    
    .binance-qr {
        padding: 1.5rem;
        margin: 0 auto;
        max-width: 320px;
    }
    
    .qr-image {
        width: 180px;
        height: 180px;
    }
    
    .simple-guidelines {
        margin-top: 1rem;
    }
    
    .simple-guidelines p {
        font-size: 0.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        padding: 12px 16px;
    }
    
    .floating-btn span {
        display: none;
    }
    
    /* Quick Stats Mobile Optimization */
    .quick-stats {
        padding: 25px 0;
    }
    
    .stats-row {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .stat-item {
        min-width: 100px;
        flex: 0 0 auto;
    }
    
    /* Safety Section Mobile */
    .safety {
        padding: 60px 0;
    }
    
    .protection-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .protection-card {
        padding: 1.5rem 1rem;
    }
    
    .legal-guarantee {
        padding: 1.5rem 1rem;
    }
    
    /* FAQ Mobile */
    .faq {
        padding: 60px 0;
    }
    
    .faq-header {
        margin-bottom: 2rem;
    }
    
    .faq-header .faq-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 1.2rem;
    }
    
    .faq-header .faq-icon i {
        font-size: 2.5rem;
    }
    
    .faq-title {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-title i {
        font-size: 2.5rem;
    }
    
    .faq-title h2 {
        font-size: 1.8rem;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 0;
    }
    
    .faq-question {
        padding: 1.5rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .company-details {
        align-items: center;
    }
    
    .location {
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-container {
        padding: 0 15px;
        gap: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .binance-logo-container {
        flex-direction: row;
        padding: 0.6rem 0.8rem;
        gap: 0.5rem;
        max-width: 300px;
        justify-content: center;
    }
    
    .binance-logo-container i {
        font-size: 1.1rem;
    }
    
    .partnership-text {
        font-size: 0.8rem;
    }
    
    .trading-pairs, .trading-hours, .payment-methods {
        font-size: 0.8rem;
        gap: 0.5rem;
        margin-bottom: 0.6rem;
    }
    
    .binance-qr {
        padding: 1.2rem;
        border-radius: 16px;
        max-width: 280px;
    }
    
    .qr-image {
        width: 160px;
        height: 160px;
    }
    
    .simple-guidelines {
        margin-top: 0.8rem;
    }
    
    .simple-guidelines p {
        font-size: 0.75rem;
        line-height: 1.3;
        margin-bottom: 0.3rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Quick Stats Small Mobile */
    .quick-stats {
        padding: 20px 0;
    }
    
    .stats-row {
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 80px;
        padding: 0.4rem;
    }
    
    .stat-item i {
        font-size: 0.9rem;
    }
    
    .stat-item .stat-number {
        font-size: 0.9rem;
    }
    
    .stat-item .stat-label {
        font-size: 0.65rem;
    }
    
    /* Safety Section Small Mobile */
    .safety {
        padding: 50px 0;
    }
    
    .safety-title h2 {
        font-size: 1.8rem;
    }
    
    .safety-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .protection-card {
        padding: 1.2rem 0.8rem;
    }
    
    .protection-card h3 {
        font-size: 1.2rem;
    }
    
    .protection-icon {
        width: 60px;
        height: 60px;
    }
    
    .protection-icon i {
        font-size: 1.5rem;
    }
    
    .legal-guarantee {
        padding: 1.2rem 0.8rem;
    }
    
    .legal-icon {
        width: 70px;
        height: 70px;
    }
    
    .legal-icon i {
        font-size: 1.8rem;
    }
    
    /* FAQ Small Mobile */
    .faq {
        padding: 50px 0;
    }
    
    .faq-header {
        margin-bottom: 1.5rem;
    }
    
    .faq-header .faq-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .faq-header .faq-icon i {
        font-size: 2.2rem;
    }
    
    .faq-title h2 {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .faq-question {
        padding: 1.2rem 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .faq-answer {
        padding: 0 1.2rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1.2rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Footer Small Mobile */
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-brand p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .company-details span {
        font-size: 0.85rem;
    }
    
    .footer-company-info p {
        font-size: 0.8rem;
    }
    
    .location a {
        font-size: 0.8rem;
    }
    
    /* Floating Button Small Mobile */
    .floating-contact {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-btn {
        padding: 10px 14px;
        border-radius: 40px;
    }
    
    .floating-btn i {
        font-size: 1.1rem;
    }
    
    /* General Mobile Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    p {
        font-size: 0.95rem;
    }
    
    /* Card Padding Adjustments */
    .stat-card, .step-card {
        padding: 1.2rem;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
    
    /* Navigation Mobile */
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    /* Section Padding Mobile */
    .safety, .faq, .contact {
        padding: 50px 0;
    }
    
    .how-it-works {
        padding: 50px 0;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .binance-partnership {
        text-align: center;
    }
    
    .binance-logo-container {
        flex-direction: row;
        padding: 0.5rem 0.7rem;
        gap: 0.4rem;
        max-width: 280px;
        justify-content: center;
    }
    
    .partnership-text {
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    .binance-qr {
        padding: 1rem;
        max-width: 260px;
    }
    
    .qr-image {
        width: 140px;
        height: 140px;
    }
    
    .stat-item {
        min-width: 70px;
    }
    
    .stat-item .stat-number {
        font-size: 0.85rem;
    }
    
    .stat-item .stat-label {
        font-size: 0.6rem;
    }
    
    .floating-btn {
        padding: 8px 12px;
    }
    
    .floating-btn i {
        font-size: 1rem;
    }
    
    /* Safety section for very small screens */
    .safety-title h2 {
        font-size: 1.4rem;
    }
    
    .safety-subtitle {
        font-size: 0.9rem;
    }
    
    .protection-card {
        padding: 1rem 0.5rem;
    }
    
    .protection-card h3 {
        font-size: 1.1rem;
    }
    
    .protection-icon {
        width: 55px;
        height: 55px;
    }
    
    .protection-icon i {
        font-size: 1.3rem;
    }
}

/* Landscape Mobile Optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 60px 0 30px;
        min-height: auto;
    }
    
    .hero-container {
        gap: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .trading-pairs, .trading-hours, .payment-methods {
        margin-bottom: 0.5rem;
    }
    
    .binance-qr {
        padding: 1rem;
        max-width: 240px;
    }
    
    .qr-image {
        width: 120px;
        height: 120px;
    }
    
    .simple-guidelines {
        margin-top: 0.8rem;
    }
    
    .simple-guidelines p {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
    }
    
    .quick-stats {
        padding: 20px 0;
    }
    
    .safety, .faq, .contact, .how-it-works {
        padding: 40px 0;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Enhanced focus states for accessibility */
.btn:focus-visible,
.nav-links a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 8px;
}

/* Improved text selection */
::selection {
    background: var(--primary);
    color: #ffffff;
}

::-moz-selection {
    background: var(--primary);
    color: #ffffff;
}

/* Touch-friendly improvements for mobile */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
        box-shadow: var(--shadow-md);
    }
    
    .btn:active {
        transform: scale(0.98);
        transition: var(--transition-fast);
    }
    
    .hero-badge:hover {
        transform: none;
        box-shadow: var(--shadow-sm);
    }
    
    .hero-badge:active {
        transform: scale(0.98);
    }
    
    .binance-logo-container:hover {
        transform: none;
    }
    
    .binance-logo-container:active {
        transform: scale(0.98);
    }
    
    .stat-item:hover {
        transform: none;
    }
    
    .stat-item:active {
        transform: scale(0.98);
    }
    
    .faq-question:hover {
        background: rgba(240, 185, 11, 0.03);
    }
    
    .faq-question:active {
        background: rgba(240, 185, 11, 0.08);
    }
    
    .nav-links a:hover {
        transform: none;
    }
    
    .nav-links a:active {
        transform: scale(0.98);
    }
}

/* Better touch targets for mobile */
@media (max-width: 768px) {
    .btn {
        min-height: 44px; /* Minimum touch target size */
        touch-action: manipulation; /* Disable double-tap zoom */
    }
    
    .nav-toggle {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }
    
    .faq-question {
        min-height: 44px;
        display: flex;
        align-items: center;
        touch-action: manipulation;
    }
    
    .floating-btn {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }
    
    /* Improve touch scrolling */
    .nav-links.mobile-active {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
    
    /* Better tap highlighting */
    * {
        -webkit-tap-highlight-color: rgba(240, 185, 11, 0.2);
    }
}

/* Enhanced accessibility */
.nav-toggle:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.nav-toggle[tabindex="0"]:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Improved focus states for better accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --bg-primary: #000000;
        --text-primary: #ffffff;
        --border-color: #ffffff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Prevent zoom on input focus for iOS */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    input, select, textarea {
        font-size: 16px;
    }
}

/* Mobile Safety Section Improvements */
@media (max-width: 768px) {
    .safety {
        padding: 60px 0;
    }
    
    .safety-header {
        margin-bottom: 2rem;
        padding: 0 20px;
    }
    
    .safety-header .protection-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 1.2rem;
    }
    
    .safety-header .protection-icon i {
        font-size: 2.5rem;
    }
    
    .safety-title {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .safety-title i {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .safety-title h2 {
        font-size: 1.8rem;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 0;
    }
    
    .safety-subtitle {
        font-size: 1rem;
        padding: 0 10px;
        line-height: 1.5;
        text-align: center;
    }
    
    .protection-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
        padding: 0 20px;
    }
    
    .protection-card {
        padding: 1.5rem 1rem;
    }
    
    .legal-guarantee {
        padding: 1.5rem 1rem;
        margin: 0 20px;
    }
}

@media (max-width: 480px) {
    .safety {
        padding: 50px 0;
    }
    
    .safety-header {
        margin-bottom: 1.5rem;
        padding: 0 15px;
    }
    
    .safety-header .protection-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .safety-header .protection-icon i {
        font-size: 2.2rem;
    }
    
    .safety-title h2 {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .safety-subtitle {
        font-size: 0.95rem;
        padding: 0 5px;
    }
    
    .protection-grid {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        padding: 0 15px;
    }
    
    .protection-card {
        padding: 1.2rem 0.8rem;
    }
    
    .protection-card h3 {
        font-size: 1.2rem;
    }
    
    .protection-icon {
        width: 60px;
        height: 60px;
    }
    
    .protection-icon i {
        font-size: 1.5rem;
    }
    
    .legal-guarantee {
        padding: 1.2rem 0.8rem;
        margin: 0 15px;
    }
    
    .legal-icon {
        width: 70px;
        height: 70px;
    }
    
    .legal-icon i {
        font-size: 1.8rem;
    }
}

/* Hero Section Mobile Improvements */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .binance-partnership {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .binance-logo-container {
        flex-direction: row;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
        margin: 0 auto;
        max-width: 320px;
        justify-content: center;
    }
    
    .trading-pairs, .trading-hours, .payment-methods {
        justify-content: center;
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .binance-qr {
        padding: 1.5rem;
        margin: 0 auto;
        max-width: 320px;
    }
    
    .qr-image {
        width: 180px;
        height: 180px;
    }
    
    .simple-guidelines {
        margin-top: 1rem;
    }
    
    .simple-guidelines p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-container {
        padding: 0 15px;
        gap: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .binance-logo-container {
        flex-direction: row;
        padding: 0.6rem 0.8rem;
        gap: 0.5rem;
        max-width: 300px;
        justify-content: center;
    }
    
    .binance-logo-container i {
        font-size: 1.1rem;
    }
    
    .partnership-text {
        font-size: 0.8rem;
    }
    
    .trading-pairs, .trading-hours, .payment-methods {
        font-size: 0.8rem;
        gap: 0.5rem;
        margin-bottom: 0.6rem;
    }
    
    .binance-qr {
        padding: 1.2rem;
        border-radius: 16px;
        max-width: 280px;
    }
    
    .qr-image {
        width: 160px;
        height: 160px;
    }
    
    .simple-guidelines {
        margin-top: 0.8rem;
    }
    
    .simple-guidelines p {
        font-size: 0.75rem;
        line-height: 1.3;
        margin-bottom: 0.3rem;
    }
}

/* Container padding adjustments for mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
}
