/* ==================== CUSTOM FONTS ==================== */
@font-face {
	font-family: 'Dreamer TM';
	src: local('Dreamer TM Regular'), local('Dreamer-TM-Regular'),
		url('../assets/fontes/DreamerTM-Regular.woff2') format('woff2'),
		url('../assets/fontes/DreamerTM-Regular.woff') format('woff'),
		url('../assets/fontes/DreamerTM-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}

/* ==================== RESET & GLOBALS ==================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	cursor: none !important;
}

html, body {
	width: 100%;
	height: 100%;
	background-image: url('../assets/lorena_bg.gif');
	background-repeat: no-repeat;
	background-size:contain;
	background-position: center;
	background-attachment: fixed;
	color: #333;
	font-family: 'Fredoka', 'Courier New', monospace;
	overflow: hidden;
}

img{
	-webkit-user-drag: none;
	user-select: none;
}

/* ==================== DESKTOP BACKGROUND ==================== */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(49, 114, 244, 0.03) 2px, rgba(49, 114, 244, 0.03) 4px),
		repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 87, 29, 0.03) 2px, rgba(255, 87, 29, 0.03) 4px);
	background-size: 100% 100%;
	opacity: 0.4;
	pointer-events: none;
	z-index: 1;
	animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
	0% { transform: translateY(0); }
	100% { transform: translateY(10px); }
}

.window {
	position: absolute;
	transform-origin: center;
}

@keyframes minimize {
	from {
		transform: translate(0, 0) scale(1);
		opacity: 1;
	}
	to {
		transform:
			translate(var(--min-x), var(--min-y))
			scale(0.1);
		opacity: 0;
	}
}

.window.minimizing {
	animation: minimize 0.35s cubic-bezier(.4,0,.2,1) forwards;
	pointer-events: none;
}

@keyframes closeWindow {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	100% {
		transform: scale(0.95);
		opacity: 0;
	}
}

.window.closing {
	animation: closeWindow 0.15s ease-out forwards;
	pointer-events: none;
}

@keyframes taskbarIconFadeOut {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(0.8);
	}
}

.taskbar-icon.removing {
	animation: taskbarIconFadeOut 0.25s ease-out forwards;
	pointer-events: none;
}

body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 20% 50%, rgba(255, 87, 29, 0.08) 0%, transparent 50%);
	pointer-events: none;
	z-index: 2;
}

/* ==================== DESKTOP CONTAINER ==================== */
#desktop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
}

/* ==================== DESKTOP ICONS ==================== */
.desktop-icon {
	position: absolute;
	width: 100px;
	height: 120px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 10px;
	cursor: move;
	transition: opacity 0.2s;
	user-select: none;
}

.desktop-icon:hover {
	opacity: 0.9;
}

.desktop-icon.dragging {
	opacity: 0.5;
	z-index: 9998;
}

.icon-visual {
	width: 70px;
	height: 70px;
	/* border: 3px solid #3172F4; */
	/* background: linear-gradient(135deg, rgba(255, 200, 64, 0.1), rgba(49, 114, 244, 0.1)); */
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	margin-bottom: 8px;
	/* box-shadow: 0 0 20px rgba(49, 114, 244, 0.4), inset 0 0 15px rgba(255, 200, 64, 0.2); */
	position: relative;
	overflow: hidden;
	border-radius: 4px;
}

.icon-visual::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	/* background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.144), transparent);
	animation: iconShine 2s infinite; */
}

.desktop-icon:hover .icon-visual {
	transform: scale(1.1);
	border: 2px solid #ede3e385;
    background: #ffffff94;
    /* box-shadow: 0 0 8px rgb(0 0 0 / 46%); */
}

.img-icon-visual {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@keyframes iconShine {
	0% { transform: translate(-100%, -100%) rotate(0deg); }
	100% { transform: translate(100%, 100%) rotate(0deg); }
}

.icon-label {
	font-size: 10px;
	letter-spacing: 0px;
	text-align: center;
	color: #333;
	word-break: break-word;
	width: 100%;
	line-height: 1.2;
	text-shadow: 0 0 10px rgba(255, 87, 29, 0.3), 1px 1px 2px rgba(255, 255, 255, 0.8);
	font-weight: 600;
	font-family: 'Fredoka', sans-serif;
}

.icon-label::selection {
	background: transparent;
}

/* ==================== WINDOW ==================== */
.window {
	position: fixed;
	background: linear-gradient(180deg, #2a2a2a, #1a1a1a);
	/* Borda estilo Windows Media Player - múltiplas camadas */
	border: 3px solid #4a4a4a;
	border-top-color: #6a6a6a;
	border-left-color: #5a5a5a;
	border-bottom-color: #2a2a2a;
	border-right-color: #3a3a3a;
	outline: 1px solid #1a1a1a;
	outline-offset: -4px;
	box-shadow: 
		0 0 0 1px rgba(100, 100, 100, 0.3),
		inset 1px 1px 0 rgba(120, 120, 120, 0.4),
		inset -1px -1px 0 rgba(0, 0, 0, 0.6),
		0 4px 8px rgba(0, 0, 0, 0.5);
	border-radius: 3px;
	display: none;
	flex-direction: column;
	min-width: 400px;
	min-height: 300px;
	z-index: 1000;
	animation: windowSlideIn 0.3s ease-out;
}

.window.active {
	display: flex;
}

@keyframes windowSlideIn {
	from {
		opacity: 0;
		transform: translate(-20px, -20px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translate(0, 0) scale(1);
	}
}

.window::before {
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	right: 3px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(150, 150, 150, 0.6), transparent);
	pointer-events: none;
}

@keyframes windowGlow {
	0%, 100% { opacity: 0.5; }
	50% { opacity: 1; }
}

.window::after {
	content: '';
	position: absolute;
	bottom: 3px;
	left: 3px;
	right: 3px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(40, 40, 40, 0.8), transparent);
	pointer-events: none;
}

.window-titlebar {
	height: 35px;
	background: linear-gradient(180deg, #3a3a3a 0%, #1a1a1a 50%, #0a0a0a 100%);
	border-bottom: 2px solid #1a1a1a;
	border-top: 1px solid rgba(100, 100, 100, 0.3);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 12px;
	cursor: grab;
	user-select: none;
	flex-shrink: 0;
	box-shadow: 
		inset 0 1px 0 rgba(120, 120, 120, 0.3),
		inset 0 -1px 0 rgba(0, 0, 0, 0.5),
		0 2px 4px rgba(0, 0, 0, 0.4);
}

.window-titlebar:active {
	cursor: grabbing;
}

.window-titlebar::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: #000000;
}

.window-title {
	font-size: 12px;
	letter-spacing: 1px;
	color: #fff;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	flex: 1;
	font-weight: 700;
	font-family: 'Press Start 2P', monospace;
	font-size: 8px;
}

.window-controls {
	display: flex;
	gap: 8px;
}

.window-btn {
	width: 24px;
	height: 24px;
	/* Botão estilo bevel clássico */
	border: 2px outset #4a4a4a;
	background: linear-gradient(180deg, #5a5a5a 0%, #3a3a3a 50%, #2a2a2a 100%);
	color: #e0e0e0;
	font-size: 10px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	font-weight: bold;
	border-radius: 2px;
	box-shadow: 
		inset 1px 1px 0 rgba(150, 150, 150, 0.4),
		inset -1px -1px 0 rgba(0, 0, 0, 0.6);
}

.window-btn:hover {
	background: linear-gradient(180deg, #6a6a6a 0%, #4a4a4a 50%, #3a3a3a 100%);
	border-style: outset;
	border-color: #5a5a5a;
	box-shadow: 
		inset 1px 1px 0 rgba(180, 180, 180, 0.5),
		inset -1px -1px 0 rgba(0, 0, 0, 0.5);
}

.window-btn.close:hover {
	background: linear-gradient(180deg, #d44, #a22);
	border-color: #c33;
	box-shadow: 
		inset 1px 1px 0 rgba(255, 100, 100, 0.4),
		inset -1px -1px 0 rgba(80, 0, 0, 0.6);
}

.window-content {
	flex: 1;
	overflow-y: auto;
	padding: 15px;
	background: linear-gradient(180deg, #1a1a1a, #0a0a0a);
	border-top: 2px solid #0a0a0a;
	border-bottom: 1px solid #2a2a2a;
	box-shadow: 
		inset 0 2px 4px rgba(0, 0, 0, 0.6),
		inset 0 -1px 0 rgba(60, 60, 60, 0.2);
}

.window-content.y2k{
	border-top: 2px solid #ffa6ce;
	background: #ffa6ce;
	border-bottom: 1px solid #ff88be;
}

.window-content h2 {
	font-size: 13px;
	letter-spacing: 1px;
	color: #ff0303;
	margin-bottom: 15px;
	text-shadow: 0 0 10px rgba(233, 231, 231, 0.3);
	font-family: 'Press Start 2P', monospace;
	font-size: 9px;
	font-weight: 700;
}

.window-content h3 {
	font-size: 11px;
	letter-spacing: 0px;
	color: #3172F4;
	margin: 12px 0 8px 0;
	text-shadow: 0 0 5px rgba(49, 114, 244, 0.4);
	font-weight: 600;
}

.window-content p {
	font-size: 10px;
	line-height: 1.5;
	margin-bottom: 10px;
	color: #555;
}

/* ==================== WINDOW RESIZE HANDLE ==================== */
.window-resize-handle {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 20px;
	height: 20px;
	cursor: nwse-resize;
	z-index: 100;
}

.window-resize-handle::before {
	content: '';
	position: absolute;
	right: 2px;
	bottom: 2px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 15px 15px;
	border-color: transparent transparent #ff6633 transparent;
	opacity: 0.6;
}

.window-resize-handle:hover::before {
	opacity: 1;
	border-color: transparent transparent #FFC840 transparent;
}

/* ==================== PORTFOLIO WINDOW ==================== */
#portfolioWindow .window-content {
	background:
		radial-gradient(circle, rgb(10 10 10) 1px, #00000000 1px),
		linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
	background-size: 8px 8px, 100% 100%;
	background-position: 0 0, 0 0;
}

.card-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin:0;
}

.card {
	padding: 26% 5px;
	font-size: 9px;
	transition: all 0.1s;
	display: flex;
    position: relative;
	justify-content: center;
    align-items: center;
	-webkit-user-drag: none;
	user-select: none;
	background-color: #000000;
	max-height: 150px;
	/* Estilo bevel retrô */
	border: 2px solid #1a1a1a;
	border-top-color: #333;
	border-left-color: #2a2a2a;
	border-bottom-color: #000;
	border-right-color: #0a0a0a;
	border-radius: 2px;
	box-shadow: 
		inset 1px 1px 0 rgba(60, 60, 60, 0.3),
		inset -1px -1px 0 rgba(0, 0, 0, 0.6);
	cursor: pointer;
}

.card-div{
	padding: 0;
	margin:0;
	z-index: 2;
    display: flex;
	flex-direction: column;
	align-items: center;      /* eixo horizontal */
	justify-content: center;  /* eixo vertical */
	text-align: center;
}

.card-div h3{
	font-size: 34px;
	font-family: 'Jersey 25', sans-serif !important;
	color: #ffffff !important;
	margin:0;
}

.card-div p{
	font-size: 11px;
	font-family: 'Jersey 10', sans-serif !important;
	color: #ffffff !important;
}

.y2k-card {
	object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 0;
    position: absolute;
	opacity: 70%;
}

.card:hover {
	background: rgba(197, 192, 192, 0.705);
	border-top-color: #444;
	border-left-color: #3a3a3a;
    box-shadow: 
		inset 1px 1px 0 rgba(100, 100, 100, 0.4),
		inset -1px -1px 0 rgba(0, 0, 0, 0.5),
		0 0 8px rgba(255, 255, 255, 0.3);
}

/* Efeito de botão pressionado retrô */
.card:active {
	/* Inverte as bordas para efeito inset */
	border-top-color: #000;
	border-left-color: #0a0a0a;
	border-bottom-color: #333;
	border-right-color: #2a2a2a;
	background: rgba(150, 145, 145, 0.6);
	box-shadow: 
		inset 2px 2px 3px rgba(0, 0, 0, 0.6),
		inset -1px -1px 0 rgba(80, 80, 80, 0.2);
	/* Pequeno deslocamento visual */
	transform: translate(1px, 1px);
}

/* ==================== TASKBAR ==================== */
.taskbar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50px;
	background: linear-gradient(180deg, #f5f5f5, #e8e8e8);
	border-top: 3px solid #0e0d0d;
	border-bottom: 1px solid #ccc;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 15px;
	z-index: 99997;
	flex-shrink: 0;
	box-shadow: 
		inset 0 2px 0 rgba(255, 255, 255, 0.4),
		inset 0 -1px 0 rgba(0, 0, 0, 0.2),
		0 -2px 8px rgba(0, 0, 0, 0.15);
}

.taskbar::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, #3172F4, transparent);
}

.taskbar::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, #ff6633, transparent);
}

.taskbar-icon {
	width: 40px;
	height: 40px;
	/* Borda outset estilo Windows XP */
	border: 2px outset #3172F4;
	background: linear-gradient(180deg, rgba(255, 200, 64, 0.2) 0%, rgba(49, 114, 244, 0.2) 50%, rgba(49, 114, 244, 0.15) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	cursor: pointer;
	transition: all 0.15s;
	margin: 0 5px;
	border-radius: 3px;
	box-shadow: 
		inset 1px 1px 0 rgba(255, 200, 64, 0.3),
		inset -1px -1px 0 rgba(49, 114, 244, 0.3);
}

.taskbar-icon:hover {
	background: linear-gradient(180deg, rgba(255, 87, 29, 0.3) 0%, rgba(49, 114, 244, 0.35) 50%, rgba(49, 114, 244, 0.25) 100%);
	border-style: inset;
	border-color: #FF571D;
	box-shadow: 
		inset 1px 1px 2px rgba(0, 0, 0, 0.3),
		inset -1px -1px 0 rgba(255, 87, 29, 0.2);
}

.taskbar-clock {
	font-size: 11px;
	letter-spacing: 2px;
	color: #3172F4;
	font-weight: 700;
	text-shadow: 0 0 8px rgba(49, 114, 244, 0.4);
}

.taskbar-status {
	display: flex;
	gap: 15px;
	font-size: 9px;
	letter-spacing: 1px;
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.4);
}

::-webkit-scrollbar-thumb {
	background: #665544;
}

::-webkit-scrollbar-thumb:hover {
	background: #ff6633;
}

/* ==================== LOADING ==================== */
#loadingScreen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #000000 0%, #000000 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	flex-direction: column;
	gap: 30px;
}

.boot-text {
	font-size: 14px;
	letter-spacing: 1px;
	color: #ff0000;
	text-align: center;
	animation: bootBlink 1s infinite;
	text-shadow: 0 0 15px rgba(83, 38, 38, 0.6);
	font-weight: 700;
	font-family: 'Fredoka', monospace;
}

@keyframes bootBlink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.5; }
}

.boot-bar {
	width: 300px;
	height: 20px;
	border: 2px solid #020101;
	background: rgba(255, 200, 64, 0.1);
	overflow: hidden;
	border-radius: 4px;
	box-shadow: 0 0 15px rgba(46, 42, 41, 0.3);
}

.boot-fill {
	height: 100%;
	background: linear-gradient(90deg, #ff0000, #e02525);
	width: 0%;
	box-shadow: 0 0 20px rgba(65, 54, 51, 0.8);
	animation: bootPulse 1s ease-in-out infinite;
}

@keyframes bootPulse {
	0%, 100% { box-shadow: 0 0 20px rgba(202, 59, 59, 0.8); }
	50% { box-shadow: 0 0 40px rgba(156, 17, 17, 0.8); }
}

/* ==================== VIRTUAL ASSISTANT ==================== */
.virtual-assistant {
	position: fixed;
	bottom: 80px;
	right: 30px;
	width: auto;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	z-index: 500;
	cursor: pointer;
	user-select: none;
}

.assistant-avatar {
	width: 160px;
	height: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	filter: drop-shadow(0 0 20px rgba(255, 87, 29, 0.4)) drop-shadow(0 0 10px rgba(49, 114, 244, 0.3));
}

.assistant-avatar img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	image-rendering: crisp-edges;
}

.assistant-name {
	font-size: 8px;
	letter-spacing: 0px;
	color: #FF571D;
	text-shadow: 0 0 8px rgba(255, 87, 29, 0.5);
	text-align: center;
	font-weight: 700;
	font-family: 'Fredoka', sans-serif;
	position: relative;
	z-index: 501;
}

.assistant-menu {
	position: absolute;
	bottom: 90px;
	right: 0;
	width: 150px;
	background: linear-gradient(180deg, #2a2a2a, #1a1a1a);
	border: 2px solid #665544;
	border-radius: 5px;
	display: none;
	flex-direction: column;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	z-index: 600;
}

.assistant-menu.open {
	display: flex;
}

.assistant-menu-item {
	padding: 12px;
	border-bottom: 1px solid rgba(0, 217, 255, 0.2);
	cursor: pointer;
	font-size: 11px;
	letter-spacing: 0px;
	color: #e0e0ff;
	transition: all 0.2s;
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
}

.assistant-menu-item:last-child {
	border-bottom: none;
}

.assistant-menu-item:hover {
	background: rgba(255, 0, 110, 0.2);
	color: #ff006e;
	text-shadow: 0 0 8px rgba(255, 0, 110, 0.4);
	transform: translateX(5px);
}

.assistant-menu-item::before {
	content: '✦';
	font-size: 8px;
}

/* ==================== AI CHAT MODAL ==================== */
.chat-modal {
	position: fixed;
	bottom: 80px;
	right: 160px;
	width: 400px;
	height: 600px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 245, 245, 0.95));
	border: 3px solid #FF571D;
	border-radius: 12px;
	display: none;
	flex-direction: column;
	z-index: 700;
	box-shadow: 0 0 40px rgba(255, 87, 29, 0.5), -5px -5px 30px rgba(49, 114, 244, 0.2);
	animation: slideInRight 0.3s ease-out;
}

.chat-modal.open {
	display: flex;
}

@keyframes slideInRight {
	from {
		transform: translateX(100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

.chat-header {
	padding: 15px;
	border-bottom: 2px solid #3172F4;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: linear-gradient(90deg, #FF571D, #FFC840);
}

.chat-title {
	font-size: 10px;
	letter-spacing: 1px;
	color: #fff;
	text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
	font-weight: 700;
	font-family: 'Press Start 2P', monospace;
}

.chat-close {
	width: 24px;
	height: 24px;
	border: 2px solid #3172F4;
	background: rgba(255, 200, 64, 0.2);
	color: #3172F4;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	font-weight: bold;
}

.chat-close:hover {
	background: rgba(255, 87, 29, 0.4);
	border-color: #FF571D;
	box-shadow: 0 0 10px rgba(255, 87, 29, 0.5);
	transform: scale(1.15);
}

.chat-messages {
	flex: 1;
	overflow-y: auto;
	padding: 15px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.chat-message {
	display: flex;
	gap: 8px;
	animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.chat-message.user {
	justify-content: flex-end;
}

.chat-bubble {
	max-width: 70%;
	padding: 10px 12px;
	border-radius: 8px;
	font-size: 11px;
	line-height: 1.4;
	word-wrap: break-word;
	font-weight: 500;
}

.chat-message.ai .chat-bubble {
	background: linear-gradient(135deg, rgba(49, 114, 244, 0.2), rgba(255, 200, 64, 0.1));
	border: 1px solid #3172F4;
	color: #333;
	box-shadow: 0 0 10px rgba(49, 114, 244, 0.2);
}

.chat-message.user .chat-bubble {
	background: linear-gradient(135deg, rgba(255, 87, 29, 0.3), rgba(255, 200, 64, 0.2));
	border: 1px solid #FF571D;
	color: #333;
	box-shadow: 0 0 10px rgba(255, 87, 29, 0.3);
}

.chat-input-area {
	padding: 12px;
	border-top: 2px solid #3172F4;
	display: flex;
	gap: 8px;
}

.chat-input {
	flex: 1;
	padding: 8px;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid #3172F4;
	color: #333;
	font-family: 'Fredoka', monospace;
	font-size: 11px;
	outline: none;
	transition: all 0.2s;
}

.chat-input::placeholder {
	color: rgba(49, 114, 244, 0.5);
}

.chat-input:focus {
	border-color: #FF571D;
	box-shadow: 0 0 15px rgba(255, 87, 29, 0.3);
}

.chat-send {
	width: 35px;
	height: 35px;
	border: 2px solid #FF571D;
	background: linear-gradient(135deg, rgba(255, 87, 29, 0.2), rgba(49, 114, 244, 0.1));
	color: #FF571D;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	font-size: 14px;
	font-weight: bold;
}

.chat-send:hover {
	background: linear-gradient(135deg, rgba(255, 87, 29, 0.4), rgba(49, 114, 244, 0.2));
	border-color: #3172F4;
	box-shadow: 0 0 15px rgba(255, 87, 29, 0.5);
	transform: scale(1.05);
}

.chat-send:active {
	transform: scale(0.95);
}

/* ==================== SCROLLBAR CHAT ==================== */
.chat-messages::-webkit-scrollbar {
	width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
	background: rgba(255, 200, 64, 0.1);
}

.chat-messages::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, #ff1d1d, #f4d031);
	border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, #FFC840, #81E529);
	box-shadow: 0 0 10px rgba(255, 87, 29, 0.5);
}

/* ==================== CHARACTER MENU RPG STYLE ==================== */
.character-menu {
	display: flex;
	height: 100%;
	background: 
		radial-gradient(circle, rgb(28 27 27) 1px, #00000000 1px),
		linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
	background-size: 6px 6px, 100% 100%;
	background-position: 0 0, 0 0;
	gap: 2px;
}

/* Left Panel - Character Image */
.character-panel {
	width: 35%;
	background: linear-gradient(180deg, #1a1a1a, #0f0f0f);
	border-right: 2px solid #000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	position: relative;
}

.character-panel::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 2px;
	height: 100%;
	background: linear-gradient(180deg, #ff6633, #3172F4, #FFC840);
	opacity: 0.3;
}

.character-image-container {
	z-index: 2;
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 102, 51, 0.2);
	background: rgba(0, 0, 0, 0.3);
	box-shadow: inset 0 0 30px rgba(255, 102, 51, 0.1);
}

.character-image-bg{
	object-fit: cover;
    width: 100%;
	height: 100%;
    z-index: 0;
    position: absolute;
}

/* Right Panel - Info & Skills */
.info-panel {
	width: 65%;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

/* Character Info Header */
.character-info {
	background: linear-gradient(135deg, rgba(87, 18, 18, 0.08), rgba(0, 0, 0, 0.08));
	padding: 15px 20px;
	/* border-left: 3px solid #ff0000; */
	background-color: #00000047;
}

.character-name {
	width: 100%;
	-webkit-user-drag: none;
	user-select: none;
}

.character-title {
	font-family: 'Jersey 25', sans-serif !important;
	font-size: 18px !important;
	color: #e31a1a !important;
	margin: 0 0 10px 0 !important;
	letter-spacing: 0.5px ;
	display: flex;
    align-items: center;
    justify-content: center;
}

.character-bio {
	font-family: 'Jersey 25', sans-serif !important;
	font-size: 20px !important;
	color: #ff0000 !important;
	line-height: 1.5 !important; 
	margin: 0 !important;
	margin-top: 2em !important;
	margin-bottom: 2em !important;
	text-align: center;
}

/* Category Tabs */
.category-tabs {
	display: flex;
	gap: 2px;
	padding: 2px;
}

.category-tab {
	flex: 1;
	padding: 10px 8px;
	/* Bordas bevel para tabs */
	border: 2px outset #333;
	color: #777;
	font-size: 30px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.15s;
	text-align: center;
	letter-spacing: 0.5px;
	font-family: 'Jersey 25', sans-serif !important;
	border-radius: 2px;
	box-shadow: inset 1px 1px 0 rgba(80, 80, 80, 0.2);
}

.category-tab#designTab {
	color: #ffffff;
	background: linear-gradient(180deg, #ffc520 0%, #ffb500 50%, #e6a300 100%);
	border-color: #ffb500;
	box-shadow: 
		inset 1px 1px 0 rgba(255, 230, 150, 0.4),
		inset -1px -1px 0 rgba(200, 140, 0, 0.3);
}

.category-tab#programmingTab {
	color: #ffffff;
	background: linear-gradient(180deg, #4a88ff 0%, #3172F4 50%, #2560d0 100%);
	border-color: #3172F4;
	box-shadow: 
		inset 1px 1px 0 rgba(100, 150, 255, 0.4),
		inset -1px -1px 0 rgba(30, 80, 200, 0.3);
}

.category-tab#fashionTab {
	color: #ffffff;
	background: linear-gradient(180deg, #ff9540 0%, #f47e20 50%, #d06510 100%);
	border-color: #f47e20;
	box-shadow: 
		inset 1px 1px 0 rgba(255, 160, 100, 0.4),
		inset -1px -1px 0 rgba(180, 90, 20, 0.3);
}

.category-tab#extraTab {
	color: #ffffff;
	background: linear-gradient(180deg, #2bc060 0%, #1ba849 50%, #158a38 100%);
	border-color: #1ba849;
	box-shadow: 
		inset 1px 1px 0 rgba(80, 220, 120, 0.4),
		inset -1px -1px 0 rgba(20, 130, 50, 0.3);
}

.category-tab:hover {
	border-color: #ff0000;
	color: #fff;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.category-tab#designTab:hover {
	border-color: #ff8800;
	color: #fff;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.category-tab#programmingTab:hover {
	border-color: #3134f4;
	color: #fff;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.category-tab#fashionTab:hover {
	border-color: #f45120;
	color: #fff;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.category-tab#extraTab:hover {
	border-color: #128f22;
	color: #fff;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.category-tab#designTab.active {
	border-style: inset;
	border-color: #e6a300;
	background: linear-gradient(180deg, #e6a300 0%, #ffb500 50%, #ffc520 100%);
	box-shadow: 
		inset 1px 1px 2px rgba(180, 120, 0, 0.5),
		inset -1px -1px 0 rgba(255, 220, 100, 0.3);
	border-bottom: 2px solid #FFC840;
}

.category-tab#programmingTab.active {
	border-style: inset;
	border-color: #2560d0;
	background: linear-gradient(180deg, #2560d0 0%, #3172F4 50%, #4a88ff 100%);
	box-shadow: 
		inset 1px 1px 2px rgba(30, 60, 180, 0.5),
		inset -1px -1px 0 rgba(100, 140, 255, 0.3);
	border-bottom: 2px solid #3478ff;
}

.category-tab#fashionTab.active {
	border-style: inset;
	border-color: #d06510;
	background: linear-gradient(180deg, #d06510 0%, #f47e20 50%, #ff9540 100%);
	box-shadow: 
		inset 1px 1px 2px rgba(160, 70, 10, 0.5),
		inset -1px -1px 0 rgba(255, 140, 80, 0.3);
	border-bottom: 2px solid #f47e20;
}

.category-tab#extraTab.active {
	border-style: inset;
	border-color: #158a38;
	background: linear-gradient(180deg, #158a38 0%, #1ba849 50%, #2bc060 100%);
	box-shadow: 
		inset 1px 1px 2px rgba(20, 100, 40, 0.5),
		inset -1px -1px 0 rgba(80, 200, 100, 0.3);
	border-bottom: 2px solid #1ba849;
}

/* Skills Container */
.skills-container {
	flex: 1;
	overflow-y: auto;
	padding: 15px 20px;
	position: relative;
	background-color: #000000c7;
}

.skills-category {
	display: none;
	animation: fadeIn 0.3s ease-in;
}

.skills-category.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Skill Items */
.skill-item {
	padding: 10px 12px;
	margin-bottom: 8px;
	transition: all 0.15s;
	/* Bordas bevel retrô */
	border-radius: 2px;
	box-shadow: 
		inset 1px 1px 0 rgba(255, 255, 255, 0.05),
		inset -1px -1px 0 rgba(0, 0, 0, 0.3);
}

.skill-design{
	background: linear-gradient(180deg, rgba(255, 190, 51, 0.08) 0%, rgba(244, 241, 49, 0.05) 50%, rgba(255, 200, 64, 0.03) 100%);
	border: 2px solid #FFC840;
	border-top-color: rgba(255, 220, 100, 0.8);
	border-left-color: rgba(255, 210, 80, 0.8);
	border-bottom-color: rgba(200, 150, 40, 0.8);
	border-right-color: rgba(220, 160, 50, 0.8);
	color: #FFC840;
}

.skill-programacao{
	background: linear-gradient(180deg, rgba(51, 146, 255, 0.08) 0%, rgba(49, 173, 244, 0.05) 50%, rgba(49, 114, 244, 0.03) 100%);
	border: 2px solid #3172F4;
	border-top-color: rgba(80, 140, 255, 0.8);
	border-left-color: rgba(70, 130, 250, 0.8);
	border-bottom-color: rgba(30, 80, 200, 0.8);
	border-right-color: rgba(40, 90, 220, 0.8);
	color: #3172F4;
}

.skill-moda{
	background: linear-gradient(180deg, rgba(255, 128, 0, 0.08) 0%, rgba(255, 102, 51, 0.05) 50%, rgba(244, 126, 32, 0.03) 100%);
	border: 2px solid #F47E20;
	border-top-color: rgba(255, 140, 60, 0.8);
	border-left-color: rgba(255, 130, 50, 0.8);
	border-bottom-color: rgba(180, 90, 20, 0.8);
	border-right-color: rgba(200, 100, 25, 0.8);
	color: #F47E20;
}

.skill-extra{
	background: linear-gradient(180deg, rgba(27, 168, 73, 0.08) 0%, rgba(49, 205, 102, 0.05) 50%, rgba(27, 168, 73, 0.03) 100%);
	border: 2px solid #1BA849;
	border-top-color: rgba(60, 200, 100, 0.8);
	border-left-color: rgba(50, 190, 90, 0.8);
	border-bottom-color: rgba(20, 120, 50, 0.8);
	border-right-color: rgba(25, 140, 60, 0.8);
	color: #1BA849;
}

.skill-item:hover {
	transform: translateX(3px);
}

.skill-design:hover{
	background: linear-gradient(135deg, rgba(251, 255, 0, 0.1), rgba(244, 182, 49, 0.1));
	border-color: #FFC840;
	border-left-color: #FFC840;
	box-shadow: 0 0 15px rgba(255, 200, 64, 0.2);
}

.skill-programacao:hover{
	background: linear-gradient(135deg, rgba(64, 115, 255, 0.1), rgba(51, 139, 255, 0.1));
	border-color: #3172F4;
	border-left-color: #3172F4;
	box-shadow: 0 0 15px rgba(64, 115, 255, 0.2);
}

.skill-moda:hover{
	background: linear-gradient(135deg, rgba(255, 150, 64, 0.1), rgba(255, 116, 51, 0.1));
	border-color: #F47E20;
	border-left-color: #F47E20;
	box-shadow: 0 0 15px rgba(255, 150, 64, 0.2);
}

.skill-extra:hover{
	background: linear-gradient(135deg, rgba(49, 205, 102, 0.1), rgba(27, 168, 73, 0.1));
	border-color: #1BA849;
	border-left-color: #1BA849;
	box-shadow: 0 0 15px rgba(27, 168, 73, 0.2);
}

.skill-name {
	font-family: 'Jersey 25', 'Fredoka', sans-serif !important;
	font-size: 19px;
	font-weight: 200;
	margin-bottom: 4px;
	letter-spacing: 0.5px;
}

.skill-desc {
	font-family: 'Jersey 10', sans-serif !important;
	font-size: 12px;
	color: #888;
	line-height: 1.4;
}

/* Software Section */
.software-section {
	margin-top: 20px;
	border-top: 2px solid rgba(255, 102, 51, 0.2);
	padding-top: 15px;
}

.software-header {
	padding: 8px 12px;
	background: linear-gradient(135deg, rgba(244, 49, 49, 0.1), rgba(244, 49, 49, 0.1));
	/* border: 1px solid rgba(255, 102, 51, 0.3); */
	cursor: pointer;
	transition: all 0.2s;
	margin-bottom: 10px;
}

.software-header:hover {
	background: linear-gradient(135deg, rgba(244, 49, 49, 0.15), rgba(244, 49, 49, 0.15));
	border-color: #ff4040;
	box-shadow: 0 0 10px rgba(255, 64, 64, 0.2);
}

.software-header span {
	font-family: 'Jersey 25', sans-serif !important;
	font-size: 23px;
	color: #e41b23;
	font-weight: 200;
	letter-spacing: 0.5px;
}

.software-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
}

.software-content.open {
	max-height: 500px;
}

.software-category {
	margin-bottom: 15px;
}

.software-category h4 {
	font-family: 'Jersey 25', sans-serif !important;
	font-size: 16px;
	color: #e41b23;
	margin: 0 0 8px 0;
	letter-spacing: 0.5px;
	font-weight: 200;
}

.software-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.software-tag {
	display: inline-block;
	padding: 4px 10px;
	background: rgba(244, 49, 49, 0.1);
	border: 1px solid rgba(244, 49, 49, 0.3);
	color: #e41b23;
	font-family: 'Fredoka', sans-serif !important;
	font-size: 12px;
	border-radius: 3px;
	transition: all 0.2s;
}

.software-tag:hover {
	background: rgba(255, 200, 64, 0.1);
	border-color: #FFC840;
	color: #FFC840;
	box-shadow: 0 0 8px rgba(255, 200, 64, 0.3);
}

/* Scrollbar for skills container */
.skills-container::-webkit-scrollbar {
	width: 6px;
}

.skills-container::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.3);
}

.skills-container::-webkit-scrollbar-thumb {
	background: transparent transparent #ff0404 transparent;
	border-radius: 3px;
}

.skills-container::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, #ff2222, #ff0404);
}

/* ==================== Y2K FEVER POPUP ==================== */
.y2k-window{
	background: #ed6ba6!important;
	    border-bottom: 2px solid #d13279;
}

.window-btn.y2k{
	border: 2px outset #dd2175;
    background: linear-gradient(180deg, #ff7ac1 0%, #d31f89 50%, #b90067 100%);
}

.window.y2k{
	background: #dd2175;
    border: 3px solid #ed6ba6;
    border-top-color: #ff88be;
    border-left-color: #ffa6ce;
    border-bottom-color:#d13279;
    border-right-color: #ff88be;
    outline: 1px solid #cf3078;
}

.y2k-header {
	background: linear-gradient(180deg, #ff88be 0%, #ff65ab 50%, #bd2e6e 100%);
	padding: 20px;
	text-align: center;
	border-bottom: 3px solid #d13279;
	border-top: 3px solid #ff88be;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.y2k-title {
	font-family: 'Fredoka', sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	text-shadow: 2px 2px 0 #a83679, 3px 3px 5px rgba(0, 0, 0, 0.5);
	letter-spacing: 3px;
	margin: 0;
}

.y2k-subtitle {
	font-family: 'Comfortaa', sans-serif;
	font-size: 12px;
	color: #ffe4f5;
	margin: 8px 0 0 0;
	letter-spacing: 2px;
}

.y2k-content {
	padding: 20px;
	overflow-y: auto;
	max-height: calc(700px - 140px);
	background: #ffa6ce;
}

.y2k-gallery {
	margin-bottom: 20px;
}

.gallery-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border: 3px solid #666;
	border-top-color: #999;
	border-left-color: #999;
	border-right-color: #333;
	border-bottom-color: #333;
	box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.4), 0 0 5px rgba(0, 0, 0, 0.5);
	cursor: pointer;
	transition: all 0.2s;
	background: #000;
	aspect-ratio: 4 / 3;
}

.gallery-item.y2k{
	position: relative;
	overflow: hidden;
	border: 3px solid #ed6ba6;
	border-top-color: #ff88be;
	border-left-color: #ffa6ce;
	border-bottom-color:#d13279;
	border-right-color: #ff88be;
	box-shadow: inset 2px 2px 3px rgba(126, 19, 69, 0.4), 0 0 5px rgba(134, 10, 62, 0.5);
	cursor: pointer;
	transition: all 0.2s;
	background: #ffa6ce;
	aspect-ratio: 4 / 3;
}

.gallery-item:hover {
	border-color: #e96eb8;
	box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.4), 0 0 15px rgba(233, 110, 184, 0.6);
	transform: scale(1.02);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s;
}

.gallery-item:hover img {
	transform: scale(1.05);
}

/* Floating Process Icon */
.y2k-floating-icon {
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	font-size: 28px;
	background: linear-gradient(180deg, #e96eb8 0%, #d156a2 100%);
	border: 3px solid;
	border-color: #ff8fcb #a83679 #a83679 #ff8fcb;
	border-radius: 50%;
	box-shadow: 
		inset 1px 1px 0 rgba(255, 255, 255, 0.3), 
		inset -1px -1px 0 rgba(0, 0, 0, 0.3), 
		0 4px 10px rgba(0, 0, 0, 0.5),
		0 0 20px rgba(233, 110, 184, 0.4);
	cursor: pointer;
	transition: all 0.2s;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: y2kFloatPulse 2s ease-in-out infinite;
}

.y2k-floating-icon.play{
	bottom: 96px;
}

.y2k-floating-icon:hover {
	background: linear-gradient(180deg, #ff8fcb 0%, #e96eb8 100%);
	box-shadow: 
		inset 1px 1px 0 rgba(255, 255, 255, 0.4), 
		inset -1px -1px 0 rgba(0, 0, 0, 0.2), 
		0 6px 15px rgba(0, 0, 0, 0.6),
		0 0 30px rgba(233, 110, 184, 0.8);
	transform: scale(1.1);
	animation: none;
}

.y2k-floating-icon:active {
	border-color: #a83679 #ff8fcb #ff8fcb #a83679;
	background: linear-gradient(180deg, #d156a2 0%, #c04491 100%);
	box-shadow: 
		inset 2px 2px 5px rgba(0, 0, 0, 0.6),
		0 0 20px rgba(233, 110, 184, 0.6);
	transform: scale(1.05);
}

@keyframes y2kFloatPulse {
	0%, 100% {
		box-shadow: 
			inset 1px 1px 0 rgba(255, 255, 255, 0.3), 
			inset -1px -1px 0 rgba(0, 0, 0, 0.3), 
			0 4px 10px rgba(0, 0, 0, 0.5),
			0 0 20px rgba(233, 110, 184, 0.4);
	}
	50% {
		box-shadow: 
			inset 1px 1px 0 rgba(255, 255, 255, 0.3), 
			inset -1px -1px 0 rgba(0, 0, 0, 0.3), 
			0 4px 10px rgba(0, 0, 0, 0.5),
			0 0 30px rgba(233, 110, 184, 0.7);
	}
}

.y2k-actions {
	text-align: center;
	padding: 15px 0;
}

/* Ícone flutuante de processo criativo */
.y2k-floating-process-icon {
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: 70px;
	height: 70px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	background: linear-gradient(180deg, #e96eb8 0%, #d156a2 100%);
	border: 3px solid;
	border-color: #ff8fcb #a83679 #a83679 #ff8fcb;
	border-radius: 50%;
	box-shadow: 
		inset 1px 1px 0 rgba(255, 255, 255, 0.3), 
		inset -1px -1px 0 rgba(0, 0, 0, 0.3), 
		0 4px 8px rgba(0, 0, 0, 0.4),
		0 0 20px rgba(233, 110, 184, 0.3);
	cursor: pointer;
	transition: all 0.2s;
	z-index: 10;
}

.y2k-floating-process-icon:hover {
	background: linear-gradient(180deg, #ff8fcb 0%, #e96eb8 100%);
	transform: scale(1.1);
	box-shadow: 
		inset 1px 1px 0 rgba(255, 255, 255, 0.4), 
		inset -1px -1px 0 rgba(0, 0, 0, 0.2), 
		0 6px 12px rgba(0, 0, 0, 0.5),
		0 0 30px rgba(233, 110, 184, 0.6);
}

.y2k-floating-process-icon:active {
	border-color: #a83679 #ff8fcb #ff8fcb #a83679;
	background: linear-gradient(180deg, #d156a2 0%, #c04491 100%);
	box-shadow: 
		inset 2px 2px 3px rgba(0, 0, 0, 0.6),
		0 2px 4px rgba(0, 0, 0, 0.3);
	transform: scale(1.05) translateY(1px);
}

.y2k-floating-process-icon .icon-text {
	font-size: 24px;
	line-height: 1;
	filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.5));
}

.y2k-floating-process-icon .icon-label {
	font-family: 'Fredoka', sans-serif;
	font-size: 9px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.5px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	line-height: 1;
}

.y2k-process-btn {
	padding: 12px 30px;
	font-family: 'Fredoka', sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	color: #fff;
	background: linear-gradient(180deg, #e96eb8 0%, #d156a2 100%);
	border: 3px solid;
	border-color: #ff8fcb #a83679 #a83679 #ff8fcb;
	box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.3), inset -1px -1px 0 rgba(0, 0, 0, 0.3), 0 2px 5px rgba(0, 0, 0, 0.5);
	cursor: pointer;
	transition: all 0.1s;
}

.y2k-process-btn:hover {
	background: linear-gradient(180deg, #ff8fcb 0%, #e96eb8 100%);
	box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.4), inset -1px -1px 0 rgba(0, 0, 0, 0.2), 0 0 15px rgba(233, 110, 184, 0.6);
}

.y2k-process-btn:active {
	border-color: #a83679 #ff8fcb #ff8fcb #a83679;
	background: linear-gradient(180deg, #d156a2 0%, #c04491 100%);
	box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.6);
	transform: translate(1px, 1px);
}

/* Process Modal */
.process-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 99998 !important;
	backdrop-filter: blur(5px);
	position: fixed !important;
}

.process-modal.active {
	display: flex;
}

.process-modal-content {
	width: 700px;
	max-width: 90%;
	max-height: 80vh;
	background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
	border: 3px solid;
	border-color: #666 #000 #000 #666;
	box-shadow: 0 0 30px rgba(233, 110, 184, 0.5), inset 1px 1px 0 rgba(255, 255, 255, 0.1);
	overflow: hidden;
	animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
	from {
		opacity: 0;
		transform: translateY(-50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.process-modal-header {
	background: linear-gradient(180deg, #e96eb8 0%, #d156a2 100%);
	padding: 15px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 3px solid #a83679;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.process-modal-title {
	font-family: 'Fredoka', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 2px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.process-modal-close {
	width: 30px;
	height: 30px;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	background: linear-gradient(180deg, #ff6b6b 0%, #ee5a5a 100%);
	border: 2px solid;
	border-color: #ff9999 #cc3333 #cc3333 #ff9999;
	cursor: pointer;
	transition: all 0.1s;
	box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.3);
}

.process-modal-close:hover {
	background: linear-gradient(180deg, #ff8888 0%, #ff6b6b 100%);
	box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.4), 0 0 10px rgba(255, 107, 107, 0.6);
}

.process-modal-close:active {
	border-color: #cc3333 #ff9999 #ff9999 #cc3333;
	box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.5);
	transform: translate(1px, 1px);
}

.process-modal-body {
	padding: 25px;
	overflow-y: auto;
	max-height: calc(80vh - 100px);
	color: #e0e0e0;
	font-family: 'Comfortaa', sans-serif;
	line-height: 1.6;
}

.process-modal-body h3 {
	font-family: 'Fredoka', sans-serif;
	color: #e96eb8;
	font-size: 18px;
	margin: 20px 0 10px 0;
	padding-bottom: 5px;
	border-bottom: 2px solid rgba(233, 110, 184, 0.3);
	text-shadow: 0 0 10px rgba(233, 110, 184, 0.4);
}

.process-modal-body h3:first-child {
	margin-top: 0;
}

.process-modal-body p {
	margin: 0 0 15px 0;
	font-size: 14px;
	color: #ccc;
}

/* Lightbox */
.lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 99999 !important;
	position: fixed !important;
}

.lightbox.active {
	display: flex;
}

.lightbox img {
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
	border: 5px solid;
	border-color: #e96eb8;
	box-shadow: 0 0 50px rgba(233, 110, 184, 0.8), inset 0 0 20px rgba(233, 110, 184, 0.2);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
	position: absolute;
	font-size: 32px;
	font-weight: bold;
	color: #fff;
	background: linear-gradient(180deg, rgba(233, 110, 184, 0.8) 0%, rgba(209, 86, 162, 0.8) 100%);
	border: 3px solid;
	border-color: rgba(255, 143, 203, 0.8) rgba(168, 54, 121, 0.8) rgba(168, 54, 121, 0.8) rgba(255, 143, 203, 0.8);
	cursor: pointer;
	transition: all 0.2s;
	padding: 0px 11px 3px 11px;
	box-shadow: 0 0 20px rgba(233, 110, 184, 0.5);
}

.lightbox-close {
	top: 30px;
	right: 30px;
	padding: 3px 10px;
	font-size: 22px!important;
}

.lightbox-prev {
	left: 30px;
	top: 50%;
	transform: translateY(-50%);
}

.lightbox-next {
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
	background: linear-gradient(180deg, rgba(255, 143, 203, 0.9) 0%, rgba(233, 110, 184, 0.9) 100%);
	box-shadow: 0 0 30px rgba(233, 110, 184, 0.8);
	transform: translateY(-50%) scale(1.05);
}

.lightbox-close:hover {
	transform: scale(1.05);
}

.lightbox-close:active,
.lightbox-prev:active,
.lightbox-next:active {
	border-color: rgba(168, 54, 121, 0.8) rgba(255, 143, 203, 0.8) rgba(255, 143, 203, 0.8) rgba(168, 54, 121, 0.8);
	box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.6);
}

/* Scrollbar for Y2K content */
.y2k-content::-webkit-scrollbar,
.process-modal-body::-webkit-scrollbar {
	width: 8px;
}

.y2k-content::-webkit-scrollbar-track,
.process-modal-body::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(233, 110, 184, 0.2);
}

.y2k-content::-webkit-scrollbar-thumb,
.process-modal-body::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, #e96eb8, #d156a2);
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.y2k-content::-webkit-scrollbar-thumb:hover,
.process-modal-body::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, #ff8fcb, #e96eb8);
	box-shadow: 0 0 10px rgba(233, 110, 184, 0.5);
}
/* ================================= */
/* WINDOWS MEDIA PLAYER CLASSIC     */
/* ================================= */

.wmp-window {
	/* Borda padronizada estilo Windows */
	border: 3px solid #4a4a4a;
	border-top-color: #6a6a6a;
	border-left-color: #5a5a5a;
	border-bottom-color: #2a2a2a;
	border-right-color: #3a3a3a;
	outline: 1px solid #1a1a1a;
	outline-offset: -4px;
	box-shadow: 
		0 0 0 1px rgba(100, 100, 100, 0.3),
		inset 1px 1px 0 rgba(120, 120, 120, 0.4),
		inset -1px -1px 0 rgba(0, 0, 0, 0.6),
		0 8px 32px rgba(0, 0, 0, 0.5);
	border-radius: 3px;
	overflow: hidden;
	background: linear-gradient(180deg, #2c3e50 0%, #1a252f 100%);
}

/* Title Bar */
.wmp-titlebar {
	height: 30px;
	background: linear-gradient(180deg, #4a90e2 0%, #2874d3 50%, #1e5fa8 100%);
	border-bottom: 1px solid #174a7c;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 10px;
	cursor: move;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.wmp-title {
	font-family: 'Tahoma', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	letter-spacing: 0.3px;
}

.wmp-controls {
	display: flex;
	gap: 2px;
}

.wmp-btn {
	width: 24px;
	height: 24px;
	/* Botão padronizado estilo bevel clássico */
	border: 2px outset #4a4a4a;
	background: linear-gradient(180deg, #5a5a5a 0%, #3a3a3a 50%, #2a2a2a 100%);
	color: #e0e0e0;
	font-size: 10px;
	font-weight: bold;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 2px;
	box-shadow: 
		inset 1px 1px 0 rgba(150, 150, 150, 0.4),
		inset -1px -1px 0 rgba(0, 0, 0, 0.6);
	transition: all 0.2s;
}

.wmp-btn:hover {
	background: linear-gradient(180deg, #6a6a6a 0%, #4a4a4a 50%, #3a3a3a 100%);
	border-style: outset;
	border-color: #5a5a5a;
	box-shadow: 
		inset 1px 1px 0 rgba(180, 180, 180, 0.5),
		inset -1px -1px 0 rgba(0, 0, 0, 0.5);
}

.wmp-btn:active {
	background: linear-gradient(180deg, #9ab9d6 0%, #bed8f0 50%, #e3f0ff 100%);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
	transform: translateY(1px);
}

.wmp-btn.close:hover {
	background: linear-gradient(180deg, #d44, #a22);
	border-color: #c33;
	box-shadow: 
		inset 1px 1px 0 rgba(255, 100, 100, 0.4),
		inset -1px -1px 0 rgba(80, 0, 0, 0.6);
}

/* Tab Bar */
.wmp-tabbar {
	background: linear-gradient(180deg, #3a4d61 0%, #2c3e50 100%);
	border-bottom: 1px solid #1a252f;
	display: flex;
	padding: 4px 8px 0 8px;
	gap: 4px;
	box-shadow: inset 0 -2px 3px rgba(0, 0, 0, 0.2);
}

.wmp-tab {
	padding: 6px 20px;
	background: linear-gradient(180deg, #556b7f 0%, #3f5468 100%);
	border: 1px solid #2a3a4a;
	border-bottom: none;
	border-radius: 8px 8px 0 0;
	font-family: 'Tahoma', sans-serif;
	font-size: 11px;
	color: #a0b8cf;
	cursor: pointer;
	transition: all 0.2s;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.wmp-tab:hover {
	background: linear-gradient(180deg, #6a8099 0%, #526a7f 100%);
	color: #d0e0f0;
}

.wmp-tab.active {
	background: linear-gradient(180deg, #7eb4ea 0%, #5a9ad8 100%);
	color: #fff;
	border-color: #4a8ac8;
	box-shadow: 0 -2px 8px rgba(74, 138, 200, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
	font-weight: 600;
}

/* Main Content Area */
.wmp-content {
	display: flex;
	background: #1a1a1a;
	height: calc(100% - 30px - 35px - 120px); /* title - tab - controls */
	overflow: hidden;
}

/* Video Area */
.wmp-video-area {
	flex: 1;
	background: #000;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wmp-video {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.wmp-video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, transparent 50%);
	pointer-events: none;
	opacity: 0.3;
}

/* Side Panel */
.wmp-sidepanel {
	width: 250px;
	background: linear-gradient(180deg, #f0f4f8 0%, #dce4ec 100%);
	border-left: 1px solid #b0c0d0;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	box-shadow: inset 2px 0 5px rgba(0, 0, 0, 0.1);
}

.wmp-album-art {
	padding: 15px;
	background: linear-gradient(180deg, #e8f0f8 0%, #d0dce8 100%);
	border-bottom: 1px solid #b0c0d0;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.wmp-album-art img {
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	object-fit: cover;
	border: 2px solid #8090a0;
	border-radius: 3px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.wmp-info {
	padding: 15px;
}

.wmp-info-title {
	font-family: 'Tahoma', sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: #2a3a4a;
	margin-bottom: 5px;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.wmp-info-artist {
	font-family: 'Tahoma', sans-serif;
	font-size: 11px;
	color: #4a6a8a;
	margin-bottom: 15px;
	font-weight: 600;
}

.wmp-info-details {
	border-top: 1px solid #c0d0e0;
	padding-top: 12px;
	margin-top: 12px;
}

.wmp-detail-item {
	font-family: 'Tahoma', sans-serif;
	font-size: 10px;
	color: #556575;
	padding: 4px 0;
	border-bottom: 1px dotted #d0dce8;
}

.wmp-detail-item:last-child {
	border-bottom: none;
}

/* Controls Bar */
.wmp-controls-bar {
	background: linear-gradient(180deg, #3a4d61 0%, #2a3a4a 100%);
	padding: 12px 15px;
	border-top: 1px solid #4a5d71;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 -2px 8px rgba(0, 0, 0, 0.3);
}

/* Timeline */
.wmp-timeline-container {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
}

.wmp-time-current,
.wmp-time-total {
	font-family: 'Courier New', monospace;
	font-size: 11px;
	color: #a0b8cf;
	min-width: 45px;
	text-align: center;
	font-weight: 600;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.wmp-timeline {
	flex: 1;
	height: 18px;
	background: linear-gradient(180deg, #1a252f 0%, #0f1519 100%);
	border: 1px solid #0a0e11;
	border-radius: 9px;
	position: relative;
	cursor: pointer;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.6), inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.wmp-timeline-progress {
	height: 100%;
	background: linear-gradient(180deg, #5a9ad8 0%, #4a8ac8 50%, #3a7ab8 100%);
	border-radius: 9px;
	width: 0%;
	transition: width 0.3s;
	box-shadow: 0 0 10px rgba(74, 138, 200, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
	position: relative;
}

.wmp-timeline-handle {
	position: absolute;
	right: -8px;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background: linear-gradient(135deg, #ffffff 0%, #e0e8f0 100%);
	border: 2px solid #4a8ac8;
	border-radius: 50%;
	cursor: grab;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.8);
	transition: all 0.2s;
}

.wmp-timeline-handle:hover {
	transform: translateY(-50%) scale(1.2);
	box-shadow: 0 3px 10px rgba(74, 138, 200, 0.6);
}

.wmp-timeline-handle:active {
	cursor: grabbing;
	transform: translateY(-50%) scale(1.1);
}

/* Playback Controls */
.wmp-playback {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
}

.wmp-control-btn {
	width: 40px;
	height: 40px;
	background: linear-gradient(145deg, #556b7f 0%, #3f5468 100%);
	border: 2px solid #2a3a4a;
	border-radius: 50%;
	color: #d0e0f0;
	font-size: 16px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.wmp-control-btn.play {
	width: 56px;
	height: 56px;
	background: linear-gradient(145deg, #5a9ad8 0%, #4a8ac8 100%);
	border-color: #3a7ab8;
	font-size: 24px;
	box-shadow: 0 6px 16px rgba(74, 138, 200, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.wmp-control-btn:hover {
	background: linear-gradient(145deg, #6a8099 0%, #526a7f 100%);
	border-color: #3f5468;
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.wmp-control-btn.play:hover {
	background: linear-gradient(145deg, #6aaaeb 0%, #5a9ad8 100%);
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(74, 138, 200, 0.5), inset 0 2px 0 rgba(255, 255, 255, 0.25);
}

.wmp-control-btn:active {
	transform: translateY(0);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.3);
}

.wmp-icon {
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

/* Volume Control */
.wmp-volume-container {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-top: 12px;
	border-top: 1px solid #4a5d71;
	justify-content: center;
}

.wmp-volume-btn {
	background: transparent;
	border: none;
	font-size: 20px;
	cursor: pointer;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
	transition: transform 0.2s;
}

.wmp-volume-btn:hover {
	transform: scale(1.1);
}

.wmp-volume-slider {
	width: 120px;
	height: 6px;
	-webkit-appearance: none;
	appearance: none;
	background: linear-gradient(180deg, #1a252f 0%, #0f1519 100%);
	border-radius: 3px;
	outline: none;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.6);
	border: 1px solid #0a0e11;
}

.wmp-volume-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 14px;
	height: 14px;
	background: linear-gradient(135deg, #ffffff 0%, #e0e8f0 100%);
	border: 2px solid #4a8ac8;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
	transition: all 0.2s;
}

.wmp-volume-slider::-webkit-slider-thumb:hover {
	transform: scale(1.2);
	box-shadow: 0 3px 8px rgba(74, 138, 200, 0.6);
}

.wmp-volume-slider::-moz-range-thumb {
	width: 14px;
	height: 14px;
	background: linear-gradient(135deg, #ffffff 0%, #e0e8f0 100%);
	border: 2px solid #4a8ac8;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
	transition: all 0.2s;
}

.wmp-volume-slider::-moz-range-thumb:hover {
	transform: scale(1.2);
	box-shadow: 0 3px 8px rgba(74, 138, 200, 0.6);
}

/* Scrollbar for side panel */
.wmp-sidepanel::-webkit-scrollbar {
	width: 14px;
}

.wmp-sidepanel::-webkit-scrollbar-track {
	background: linear-gradient(90deg, #c0d0e0 0%, #d0dce8 100%);
	border-left: 1px solid #a0b0c0;
	box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
}

.wmp-sidepanel::-webkit-scrollbar-thumb {
	background: linear-gradient(90deg, #7a8a9a 0%, #6a7a8a 100%);
	border: 2px solid #c0d0e0;
	border-radius: 7px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.wmp-sidepanel::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(90deg, #8a9aaa 0%, #7a8a9a 100%);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

#gamesWindow {
	min-width: 320px;
	max-width: 320px;
	min-height: 367px;
	max-height: 367px;
	background: linear-gradient(180deg, #a7cb6e, #9ec06e);
    border: 3px solid #4c5c37;
    border-top-color: #ccdb75;
    border-left-color: #ccdb75;
    border-bottom-color: #ccdb75;
    border-right-color: #ccdb75;
    outline: 1px solid #9da74a;
}

#gamesWindow > .window-resize-handle {
	display: none;
}

.window-content.pet-game {
	padding: 0 !important;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background:linear-gradient(180deg, #a4c76e, #abd06e);
    border-top: 2px solid #b5d670;
    border-bottom: 1px solid #abd06e;
}

.window-content.pet-game iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.window-titlebar.pet-game{
	background: linear-gradient(180deg, #d4dc77 0%, #afd56e 50%, #97b76e 100%);
    border-bottom: 2px solid #8db854;
	box-shadow: inset 0 1px 0 rgb(135 205 136 / 30%), inset 0 -1px 0 rgb(47 95 52 / 50%), 0 2px 4px rgb(52 83 55 / 40%);
}

.window-btn.pet-game{
	border: 2px outset #648c51;
    background: linear-gradient(180deg, #c9da74 0%, #c0d872 50%, #99ba6e 100%);
	box-shadow: inset 1px 1px 0 rgb(58 129 73 / 40%), inset -1px -1px 0 rgb(48 125 58 / 60%);
	color: #ffffff;
}