/* Bold Dynamic Design - VidProxy Theme */

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

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	background: #0f0f23;
	color: #e0e0e0;
	line-height: 1.6;
	min-height: 100vh;
}

.page-wrapper {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
	min-height: 100vh;
	padding: 20px;
}

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

/* Header */
.header {
	background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
	border-radius: 16px;
	padding: 25px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	box-shadow: 0 8px 32px rgba(233, 69, 96, 0.3);
	margin-bottom: 30px;
}

.logo h1 {
	font-size: 2.5rem;
	color: white;
	margin-bottom: 5px;
	font-weight: 800;
	letter-spacing: -1px;
}

.logo .tagline {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
	font-weight: 400;
}

.nav {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.nav a {
	color: white;
	text-decoration: none;
	font-weight: 600;
	padding: 10px 20px;
	border-radius: 25px;
	background: rgba(255, 255, 255, 0.15);
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.nav a:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: translateY(-2px);
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, #533483 0%, #7c3aed 100%);
	border-radius: 20px;
	padding: 50px 40px;
	text-align: center;
	margin-bottom: 30px;
	box-shadow: 0 12px 40px rgba(124, 58, 237, 0.4);
}

.hero h2 {
	font-size: 2.5rem;
	color: white;
	margin-bottom: 15px;
	font-weight: 800;
}

.hero-desc {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 35px;
}

/* Proxy Form */
.proxy-form {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.quick-access form {
	display: flex;
	justify-content: center;
}

.dropdown {
	min-width: 300px;
	padding: 15px 20px;
	font-size: 1.05rem;
	border: none;
	border-radius: 12px;
	background: white;
	color: #333;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.dropdown:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.url-input-wrapper form {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
}

.url-input {
	flex: 1;
	min-width: 300px;
	max-width: 500px;
	padding: 16px 24px;
	font-size: 1.05rem;
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.95);
	color: #333;
	font-weight: 500;
	transition: all 0.3s ease;
}

.url-input:focus {
	outline: none;
	border-color: #e94560;
	box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.2);
}

.browse-btn {
	padding: 16px 40px;
	font-size: 1.1rem;
	font-weight: 700;
	border: none;
	border-radius: 12px;
	background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
	color: white;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.browse-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(233, 69, 96, 0.5);
}

/* Ad Section */
.ad-section {
	text-align: center;
	margin: 30px auto;
	max-width: 800px;
}

/* Main Content */
.main-content {
	margin-top: 30px;
}

/* Features Grid */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
	margin-bottom: 40px;
}

.feature-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 30px;
	text-align: center;
	transition: all 0.3s ease;
}

.feature-card:hover {
	background: rgba(255, 255, 255, 0.08);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.feature-icon {
	font-size: 4rem;
	margin-bottom: 15px;
}

.feature-card h3 {
	color: #ff6b6b;
	font-size: 1.5rem;
	margin-bottom: 12px;
	font-weight: 700;
}

.feature-card p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1rem;
}

/* Info Section */
.info-section {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 35px;
	margin-bottom: 40px;
}

.info-section h2 {
	color: #7c3aed;
	font-size: 2rem;
	margin-bottom: 18px;
	font-weight: 700;
}

.info-section p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 25px;
}

/* SSL Badge */
.ssl-badge {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 25px;
	border-radius: 12px;
	margin-top: 25px;
	border: 2px solid;
}

.ssl-badge.ssl-active {
	background: rgba(16, 185, 129, 0.1);
	border-color: #10b981;
}

.ssl-badge.ssl-inactive {
	background: rgba(239, 68, 68, 0.1);
	border-color: #ef4444;
}

.badge-icon {
	font-size: 3rem;
}

.badge-content strong {
	display: block;
	font-size: 1.3rem;
	margin-bottom: 8px;
	color: white;
}

.badge-content p {
	margin: 0;
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.8);
}

.ssl-link {
	color: #ff6b6b;
	font-weight: 600;
	text-decoration: underline;
}

.ssl-link:hover {
	color: #e94560;
}

/* Ad Grid */
.ad-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 25px;
	justify-items: center;
	margin: 40px 0;
}

.ad-unit {
	text-align: center;
}

/* Footer */
.footer {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 30px;
	margin-top: 50px;
	text-align: center;
	color: rgba(255, 255, 255, 0.8);
}

.footer p {
	margin: 8px 0;
	font-size: 0.95rem;
}

.footer a {
	color: #ff6b6b;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.footer a:hover {
	color: #e94560;
	text-decoration: underline;
}

/* Error Messages */
#error {
	background: rgba(239, 68, 68, 0.15);
	border: 2px solid #ef4444;
	color: #fecaca;
	padding: 20px;
	border-radius: 12px;
	margin: 25px 0;
	backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 768px) {
	.page-wrapper {
		padding: 10px;
	}

	.header {
		flex-direction: column;
		text-align: center;
		padding: 20px;
	}

	.logo h1 {
		font-size: 2rem;
	}

	.nav {
		justify-content: center;
		gap: 10px;
	}

	.nav a {
		padding: 8px 16px;
		font-size: 0.9rem;
	}

	.hero {
		padding: 35px 25px;
	}

	.hero h2 {
		font-size: 1.8rem;
	}

	.hero-desc {
		font-size: 1rem;
	}

	.dropdown {
		min-width: 250px;
		width: 100%;
	}

	.url-input-wrapper form {
		flex-direction: column;
	}

	.url-input,
	.browse-btn {
		width: 100%;
		max-width: none;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.info-section {
		padding: 25px;
	}

	.info-section h2 {
		font-size: 1.5rem;
	}

	.ssl-badge {
		flex-direction: column;
		text-align: center;
	}

	.ad-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.logo h1 {
		font-size: 1.6rem;
	}

	.hero h2 {
		font-size: 1.4rem;
	}

	.info-section h2 {
		font-size: 1.3rem;
	}

	.feature-card h3 {
		font-size: 1.2rem;
	}
}
