@font-face {
  font-family: Moscow Sans Regular; /* set name */
  src: url(moscowsansregular.ttf); /* url of the font */
}


:root {
    --bg-color: #121212;
    --card-bg: #1a1a1a;
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
    --accent-blue: #007aff;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Moscow Sans', 'Moscow Sans Regular';
    margin: 0;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.background-text {
    position: fixed;
    font-size: 15rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.03);
    z-index: -1;
    transform: rotate(-15deg);
    white-space: nowrap;
    user-select: none;
}

.main-container {
    width: 90%;
    max-width: 1300px;
    z-index: 2;
}

.row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(152, 152, 152, 0.502);
    flex: 1;
    min-width: 300px;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    border: 1px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
    border-color: rgba(0, 122, 255, 0.3);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    background: #444;
}

.bio {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.5;
}

.terminal-card {
    background: #0d0d0d;
    font-family: 'Courier New', Courier, monospace;
    height: 200px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    cursor: text;
    position: relative;
    transition: all 0.3s ease;
}

#terminal-history {
    white-space: pre-wrap;
    word-wrap: break-word;
    color: #fff;
}

.terminal-input-line {
    display: flex;
    gap: 8px;
}

#terminal-input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-family: inherit;
    font-size: inherit;
    flex: 1;
}

.terminal-controls {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.terminal-card::-webkit-scrollbar {
    width: 6px;
}

.terminal-card::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

.prompt {
    color: var(--accent-blue);
}
.cursor {
    animation: blink 1s infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.projects-label {
    flex: 0.5;
    display: flex;
    align-items: center;
}

.label-box {
    /* background: var(--card-bg); */
    padding: 20px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 2.5rem;
    text-align: center;
    /* border: 1px solid #222; */
    }

.blue-text { color: var(--accent-blue); display: block; }

.btn-link {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

.btn-link:hover { background: #222; }

.wave-bg {
    position: fixed;
    bottom: -100px;
    right: -100px;
    width: 600px;
    height: 300px;
    background: linear-gradient(45deg, var(--accent-blue), #00c6ff);
    filter: blur(80px);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.6;
}
