* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Share Tech Mono', monospace;
}

body {
    background: #020202;
    color: #00ff9c;
    min-height: 100vh;
    overflow-x: hidden;
}

.noise {
    position: fixed;
    inset: 0;
    background: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.05;
    pointer-events: none;
}

.wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 30px;
}

.header {
    font-size: 22px;
    margin-bottom: 30px;
}

.prompt {
    color: #888;
}

.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.panel {
    border: 1px solid #00ff9c;
    background: rgba(0,0,0,0.75);
    padding: 15px;
}

.panel.wide {
    grid-column: span 2;
}

h2 {
    font-size: 13px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

ul li {
    list-style: none;
    margin-bottom: 6px;
}

.accent {
    color: #00ff9c;
}

.project {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.btn {
    border: 1px solid #00ff9c;
    padding: 4px 10px;
    font-size: 11px;
    color: #00ff9c;
    text-decoration: none;
    margin-left: 5px;
}

.btn:hover {
    background: #00ff9c;
    color: #000;
}

.profile-card {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid #00ff9c;
    background: #000;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.profile-name {
    font-size: 18px;
}

.handle {
    color: #00ff9c;
    text-decoration: none;
    opacity: 0.8;
}

.handle:hover {
    opacity: 1;
}

.profile-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.presence {
    display: flex;
    gap: 8px;
    font-size: 12px;
    opacity: 0.9;
}

.presence #presence-activity {
    opacity: 0.8;
}

.link {
    color: #00ff9c;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

.watermark {
    position: fixed;
    right: 20px;
    bottom: 20px;
    opacity: 0.4;
    font-size: 12px;
    letter-spacing: 0.1em;
}

/* Console */
.console {
    background: #000;
    border: 1px solid #00ff9c;
    padding: 10px;
    height: 360px;
    display: flex;
    flex-direction: column;
}

#console-output {
    flex: 1;
    overflow-y: auto;
    font-size: 13px;
}

.console-input {
    display: flex;
    gap: 5px;
}

.console input {
    background: transparent;
    border: none;
    color: #00ff9c;
    outline: none;
    width: 100%;
}
