/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #0b111e;
    color: #f3f4f6;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Subtle background graphic mimicking flight paths/grid */
body::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: 
        radial-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 0),
        radial-gradient(rgba(0, 212, 255, 0.02) 2px, transparent 0);
    background-size: 40px 40px, 120px 120px;
    transform: rotate(-15deg);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 600px;
    width: 90%;
    padding: 20px;
}

/* Header */
.profile-header {
    margin-bottom: 2.5rem;
}

.status-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
}

.highlight {
    background: linear-gradient(135deg, #00d4ff 0%, #0072ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Terminal Card */
.content-box {
    background: rgba(22, 30, 49, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.terminal-header {
    background: rgba(15, 23, 42, 0.9);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.red { background-color: #ef4444; }
.yellow { background-color: #f59e0b; }
.green { background-color: #10b981; }

.terminal-title {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-left: 10px;
}

.terminal-body {
    padding: 24px;
    font-family: 'Fira Code', Consolas, Monaco, 'Courier New', Courier, monospace;
    font-size: 1.1rem;
    line-height: 1.6;
}

.code-line {
    padding-left: 20px;
}

.key {
    color: #38bdf8;
}

.string {
    color: #34d399;
}

/* Footer */
.footer {
    margin-top: 2.5rem;
    font-size: 0.9rem;
    color: #6b7280;
    text-align: center;
}