  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

a,
a:hover,
a:focus,
a:active,
a:visited {
    text-decoration: none;
    color: inherit;
    outline: none;
}

body {
    background:
        repeating-linear-gradient(
            45deg,
            rgba(255,255,255,0.04) 0,
            rgba(255,255,255,0.04) 1px,
            transparent 1px,
            transparent 14px
        ),
        #020617;
    display: flex;
    justify-content: center;
    color: #fff;
}

.app-container {
    width: 390px;
    min-height: 100vh;
    padding-bottom: 70px;
    background: radial-gradient(circle at top, #0c2340, #061527);
    border: 1px solid #1c2f45;
    position: relative;
}

/* Header */
.top-header {
    display: flex;
    align-items: center;
    padding: 14px;
    gap: 10px;
}

.logo {
    width: 40px;
    height: 40px;
    border: 1px solid #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #f59e0b;
}

.title {
    text-align: center;
    flex: 1;
}

.title .small {
    display: block;
    font-size: 12px;
    color: #f59e0b;
}

.title .big {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #f59e0b;
}

/* Trades Bar */
.trade-bar {
    background: #f59e0b;
    color: #000;
    text-align: center;
    padding: 8px;
    font-weight: 700;
    font-size: 14px;
}

/* Table Header */
.table-head {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 0.7fr 1fr;
    padding: 14px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.table-head span {
    text-align: center;
}

.table-head span:first-child {
    text-align: left;
}

/* Empty content area */
.empty {
    height: calc(100vh - 220px);
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 390px;
    background: #020617;
    border-top: 1px solid rgba(255,255,255,0.2);
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
}

.bottom-nav div {
    text-align: center;
    font-size: 11px;
    color: #fff;
}

.bottom-nav i {
    font-size: 18px;
    display: block;
    margin-bottom: 2px;
}

.bottom-nav .active {
    color: #f59e0b;
}

 /* Content */
.content {
    padding: 16px;
    font-size: 13px;
    line-height: 1.6;
    color: #e6e6e6;
}

.content p {
    margin-bottom: 14px;
}

/* Circular Progress */
.progress-wrap{
    display:flex;
    justify-content:center;
    margin:30px 0 20px;
}

.circle{
    width:150px;
    height:150px;
    border-radius:50%;
    background:
        conic-gradient(
            #16a34a 0deg 230deg,
            #dc2626 230deg 360deg
        );
    display:flex;
    align-items:center;
    justify-content:center;
}

.circle::before{
    content:"";
    width:110px;
    height:110px;
    background:#020617;
    border-radius:50%;
    position:absolute;
}

.percent{
    position:relative;
    font-size:22px;
    font-weight:700;
}

/* Buy Button */
.buy-btn{
    display:block;
    width:80%;
    margin:0 auto 14px;
    background:#f59e0b;
    color:#000;
    border:none;
    padding:12px;
    font-size:18px;
    font-weight:700;
    border-radius:10px;
}

/* Hint text */
.hint{
    text-align:center;
    font-size:12px;
    opacity:.9;
    margin-bottom:20px;
}

/* Info */
.info{
    text-align:center;
    line-height:1.9;
    font-size:14px;
}

.info span{
    display:block;
}

/* Disclaimer */
.disclaimer{
    margin-top:24px;
    text-align:center;
    font-size:11px;
    opacity:.7;
    padding:0 20px;
}

/* Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0px 14px;
}

/* Card */
.card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.25);
    cursor: pointer;
    transition: 0.3s;
}

.card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

/* Icon box */
.icon {
    min-width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #f59e0b;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
}
.card i, .card span {
    color: #ffffff;
    text-decoration: none;
}

/* Text */
.card span {
    font-size: 14px;
    font-weight: 500;
}

/* Single card full width */
.full {
    grid-column: span 2;
}

/* Divider */
.divider {
    height: 3px;
    background: #f59e0b;
    margin: 12px 0;
}

/* Future cards */
.future-row {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.future-card {
    flex: 1;
    background: #f59e0b;
    color: #000;
    border-radius: 16px;
    padding: 12px;
    text-align: center;
}

.future-card h3 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}

.future-values {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 14px;
}

.green { color: #16a34a; }
.red { color: #dc2626; }

.sub {
    margin-top: 4px;
    font-size: 11px;
}

/* Spot cards */
.spot-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.spot-card {
    background: #f59e0b;
    color: #000;
    border-radius: 14px;
    padding: 10px;
    text-align: center;
}

.spot-card h4 {
    font-size: 12px;
    font-weight: 700;
}

.spot-card .value {
    font-size: 16px;
    font-weight: 800;
    margin: 4px 0;
}

.spot-card .range {
    font-size: 11px;
}

/* Table */
.table {
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 10px;
    overflow: hidden;
}

.table-header,
.table-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    padding: 10px;
    align-items: center;
}

.table-header {
    background: rgba(255,255,255,0.1);
    font-weight: 700;
    font-size: 13px;
    text-align: center;
}

.table-row {
    border-top: 1px solid rgba(255,255,255,0.3);
    font-size: 13px;
}

.table-row div:first-child {
    text-align: left;
}

.table-row div {
    text-align: center;
}

/* Footer strip */
.footer-strip {
    margin: 16px 0;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.3);
    text-align: center;
    font-size: 12px;
}



.info-section {
    padding: 18px;
    color: #fff;
    font-size: 14px;
}

.section-title {
    color: #f59e0b;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.company-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.info-row i {
    color: #f59e0b;
    font-size: 15px;
}

.address p,
.bank-details p {
    margin-bottom: 6px;
    line-height: 1.5;
}

.mt {
    margin-top: 20px;
}

.about-text {
    line-height: 1.6;
    opacity: 0.9;
}

/* Floating Action Buttons */
.fab {
    position: fixed;
    bottom: 75px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

.fab.call {
    left: 15px;
    background: #f59e0b;
}

.fab.whatsapp {
    right: 15px;
    background: #25d366;
}

/* Form */
    .login-form {
        padding: 20px 16px;
    }

    .input-box {
        width: 100%;
        background: #f2a100;
        border: none;
        padding: 10px;
        margin-bottom: 10px;
        font-size: 14px;
        color: #000;
    }

    .input-box::placeholder {
        color: #000;
        font-weight: bold;
    }

    .otp-btn {
        width: 100%;
        background: #ffffff;
        border: 1px solid #ccc;
        padding: 10px;
        font-size: 14px;
        font-weight: bold;
        cursor: pointer;
    }

    /* Margin Card */
.margin-card{
    margin:20px;
    background:#f59e0b;
    color:#000;
    border-radius:10px;
    padding:12px 16px;
    display:flex;
    justify-content:space-between;
    font-size:14px;
    font-weight:600;
}

/* Message Card */
.message-card{
    margin:18px;
    border-radius:10px;
    overflow:hidden;
}

.msg-date{
    background:#f59e0b;
    color:#000;
    text-align:center;
    font-size:13px;
    font-weight:700;
    padding:8px;
}

.msg-text{
    background:#f59e0b;
    color:#000;
    text-align:center;
    font-size:14px;
    padding:10px;
    border-top:1px solid rgba(0,0,0,.2);
}