:root {
    --bg-color: #0a0a0a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --primary: #00a651;
    --text-main: #ffffff;
    --text-sub: #a1a1aa;
}

html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.glass-container {
    width: 90%;
    max-width: 1200px;
    min-height: 85vh;
    background: radial-gradient(circle at top right, rgba(0, 166, 81, 0.15), transparent 40%),
        radial-gradient(circle at bottom left, rgba(0, 80, 255, 0.1), transparent 40%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 60px;
    position: relative;
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.dot {
    color: var(--primary);
}

main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 40px;
}

.hero {
    flex: 1;
    max-width: 550px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 166, 81, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 166, 81, 0.2);
}

h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: var(--text-sub);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--primary);
    color: #fff;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 166, 81, 0.3);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 166, 81, 0.4);
}

.android-icon {
    width: 24px;
    height: 24px;
}

.preview-phone {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 8px solid #222;
    transform: rotate(-5deg);
    transition: transform 0.5s ease;
}

.phone-mockup:hover {
    transform: rotate(0deg) scale(1.02);
}

@media (max-width: 1024px) {
    .glass-container {
        padding: 40px;
    }

    h1 {
        font-size: 48px;
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 0;
        align-items: flex-start;
    }

    .glass-container {
        width: 100%;
        min-height: 100vh;
        border-radius: 0;
        padding: 40px 20px;
        border: none;
    }

    header {
        margin-bottom: 40px;
        justify-content: center !important;
        text-align: center;
    }

    .logo {
        margin: 0 auto;
        font-size: 24px;
    }

    main {
        flex-direction: column;
        text-align: center;
        padding: 0;
        gap: 50px;
    }

    .hero {
        max-width: 100%;
        width: 100%;
    }

    h1 {
        font-size: 38px;
    }

    .subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .phone-mockup {
        width: 100%;
        max-width: 260px;
        height: auto;
        aspect-ratio: 1/2;
        transform: rotate(0deg);
        margin: 0 auto;
    }

    .download-btn {
        width: 100% !important;
        justify-content: center;
        padding: 20px;
        font-size: 18px;
    }

    footer {
        flex-direction: column !important;
        gap: 15px;
        padding-top: 40px;
        text-align: center;
    }

    .footer-dot {
        display: none;
    }
}

footer {
    margin-top: auto;
    padding-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-link {
    color: var(--text-sub);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-dot {
    color: var(--text-sub);
}

.copyright {
    color: var(--text-sub);
    font-size: 14px;
}