/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: linear-gradient(to bottom, #0a0a20, #0f0f2d);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 8px;
}

.logo-text {
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
}

.wallet-text {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

nav ul li a:hover {
    opacity: 1;
}

.download-btn {
    background-color: #1e6aff;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: #0052e0;
}

/* Hero section styles */
.hero {
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 40px;
}

h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.app-download-btn {
    display: inline-flex;
    align-items: center;
    background-color: #1e6aff;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.app-download-btn:hover {
    background-color: #0052e0;
}

.apple-icon, .google-play-icon {
    margin-right: 10px;
}

/* Stats section */
.stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 40px 0 60px;
}

.stat-item {
    text-align: center;
}

.stat-item h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 16px;
    opacity: 0.7;
}

.stars {
    color: #ffcc00;
    font-size: 24px;
    letter-spacing: 2px;
}

/* Phone mockups */
.phone-mockups {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 600px;
    margin-top: 40px;
}

.phone {
    position: absolute;
    width: 280px;
    height: 560px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-left {
    transform: translateX(-220px) scale(0.9);
    z-index: 1;
}

.phone-center {
    z-index: 3;
}

.phone-right {
    transform: translateX(220px) scale(0.9);
    z-index: 1;
}

/* Responsive styles */
@media (max-width: 1200px) {
    h1 {
        font-size: 48px;
    }
    
    .phone {
        width: 240px;
        height: 480px;
    }
    
    .phone-left {
        transform: translateX(-180px) scale(0.9);
    }
    
    .phone-right {
        transform: translateX(180px) scale(0.9);
    }
}

@media (max-width: 992px) {
    nav ul li {
        margin: 0 10px;
    }
    
    .stats {
        gap: 40px;
    }
    
    .phone-mockups {
        height: 500px;
    }
    
    .phone {
        width: 200px;
        height: 400px;
    }
    
    .phone-left {
        transform: translateX(-140px) scale(0.9);
    }
    
    .phone-right {
        transform: translateX(140px) scale(0.9);
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    nav {
        margin: 20px 0;
        width: 100%;
        overflow-x: auto;
    }
    
    nav ul {
        width: max-content;
    }
    
    .download-btn-container {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
    
    h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .phone-mockups {
        height: 400px;
    }
    
    .phone {
        width: 160px;
        height: 320px;
    }
    
    .phone-left {
        transform: translateX(-100px) scale(0.9);
    }
    
    .phone-right {
        transform: translateX(100px) scale(0.9);
    }
}

@media (max-width: 576px) {
    .phone-mockups {
        height: 350px;
    }
    
    .phone {
        width: 140px;
        height: 280px;
    }
    
    .phone-left {
        transform: translateX(-80px) scale(0.9);
    }
    
    .phone-right {
        transform: translateX(80px) scale(0.9);
    }
}