@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600&display=swap');

:root { --primary: 134, 76, 231; }

body {
    font-family: 'Inter', sans-serif;
    background-color: #09090b;
    color: #e4e4e7;
    max-width: 500px; /* Mobile Frame */
    margin: 0 auto;
    min-height: 100vh;
    padding-bottom: 90px;
    position: relative;
    border-left: 1px solid #18181b;
    border-right: 1px solid #18181b;
}

.logo-font { font-family: 'Space Grotesk', sans-serif; }

.glass-card {
    background: #111113;
    border: 1px solid #1f1f22;
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 15px;
}

/* Bottom Nav */
.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 500px;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
    border-top: 1px solid #1f1f22;
    z-index: 100;
}

.nav-item {
    text-decoration: none;
    color: #71717a;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 11px;
}

.nav-item.active { color: #a78bfa; }
.nav-item i { font-size: 20px; margin-bottom: 4px; }

.btn-main {
    background: #7c3aed;
    color: white;
    width: 100%;
    padding: 15px;
    border-radius: 18px;
    font-weight: 600;
    text-align: center;
    border: none;
    display: block;
}