body {
    background-color: #1e1e1e;
    color: #00ff00;
    font-family: 'Fira Code', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

a {
    color: #4facfe;
    text-decoration: none;
}
a:hover { text-decoration: underline; }

.main-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    width: 100%;
    max-width: 1200px;
}

.profile-card {
    text-align: center;
    min-width: 250px;
    padding-top: 20px;
}

.big-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #27c93f;
    box-shadow: 0 0 25px rgba(39, 201, 63, 0.4);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.big-avatar:hover {
    transform: scale(1.05);
}

.user-name {
    color: #fff;
    font-size: 1.8em;
    margin: 0;
    font-weight: 700;
}

.user-role {
    color: #888;
    margin-top: 10px;
    font-size: 1em;
}

.terminal {
    flex-grow: 1;
    width: 100%;
    max-width: 1100px;
    background-color: #2d2d2d;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    overflow: hidden;
}

.header {
    background-color: #3d3d3d;
    padding: 10px 15px;
    display: flex;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}
.red { background-color: #ff5f56; }
.yellow { background-color: #ffbd2e; }
.green { background-color: #27c93f; }

.title {
    margin-left: 10px;
    color: #aaa;
    font-size: 14px;
}

.content {
    padding: 25px;
    color: #e0e0e0;
}

.cmd { margin: 0; margin-top: 20px; }
.prompt { color: #27c93f; margin-right: 10px; font-weight: bold; }
.command { color: #fff; font-weight: bold; }
.output { color: #aaa; margin: 5px 0 0 25px; line-height: 1.6; }

.json-block { color: #f1fa8c; }
.json-block a { color: #8be9fd; text-decoration: underline; }

.link-btn {
    display: inline-block;
    margin-top: 10px;
    background: #27c93f;
    color: #000;
    padding: 8px 12px;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.2s;
}
.link-btn:hover {
    background: #20a030;
    text-decoration: none;
}

.cursor {
    display: inline-block;
    animation: blink 1s infinite;
    color: #27c93f;
    margin-top: 10px;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.ls-table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    table-layout: auto;
}

.ls-table td {
    padding: 5px 15px 5px 0;
    vertical-align: top;
}

.permissions, .user, .name {
    white-space: nowrap;
}

.desc {
    color: #555;
    font-style: italic;
    white-space: normal;
    word-wrap: break-word;
    min-width: 200px;
}

.permissions { color: #d75f00; cursor: help; }
.user { color: #666; }
.name a {
    color: #4facfe;
    font-weight: bold;
}
.name a:hover { color: #fff; }

@media (max-width: 900px) {
    .main-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .profile-card {
        padding-top: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 600px) {
    .big-avatar {
        width: 150px;
        height: 150px;
    }

    .user-name { font-size: 1.5em; }

    .permissions, .user {
        display: none;
    }

    .ls-table td {
        white-space: normal;
    }

    .ls-table tr {
        display: block;
        margin-bottom: 15px;
        border-bottom: 1px solid #3d3d3d;
        padding-bottom: 10px;
    }

    .name {
        display: block;
        font-size: 1.1em;
        margin-bottom: 4px;
    }

    .desc {
        display: block;
        color: #777;
        font-size: 0.9em;
        padding-left: 0;
    }
}