* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: #f8fafc; color: #1e293b; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.navbar { background: white; padding: 15px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 40px; height: 40px; background: linear-gradient(135deg, #8b5cf6, #6366f1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; }
.nav-menu { display: flex; list-style: none; gap: 20px; }
.nav-menu a { text-decoration: none; color: #1e293b; font-weight: 500; }

.btn { padding: 10px 20px; border-radius: 10px; text-decoration: none; display: inline-block; font-weight: 600; border: none; cursor: pointer; }
.btn-primary { background: linear-gradient(135deg, #8b5cf6, #6366f1); color: white; }
.btn-outline { border: 1px solid #8b5cf6; color: #8b5cf6; background: transparent; }
.btn-large { padding: 14px 28px; font-size: 16px; }
.btn-block { width: 100%; }

.hero { padding: 60px 0; }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-badge { background: #ede9fe; color: #8b5cf6; padding: 6px 16px; border-radius: 20px; font-size: 14px; }
.hero h2 { font-size: 48px; margin: 20px 0; }
.hero h2 span { color: #8b5cf6; }
.hero-cta { display: flex; gap: 15px; margin: 30px 0; }
.hero-stats { display: flex; gap: 30px; }

.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; margin: 40px 0; }
.feature-card { background: white; padding: 30px; border-radius: 20px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.feature-card i { font-size: 40px; color: #8b5cf6; margin-bottom: 20px; }

.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.auth-card { background: white; padding: 40px; border-radius: 24px; width: 100%; max-width: 450px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.auth-header { text-align: center; margin-bottom: 30px; }
.form-group { margin-bottom: 20px; }
.form-control { width: 100%; padding: 14px 16px; border: 1px solid #e2e8f0; border-radius: 12px; font-size: 16px; }
.message-box { margin-top: 20px; text-align: center; }

.dashboard-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin: 30px 0; }
.dash-card { background: white; padding: 25px; border-radius: 16px; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.dash-card i { font-size: 32px; color: #8b5cf6; margin-bottom: 15px; }
.quick-actions { display: flex; gap: 15px; margin: 30px 0; }

.paket-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px,1fr)); gap: 20px; margin: 30px 0; }
.paket-card { background: white; padding: 25px; border-radius: 16px; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }

.tx-item { display: flex; justify-content: space-between; padding: 15px; background: white; border-radius: 10px; margin-bottom: 10px; }
.positive { color: #10b981; }
.negative { color: #ef4444; }

footer { text-align: center; padding: 30px 0; margin-top: 60px; border-top: 1px solid #e2e8f0; }

.hamburger { display: none; }
.nav-overlay { display: none; }

@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-menu { display: none; }
    .hero .container { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
    .dashboard-grid { grid-template-columns: 1fr; }
}
/* Tambahan untuk riwayat */
.tx-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.tx-icon {
    font-size: 24px;
}

.tx-info {
    flex: 1;
}

.tx-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.tx-date {
    font-size: 12px;
    color: #64748b;
}

.tx-amount {
    font-weight: 700;
    font-size: 16px;
}

.tx-amount.positive { color: #10b981; }
.tx-amount.negative { color: #ef4444; }

.tx-status {
    font-size: 12px;
    padding: 4px 10px;
    background: #f1f5f9;
    border-radius: 20px;
}

/* Order Card */
.order-card {
    background: #f8fafc;
    padding: 20px;
    border-radius: 16px;
    margin-top: 15px;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #e2e8f0;
    border-radius: 10px;
    margin-top: 15px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6, #6366f1);
    border-radius: 10px;
}

.info-box {
    background: #eff6ff;
    padding: 15px 20px;
    border-radius: 12px;
    margin-top: 20px;
    border-left: 4px solid #3b82f6;
}

.message-box {
    margin-top: 15px;
    text-align: center;
}
/* Telegram Info Box */
.telegram-info-box {
    background: linear-gradient(135deg, #1DA1F2, #0088cc);
    color: white;
    padding: 20px 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.telegram-info-box i {
    font-size: 48px;
}

.telegram-info-box h3 {
    margin-bottom: 5px;
}

.btn-telegram {
    display: inline-block;
    background: white;
    color: #0088cc;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.2s;
}

.btn-telegram:hover {
    transform: scale(1.05);
}

.telegram-admin-box {
    background: #e8f4f8;
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Rekening Box */
.rekening-box {
    background: white;
    padding: 20px;
    border-radius: 16px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.rekening-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.rekening-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
    flex-wrap: wrap;
}

.bank-name {
    font-weight: 700;
    min-width: 80px;
}

.bank-number {
    font-family: monospace;
    font-size: 18px;
    letter-spacing: 1px;
}

.bank-owner {
    color: #64748b;
    margin-left: auto;
}

.btn-copy {
    background: #e2e8f0;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
}

/* Deposit Card (Admin) */
.deposit-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.deposit-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

.deposit-id {
    font-weight: 700;
    color: #8b5cf6;
}

.deposit-date {
    color: #64748b;
    font-size: 14px;
}

.deposit-body p {
    margin-bottom: 8px;
}

.deposit-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-success {
    background: #10b981;
    color: white;
}

.btn-danger {
    background: #ef4444;
    color: white;
}