body {
	font-family: 'Quicksand', sans-serif;
	background-color: #000000;
	color: #ffffff;
	margin: 0;
	padding: 0;
	min-height: 100vh;
	line-height: 1.6;
}

.main-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 20px;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.main-header {
	text-align: center;
	margin-bottom: 40px;
	padding-bottom: 30px;
	border-bottom: 2px solid #9146ff;
}

.main-header h1 {
	color: #9146ff;
	font-size: 42px;
	margin-bottom: 15px;
	font-weight: 700;
	text-shadow: 0 0 20px rgba(145, 70, 255, 0.3);
}

.subtitle {
	color: #cccccc;
	font-size: 18px;
	margin: 0;
	font-weight: 400;
}

.content-grid {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 30px;
	flex: 1;
	margin-bottom: 40px;
}

.section-card {
	background-color: #1a1a1a;
	border: 1px solid #333333;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(145, 70, 255, 0.2);
}

.section-card h2 {
	color: #9146ff;
	margin-bottom: 20px;
	font-size: 28px;
	font-weight: 700;
}

.section-card h3 {
	color: #9146ff;
	margin-bottom: 15px;
	font-size: 24px;
	font-weight: 600;
}

.section-card p {
	color: #cccccc;
	margin-bottom: 25px;
	font-size: 16px;
	line-height: 1.7;
}

.action-buttons {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.action-button {
	padding: 15px 25px;
	border: none;
	border-radius: 8px;
	font-family: 'Quicksand', sans-serif;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.action-button.primary {
	background-color: transparent;
	color: #9146ff;
   	border: 2px solid #9146ff;
}

.action-button.primary:hover {
	background-color: #7c3aed;
   	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(145, 70, 255, 0.4);
}

.action-button.secondary {
	background-color: transparent;
	color: #9146ff;
	border: 2px solid #9146ff;
}

.action-button.secondary:hover {
	background-color: #9146ff;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(145, 70, 255, 0.4);
}

.twitch-text {
	color: #ffffff;
	font-weight: 600;
	margin-bottom: 20px;
	text-align: center;
}

.iframe-container {
	border-radius: 8px;
	overflow: hidden;
	border: 2px solid #9146ff;
	box-shadow: 0 4px 15px rgba(145, 70, 255, 0.3);
}

iframe {
	display: block;
	width: 100%;
	border: none;
	background-color: #2a2a2a;
}

.main-footer {
	text-align: center;
	padding: 20px 0;
	border-top: 1px solid #333333;
	margin-top: auto;
}

.main-footer p {
	color: #666666;
	font-size: 14px;
	margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.content-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.main-header h1 {
		font-size: 36px;
	}
	
	.subtitle {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.main-container {
		padding: 15px;
	}
	
	.section-card {
		padding: 20px;
	}
	
	.main-header h1 {
		font-size: 32px;
	}
	
	.action-buttons {
		flex-direction: column;
	}
}

@media (max-width: 480px) {
	.main-header h1 {
		font-size: 28px;
	}
	
	.section-card h2 {
		font-size: 24px;
	}
	
	.section-card h3 {
		font-size: 20px;
	}
}
