* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: #0f1419;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.8rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.dropdown-icon {
    opacity: 0.7;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.4rem 0.9rem;
    border-radius: 18px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.nav-menu a.active {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-icon:hover {
    background: rgba(255, 255, 255, 0.15);
}

.connect-wallet-btn {
    background: #4a7fcc;
    color: white;
    border: none;
    padding: 0.6rem 1.3rem;
    border-radius: 22px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.connect-wallet-btn:hover {
    background: #5a8fdc;
    transform: translateY(-1px);
}

/* Main Content */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: calc(100vh - 200px);
}

.hero-left {
    flex: 1;
    max-width: 600px;
}

.total-deposits {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2.5rem;
}

.total-deposits .amount {
    color: white;
    font-weight: 600;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 2.5rem;
    letter-spacing: -0.01em;
}

.cta-button {
    background: #4a7fcc;
    color: white;
    border: none;
    padding: 0.85rem 2.2rem;
    border-radius: 26px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(74, 127, 204, 0.25);
}

.cta-button:hover {
    background: #5a8fdc;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(74, 127, 204, 0.4);
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: brightness(1.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .content-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .nav-menu {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-left {
        gap: 1.5rem;
    }

    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .main-content {
        padding: 2rem 1rem;
    }
}