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

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #f5f5f5;
}

.container {
	max-width: 100%;
	margin: 0 auto;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* Header */
.header {
	background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	color: white;
	padding: 40px 20px;
	text-align: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.domain-name {
	font-size: 3rem;
	font-weight: 700;
	margin: 0;
	word-break: break-all;
}

/* Main Content */
.main-content {
	flex: 1;
	padding: 40px 20px;
}

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

/* Info Section */
.info-section {
	background: white;
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
}

.sale-badge {
	display: inline-block;
	background: #ff6b6b;
	color: white;
	padding: 8px 20px;
	border-radius: 20px;
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 20px;
}

.section-title {
	font-size: 2rem;
	color: #1e3c72;
	margin-bottom: 20px;
	font-weight: 600;
}

.sale-info {
	margin-top: 20px;
}

.info-text {
	font-size: 1.1rem;
	margin-bottom: 15px;
	color: #555;
	line-height: 1.8;
}

.info-text.highlight {
	background: #fff3cd;
	border-left: 4px solid #ffc107;
	padding: 15px;
	border-radius: 4px;
	font-weight: 500;
	color: #856404;
}

.info-text strong {
	color: #1e3c72;
	font-weight: 600;
}

/* Form Section */
.form-section {
	background: white;
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
}

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

.form-title {
	font-size: 1.8rem;
	color: #1e3c72;
	margin-bottom: 10px;
	font-weight: 600;
}

.form-subtitle {
	color: #666;
	margin-bottom: 30px;
	font-size: 1.1rem;
}

.offer-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-label {
	font-weight: 600;
	margin-bottom: 8px;
	color: #333;
	font-size: 0.95rem;
}

.required {
	color: #ff6b6b;
}

.form-input,
.form-textarea {
	padding: 12px 15px;
	border: 2px solid #ddd;
	border-radius: 6px;
	font-size: 1rem;
	transition: all 0.3s ease;
	font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
	outline: none;
	border-color: #2a5298;
	box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.1);
}

.form-input.error,
.form-textarea.error {
	border-color: #ff6b6b;
}

.price-input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.currency-symbol {
	position: absolute;
	left: 15px;
	font-size: 1.2rem;
	font-weight: 600;
	color: #666;
}

.price-input {
	padding-left: 35px;
}

.form-textarea {
	resize: vertical;
	min-height: 120px;
}

.error-message {
	color: #ff6b6b;
	font-size: 0.85rem;
	margin-top: 5px;
	display: none;
}

.error-message.show {
	display: block;
}

.form-actions {
	margin-top: 10px;
}

.btn-submit {
	background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	color: white;
	padding: 15px 40px;
	border: none;
	border-radius: 6px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	max-width: 300px;
}

.btn-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
}

.btn-submit:active {
	transform: translateY(0);
}

.btn-submit:disabled {
	background: #ccc;
	cursor: not-allowed;
	transform: none;
}

.form-message {
	margin-top: 20px;
	padding: 15px;
	border-radius: 6px;
	font-weight: 500;
	display: none;
}

.form-message.show {
	display: block;
}

.form-message.success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.form-message.error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

/* Features Section */
.features-section {
	background: white;
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
}

.features-title {
	font-size: 1.8rem;
	color: #1e3c72;
	margin-bottom: 30px;
	font-weight: 600;
	text-align: center;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.feature-item {
	text-align: center;
	padding: 20px;
}

.feature-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	color: white;
	font-size: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin: 0 auto 15px;
	font-weight: bold;
}

.feature-title {
	font-size: 1.2rem;
	color: #1e3c72;
	margin-bottom: 10px;
	font-weight: 600;
}

.feature-text {
	color: #666;
	line-height: 1.6;
}

/* Footer */
.footer {
	background: #333;
	color: white;
	padding: 20px;
	text-align: center;
	margin-top: auto;
}

.footer-text {
	margin: 0;
}

/* Math Captcha */
.captcha-question {
	font-weight: 700;
	color: #1e3c72;
	font-size: 1.1rem;
	background: #f0f4ff;
	padding: 5px 10px;
	border-radius: 4px;
	display: inline-block;
	margin: 0 5px;
}

.captcha-wrapper {
	display: flex;
	gap: 10px;
	align-items: center;
}

.captcha-input {
	flex: 1;
	max-width: 150px;
}

.btn-refresh-captcha {
	padding: 12px 15px;
	background: #f0f0f0;
	border: 2px solid #ddd;
	border-radius: 6px;
	cursor: pointer;
	font-size: 1.2rem;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.btn-refresh-captcha:hover {
	background: #e0e0e0;
	border-color: #ccc;
	transform: rotate(180deg);
}

.btn-refresh-captcha:active {
	transform: rotate(180deg) scale(0.95);
}

.btn-refresh-captcha:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}

/* Responsive */
@media (max-width: 768px) {
	.domain-name {
		font-size: 2rem;
	}

	.section-title {
		font-size: 1.5rem;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.info-section,
	.form-section,
	.features-section {
		padding: 20px;
	}

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

	.info-text {
		font-size: 1rem;
	}
}

