/* ---	 1. ШРИФТ И СБРОС МУСОРА --- */
/* Подключаем хакерский моноширинный шрифт Fira Code от Google */
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* --- 2. ГЛАВНЫЙ ФОН ---*/
body {
	background-color: #050505; /* Глубокий черный */
	color: #c9c9c9; /* Тускло белый текст, чтобы не резало глаза */
	font-family: 'Fira Code', monospace; /* Применяем шрифт ко всему */

	/* ставим терминал по центру */
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

/* --- 3. сама коробка терминала ---*/
.terminal-window {
	width: 95%;
	max-width: 1050px; /* Ограничиваем ширину */
	background-color: #0a0a0a; /* цвет суть светлее фона */
	border: 1px solid #222; /* строгая едва заметная рамка */
	border-radius: 4px; /* чуть скругляем углы */
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.9); /* жесткая тень возле окна */
}

/* --- 4. ВЕРХНЯЯ ПАРЕЛЬ (ЧАСЫ И ГЛАЗ) ---*/
.terminal-header {
	display: flex;
	justify-content: space-between; /* Часы влево глаз вправо*/
	padding: 10px 15px;
	border-bottom: 1px dashed #333; /* панковская линия снизу */
	font-size: 12px;
	color: #666;
}

.header-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* --- 5. ВНУТРЯНКА И ТЕКСТ --- */
.terminal-body {
	padding: 20px;
}

/* мой огромный текст */
.ascii-art {
	color: #fff;
	font-size: 9px;
	line-height: 1.2;
	margin-bottom: 20px;
	overflow-x: auto;
}

.command-line {
	margin-bottom: 15px;
	font-size: 14px;
}

.prompt {
	color: #4caf50;
	font-weight: 500;
}

.command {
	color: #fff;
}

/* --- 6. БЛОК С ФОТКОЙ И БИО --- */
.info-block {
	display: flex;
	gap: 30px;
	align-items: center;
}

.image-placeholder {
	width: 150px;
	height: 150px;
	background-color: #111;
	border: 1px dashed #333;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 10px;
	color: #444;
	overflow: hidden;
}

.image-placeholder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(30%) contrast(110%);
	transition: all 0.3s ease;
}

.image-placeholder img:hover {
	filter: grayscale(0%) contrast(100%);
}

.bio-text {
	line-height: 1.6;
	font-size: 14px;
}

/* --- 7. СОЦИАЛЬНЫЕ СЕТИ ---*/

.mt-40 {
	margin-top: 25px;
}

.social-links {
	list-style: none; /* Убираем уебищные точки */
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.social-links a {
	text-decoration: none; /* убираем подчеркивание */
	color: #c9c9c9;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	transition: all 0.2s ease; /* Плавная анимация при наведении */
	width: fit-content;
}

.social-links a:hover {
	color: #fff;
	text-shadow: 0 0 8px rgba(255, 255, 255, 0.4); /* легкое свечение */
}

.status-online {
	color: #4caf50;
	font-size: 12px;
	margin-left: 5px;
}

.status-online-fake {
	color: #4caf50;
	font-size: 12px;
	margin-left: 5px;
}

.badge {
	background-color: #4caf50;
	color: #000;
	padding: 2px 6px;
	border-radius: 2px;
	font-size: 10px;
	font-weight: bold;
	margin-left: 5px;
	text-transform: uppercase;
}

/* --- 8. БЛОКИ СПОТИФАЙ И АКТИВНОСТЬ --- */
.status-blocks {
	display: flex;
	gap: 20px;
	width: 100%;
}

.status-panel {
	flex: 1;
	display: flex;
	flex-direction: column;
}

/* Рамочки внутри блоков */
.panel-box {
	border: 1px solid #222;
	border-radius: 4px;
	padding: 15px;
	display: flex;
	align-items: center;
	gap: 15px;
	background-color: #080808;
	min-height: 80px;
}

/* Квадрат для обложки трека */
.album-cover, .game-cover {
	width: 50px;
	height: 50px;
	background-color: #111;
	border: 1px dashed #333;
	flex-shrink: 0;
}

.track-info {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.track-name {
	color: #fff;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.green-bars {
	color: #4caf50;
	font-weight: bold;
	font-size: 12px;
}

.track-artist {
	color: #666;
	font-size: 11px;
}

.game.info {
	color: #666;
	font-size: 13px;
}

/* --- 9. АНИМАЦИИ И СПОТИФАЙ --- */
.album-cover {
	background-size: cover;
	background-position: center;
	border: 1px dashed #333;
}

/* Анимация пульсации для играющего трека */
@keyframes blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.3; }
}

.is-playing .green-bars {
	color: #4caf50;
	animation: blink 1.2s infinite;
}

.is-paused .green-bars {
	color: #555;
	animation: none;
}

/* --- 10. WAKATIME БЛОК --- */

.wakatime-icon {
	width: 50px;
	height: 50px;
	background-color: #111;
	border: 1px dashed #333;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #666;
	transition: all 0.5s ease; 
}

.wakatime-icon.active-mode {
	color: #4caf50;
	border-color: #4caf50;
	box-shadow: 0 0 15px rbga(76, 175, 80, 0.4);
	background-color: rgba(76, 175, 80, 0.05);
}

.wakatime-info {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.waka-time {
	color: #fff;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.waka-lang {
	color: #666;
	font-size: 11px;
}

