/* ==========================================================================
   RBX VAULT SYSTEM - Cybernetic Mainframe Stylesheet
   ========================================================================== */

/* Custom Fonts & Core Variables */
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Rajdhani:wght@500;600;700;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
    --primary: #00A2FF;
    --primary-glow: rgba(0, 162, 255, 0.4);
    --secondary: #00E5FF;
    --secondary-glow: rgba(0, 229, 255, 0.25);
    --success: #10B981;
    --success-glow: rgba(16, 185, 129, 0.3);
    --warning: #F59E0B;
    --warning-glow: rgba(245, 158, 11, 0.3);
    --danger: #EF4444;
    --bg-darker: #080a0f;
    --bg-card: rgba(17, 20, 26, 0.85);
    --border-color: rgba(255, 255, 255, 0.06);
    --font-display: 'Rajdhani', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --font-accent: 'Chakra Petch', sans-serif;
}

/* Base Document Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-darker);
    color: #f1f5f9;
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Background Grids & Ambient Lights */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(rgba(0, 162, 255, 0.05) 1px, transparent 0),
        radial-gradient(rgba(0, 229, 255, 0.05) 1px, transparent 0);
    background-size: 32px 32px;
    background-position: 0 0, 16px 16px;
    z-index: 0;
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    top: -20%;
    left: 20%;
    width: 60%;
    height: 70%;
    background: radial-gradient(circle, rgba(0, 162, 255, 0.08) 0%, rgba(0, 229, 255, 0.02) 60%, transparent 100%);
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

.ambient-glow-bottom {
    position: absolute;
    bottom: -10%;
    right: 10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.04) 0%, transparent 80%);
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

/* Header & Status Bar */
header {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    background: rgba(8, 10, 15, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10;
    position: relative;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header-brand svg {
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

.brand-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-transform: uppercase;
}

.brand-text span {
    color: var(--primary);
}

.system-status {
    display: flex;
    align-items: center;
    gap: 20px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-family: var(--font-accent);
    font-weight: 600;
    color: var(--success);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--success);
    animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 12px var(--success); }
    100% { transform: scale(0.9); opacity: 0.6; }
}

/* Live Scrolling Feed */
.live-activity-bar {
    width: 100%;
    background: rgba(12, 15, 22, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 10px 0;
    z-index: 9;
    position: relative;
    overflow: hidden;
}

.live-activity-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.live-badge {
    background: var(--primary);
    color: #ffffff;
    font-family: var(--font-accent);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0, 162, 255, 0.3);
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
}

.ticker {
    display: inline-block;
    white-space: nowrap;
    padding-right: 100%;
    animation: scroll-ticker 25s linear infinite;
    font-size: 13px;
    color: #94a3b8;
}

.ticker span {
    margin-right: 40px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ticker-user {
    color: #f1f5f9;
    font-weight: 600;
}

.ticker-amount {
    color: var(--secondary);
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 14px;
}

.ticker-ping {
    font-size: 11px;
    color: var(--success);
    font-family: var(--font-mono);
}

@keyframes scroll-ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* Main Container Layout */
main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 24px;
    z-index: 1;
    position: relative;
}

.app-wrapper {
    width: 100%;
    max-width: 580px;
}

/* Secure Terminal Card Container */
.terminal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.terminal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 2;
}

.terminal-header {
    background: rgba(8, 10, 15, 0.5);
    border-bottom: 1px solid var(--border-color);
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.dot.red { background-color: #ef4444; }
.dot.yellow { background-color: #f59e0b; }
.dot.green { background-color: #10b981; }

.terminal-title {
    font-family: var(--font-mono);
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Step Layout Controller */
.step-container {
    padding: 30px 28px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-panel {
    display: none;
    animation: fade-slide-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.step-panel.active {
    display: flex;
    flex-direction: column;
}

@keyframes fade-slide-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typography Inside Card */
.panel-heading {
    text-align: center;
    margin-bottom: 25px;
}

.panel-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 8px;
}

.panel-title span {
    color: var(--primary);
}

.panel-subtitle {
    font-size: 13px;
    color: #94a3b8;
    max-width: 85%;
    margin: 0 auto;
    line-height: 1.5;
}

/* Step 1: Package Grid Styles */
.package-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.package-card {
    background: rgba(12, 15, 22, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px 16px;
    cursor: pointer;
    position: relative;
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 162, 255, 0.04) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 162, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 162, 255, 0.08);
}

.package-card:hover::before {
    opacity: 1;
}

.package-card.selected {
    background: rgba(0, 162, 255, 0.04);
    border-color: var(--primary);
    box-shadow: 
        0 0 20px rgba(0, 162, 255, 0.15),
        inset 0 0 10px rgba(0, 162, 255, 0.05);
}

.package-card.selected::before {
    background: radial-gradient(circle at center, rgba(0, 162, 255, 0.1) 0%, transparent 60%);
    opacity: 1;
}

.package-icon-container {
    margin-bottom: 12px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.package-icon-container svg {
    filter: drop-shadow(0 0 6px rgba(0, 162, 255, 0.2));
    transition: transform 0.3s ease;
}

.package-card:hover .package-icon-container svg {
    transform: scale(1.08) rotate(3deg);
}

.package-amount {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 4px;
}

.package-label {
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.package-card.selected .package-label {
    color: var(--primary);
}

/* Custom Stock Indicator on Card */
.stock-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.15);
    padding: 3px 6px;
    border-radius: 4px;
}

.stock-indicator-dot {
    width: 4px;
    height: 4px;
    background-color: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 6px #ef4444;
}

.stock-text {
    font-family: var(--font-accent);
    font-size: 8px;
    font-weight: 700;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.stock-bar-container {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin-top: 15px;
    overflow: hidden;
}

.stock-bar {
    height: 100%;
    border-radius: 10px;
    background: var(--primary);
}

.stock-bar.low {
    background: linear-gradient(90deg, #f59e0b, #ef4444);
}

/* Buttons and CTA elements */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #008be2 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 16px 24px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 162, 255, 0.25);
    width: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00b4ff 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0, 162, 255, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary svg {
    transition: transform 0.2s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

/* Step 2: Username Input Form */
.input-label {
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.username-input-wrapper {
    position: relative;
    margin-bottom: 24px;
}

.username-input-wrapper svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    transition: color 0.3s ease;
    pointer-events: none;
}

.text-input {
    width: 100%;
    background: rgba(10, 12, 16, 0.9);
    border: 1.5px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px 16px 16px 48px;
    font-size: 15px;
    font-family: var(--font-body);
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
}

.text-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 162, 255, 0.1);
}

.text-input:focus + svg {
    color: var(--primary);
}

/* Platform Select Grid */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.platform-card {
    background: rgba(10, 12, 16, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 12px 6px;
    cursor: pointer;
    text-align: center;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.platform-card svg {
    color: #64748b;
    transition: all 0.3s ease;
}

.platform-card span {
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
}

.platform-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.platform-card.selected {
    background: rgba(0, 229, 255, 0.04);
    border-color: var(--secondary);
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.08);
}

.platform-card.selected svg {
    color: var(--secondary);
    filter: drop-shadow(0 0 4px var(--secondary-glow));
}

.platform-card.selected span {
    color: #ffffff;
}

.btn-row {
    display: flex;
    gap: 12px;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 16px 20px;
    cursor: pointer;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Step 3: Server Simulation Log */
.simulation-container {
    background: rgba(8, 10, 14, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    min-height: 200px;
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1.6;
    color: #38bdf8;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.8);
}

.simulation-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 4px, 6px 100%;
    pointer-events: none;
    z-index: 5;
}

.console-log {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 180px;
    overflow-y: auto;
}

.console-line {
    opacity: 0;
    transform: translateY(4px);
    animation: console-fade 0.25s forwards;
    word-break: break-all;
}

.console-line.success { color: #10b981; }
.console-line.warning { color: #f59e0b; }
.console-line.danger { color: #f43f5e; }
.console-line.info { color: #38bdf8; }

@keyframes console-fade {
    to { opacity: 1; transform: translateY(0); }
}

/* Loading status panel */
.loading-progress-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.loader-cube-wrap {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
}

.loader-cube-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(0, 162, 255, 0.15);
    border-top-color: var(--primary);
    border-bottom-color: var(--secondary);
    border-radius: 50%;
    animation: rotate-loader 1.2s cubic-bezier(0.5, 0.1, 0.5, 0.9) infinite;
}

.loader-cube-inner {
    position: absolute;
    width: 36px;
    height: 36px;
    top: 12px;
    left: 12px;
    border: 3px solid rgba(16, 185, 129, 0.1);
    border-left-color: var(--success);
    border-right-color: var(--success);
    border-radius: 50%;
    animation: rotate-loader-reverse 0.9s linear infinite;
}

@keyframes rotate-loader {
    to { transform: rotate(360deg); }
}

@keyframes rotate-loader-reverse {
    to { transform: rotate(-360deg); }
}

.progress-metric {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 8px;
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.metric-label {
    color: #64748b;
    text-transform: uppercase;
}

.metric-value {
    color: var(--primary);
    font-family: var(--font-mono);
}

.progress-bar-wrap {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    width: 0%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    box-shadow: 0 0 10px rgba(0, 162, 255, 0.3);
    transition: width 0.1s linear;
}

/* Step 4: Verification Screen */
.verification-card-inner {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 24px;
    text-align: center;
}

.locked-package-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 18px;
}

.locked-amount-badge {
    background: rgba(0, 162, 255, 0.08);
    border: 1px solid rgba(0, 162, 255, 0.2);
    border-radius: 10px;
    padding: 12px 20px;
}

.locked-amount {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.locked-amount span {
    font-size: 12px;
    font-family: var(--font-accent);
    color: var(--primary);
    display: block;
    margin-top: 4px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.verification-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.25);
    padding: 6px 14px;
    border-radius: 20px;
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 700;
    color: var(--warning);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.verification-status-badge span.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--warning);
    box-shadow: 0 0 8px var(--warning);
    animation: pulse-dot-warning 1.5s infinite;
}

@keyframes pulse-dot-warning {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 10px var(--warning); }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.countdown-session {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.countdown-session span {
    font-family: var(--font-mono);
    color: var(--danger);
    font-weight: 700;
}

.cta-pulse-button {
    animation: pulse-cta 2s infinite;
}

@keyframes pulse-cta {
    0% { box-shadow: 0 0 0 0 rgba(0, 162, 255, 0.6); }
    70% { box-shadow: 0 0 0 12px rgba(0, 162, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 162, 255, 0); }
}

/* Trust Elements / FAQ Section */
.trust-footer {
    width: 100%;
    max-width: 580px;
    margin: 24px auto 0 auto;
}

.faq-card {
    background: rgba(12, 15, 22, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
}

.faq-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #f1f5f9;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-item {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-question {
    font-size: 12px;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 6px;
}

.faq-answer {
    font-size: 11px;
    color: #94a3b8;
    line-height: 1.5;
}

/* Footer Copyright */
footer {
    width: 100%;
    text-align: center;
    padding: 24px;
    border-top: 1px solid var(--border-color);
    background: rgba(6, 8, 12, 0.9);
    font-size: 11px;
    color: #64748b;
    z-index: 10;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-disclaimer {
    max-width: 700px;
    line-height: 1.5;
    color: #475569;
}

/* Adjust scrollbars for terminal style */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .header-container {
        padding: 12px 16px;
    }
    .brand-text {
        font-size: 20px;
    }
    .system-status {
        gap: 10px;
    }
    .status-indicator {
        padding: 4px 8px;
    }
    main {
        padding: 24px 16px;
    }
    .step-container {
        padding: 24px 18px;
    }
    .panel-title {
        font-size: 24px;
    }
    .package-grid {
        gap: 12px;
    }
    .package-card {
        padding: 16px 12px;
    }
    .package-amount {
        font-size: 22px;
    }
}
