.noob-container {
	max-width: 900px;
	margin: 0 auto;
}

.welcome-section {
	background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	padding: 2.5rem;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.welcome-section h2 {
	font-size: 2.2rem;
	margin-bottom: 0.5rem;
	color: #3498db;
	text-align: center;
	animation: fadeInDown 0.6s ease;
}

.subtitle {
	text-align: center;
	font-size: 1.3rem;
	color: #bdc3c7;
	margin-bottom: 2rem;
	font-style: italic;
}

.guide-content {
	margin-top: 2rem;
}

.guide-section {
	margin-bottom: 2rem;
	padding: 1.5rem;
	background: rgba(52, 152, 219, 0.05);
	border-left: 4px solid #3498db;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.guide-section:hover {
	background: rgba(52, 152, 219, 0.1);
	transform: translateX(5px);
}

.guide-section h3 {
	font-size: 1.4rem;
	color: #3498db;
	margin-bottom: 0.8rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.guide-section p {
	color: #d0d0d0;
	line-height: 1.7;
	margin-bottom: 0.8rem;
}

.guide-section ul {
	margin-left: 2rem;
	color: #d0d0d0;
	line-height: 1.8;
}

.guide-section li {
	margin-bottom: 0.6rem;
}

.guide-section a {
	color: #3498db;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.2s ease;
	border-bottom: 1px solid transparent;
}

.guide-section a:hover {
	border-bottom: 1px solid #3498db;
	color: #5dade2;
}

.info-box {
	background: rgba(0, 0, 0, 0.3);
	padding: 1rem;
	border-radius: 6px;
	border: 1px solid #3498db;
	margin: 1rem 0;
}

.info-box p {
	margin: 0.5rem 0;
	color: #ecf0f1;
	font-weight: 500;
}

.next-steps {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 2px solid rgba(52, 152, 219, 0.3);
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
}

.action-button {
	display: inline-block;
	background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	color: #ffffff;
	text-decoration: none;
	padding: 0.8rem 1.8rem;
	border-radius: 6px;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.action-button:hover {
	background: linear-gradient(135deg, #2980b9 0%, #1f618d 100%);
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	.welcome-section {
		padding: 1.5rem;
	}

	.welcome-section h2 {
		font-size: 1.6rem;
	}

	.subtitle {
		font-size: 1.1rem;
	}

	.next-steps {
		flex-direction: column;
		gap: 1rem;
	}

	.action-button {
		width: 100%;
		text-align: center;
	}
}
