* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: #2a2a2a;
	min-height: 100vh;
	padding: 40px 20px;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}

header {
	text-align: center;
	color: white;
	margin-bottom: 40px;
}

header h1 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 10px;
}

header p {
	font-size: 1.1rem;
	opacity: 0.9;
}

.upload-section {
	background: #1e1e1e;
	border-radius: 12px;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.upload-area {
	border: 2px dashed #555;
	border-radius: 8px;
	padding: 40px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s;
	color: #fff;
}

.upload-area:hover {
	border-color: #777;
	background: #252525;
}

.upload-area.dragging {
	border-color: #888;
	background: #2a2a2a;
}

.upload-icon {
	font-size: 3rem;
	margin-bottom: 15px;
}

input[type="file"] {
	display: none;
}

input[type="text"] {
	width: 100%;
	padding: 12px;
	border: 1px solid #444;
	background: #2a2a2a;
	color: #fff;
	border-radius: 6px;
	font-size: 1rem;
	margin-top: 15px;
}

button {
	background: #fff;
	color: #000;
	border: none;
	padding: 12px 30px;
	border-radius: 6px;
	font-size: 1rem;
	cursor: pointer;
	margin-top: 15px;
	font-weight: 600;
	transition: transform 0.2s;
}

button:hover {
	transform: translateY(-2px);
	background: #f0f0f0;
}

button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.progress {
	width: 100%;
	height: 6px;
	background: #333;
	border-radius: 3px;
	margin-top: 15px;
	overflow: hidden;
	display: none;
}

.progress-bar {
	height: 100%;
	background: #fff;
	width: 0%;
	transition: width 0.3s;
}

.videos-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
}

.video-card {
	background: #1e1e1e;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s;
}

.video-card:hover {
	transform: translateY(-5px);
}

.video-thumbnail {
	width: 100%;
	height: 180px;
	object-fit: cover;
	background: #2a2a2a;
}

.video-info {
	padding: 15px;
}

.video-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 10px;
	color: #fff;
}

.video-date {
	font-size: 0.85rem;
	color: #888;
	margin-bottom: 15px;
}

.video-actions {
	display: flex;
	gap: 10px;
}

.btn-play {
	flex: 1;
	background: #fff;
	color: #000;
	padding: 8px;
	font-size: 0.9rem;
}

.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	z-index: 1000;
	justify-content: center;
	align-items: center;
}

.modal.active {
	display: flex;
}

.modal-content {
	max-width: 90%;
	max-height: 90%;
}

.close-modal {
	position: absolute;
	top: 20px;
	right: 30px;
	font-size: 2rem;
	color: white;
	cursor: pointer;
}

video {
	max-width: 100%;
	max-height: 80vh;
	border-radius: 8px;
}

.empty-state {
	text-align: center;
	padding: 60px 20px;
	color: white;
}

.empty-state h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
}