body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    background: #020617;
    color: #e5e7eb;
}

/* HEADER */
.topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(2,6,23,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo {
    font-weight: 700;
    font-size: 20px;
}

#userArea {
    display: flex;
    align-items: center;
    gap: 10px;
}

.credits-pill {
    background: rgba(34,197,94,0.15);
    color: #22c55e;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
}

.avatar-wrapper img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
}

/* DROPDOWN */
.dropdown {
    position: absolute;
    top: 56px;
    right: 16px;
    background: #020617;
    border-radius: 12px;
    padding: 12px;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.dropdown.show {
    display: block;
}

.dropdown .email {
    font-size: 13px;
    margin-bottom: 10px;
    color: #94a3b8;
}

.dropdown button {
    width: 100%;
    padding: 8px;
    background: #ef4444;
    border: none;
    border-radius: 8px;
    color: white;
}

/* MOBILE */
@media (max-width: 600px) {
    .logo {
        font-size: 16px;
    }
    .credits-pill {
        display: none;
    }
}

/* MAIN */
.container {
    max-width: 420px;
    margin: 60px auto;
    background: rgba(15,23,42,0.9);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

label {
    display: block;
    margin-top: 10px;
}

input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    margin-top: 6px;
}

button {
    width: 100%;
    padding: 14px;
    margin-top: 14px;
    border-radius: 12px;
    border: none;
    background: #22c55e;
    font-weight: 600;
    cursor: pointer;
}

/* =========================
   SWAP FACE PRIMARY BUTTON
   ========================= */
.swap-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    font-size: 18px;          /* BIG TEXT */
    font-weight: 800;         /* BOLD */
    letter-spacing: 0.3px;

    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #022c22;

    padding: 16px;
    border-radius: 14px;
}

/* Credits badge inside button */
.swap-cost {
    background: rgba(0,0,0,0.25);
    padding: 5px 12px;
    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;
    color: #ecfeff;

    border: 1px solid rgba(255,255,255,0.25);
}


/* PRICING */
.pricing-section {
    max-width: 900px;
    margin: 40px auto;
    text-align: center;
}

.pricing-note {
    color: #94a3b8;
}

.pricing-note.small {
    font-size: 12px;
    color: #64748b;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
    gap: 16px;
}

.plan-card {
    background: rgba(15,23,42,0.9);
    border-radius: 16px;
    padding: 20px;
    position: relative;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #22c55e;
}

.inr {
    font-size: 14px;
    color: #94a3b8;
}

.popular {
    border: 2px solid #22c55e;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #22c55e;
    color: #022c22;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
}
