/* ========================================
   Global Styles
   ======================================== */

body {
	background: #000000;
	min-height: 100vh;
	position: relative;
	overflow-x: hidden;
}

/* ========================================
   Navigation Bar
   ======================================== */

.navbar {
	background: rgba(0, 0, 0, 0.8) !important;
	border-bottom: 1px solid #1a1a1a;
	backdrop-filter: blur(10px);
	padding: 1rem 0;
}

.navbar-brand {
	color: #fff !important;
	font-weight: 600;
	font-size: 1.25rem;
}

.nav-link {
	color: #888 !important;
	font-size: 0.9rem;
	transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
	color: #fff !important;
}

.navbar .btn-subscribe {
	background: #fff;
	color: #000;
	border: none;
	padding: 8px 16px;
	font-size: 0.9rem;
	font-weight: 500;
	border-radius: 6px;
	margin-left: 1rem;
	transition: all 0.2s;
}

.navbar .btn-subscribe:hover {
	background: #e6e6e6;
}

/* ========================================
   Hero Block
   ======================================== */

.hero-block {
	padding: 150px 0 100px;
	text-align: center;
	border-bottom: 1px solid #1a1a1a;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
}

.hero-title {
	font-size: 4rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 1.5rem;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.hero-subtitle {
	font-size: 1.25rem;
	color: #888;
	line-height: 1.6;
}

/* ========================================
   Announcement Banner
   ======================================== */

.announcement-banner {
	background: linear-gradient(
		90deg,
		rgba(59, 130, 246, 0.1) 0%,
		rgba(147, 51, 234, 0.1) 100%
	);
	border-top: 1px solid rgba(59, 130, 246, 0.2);
	border-bottom: 1px solid rgba(147, 51, 234, 0.2);
	padding: 16px 0;
}

.announcement-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.announcement-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #3b82f6 0%, #9333ea 100%);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.announcement-icon i {
	font-size: 1.25rem;
	color: #fff;
}

.announcement-text {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.announcement-badge {
	background: linear-gradient(135deg, #3b82f6 0%, #9333ea 100%);
	color: #fff;
	padding: 4px 10px;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.announcement-text strong {
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
}

.announcement-description {
	color: #888;
	font-size: 0.95rem;
}

.btn-announcement {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: #fff;
	color: #000;
	border-radius: 6px;
	font-size: 0.9rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-announcement:hover {
	background: #e6e6e6;
	color: #000;
	gap: 12px;
}

.btn-announcement i {
	font-size: 0.85rem;
	transition: transform 0.2s;
}

@media (max-width: 768px) {
	.announcement-content {
		flex-direction: column;
		text-align: center;
		gap: 12px;
	}

	.announcement-text {
		flex-direction: column;
		gap: 8px;
	}

	.announcement-description {
		display: block;
	}
}

/* ========================================
   Pricing Block
   ======================================== */

.pricing-block {
	padding: 100px 0;
	border-bottom: 1px solid #1a1a1a;
}

.pricing-card {
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 12px;
	padding: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
	position: relative;
}

.pricing-card:hover {
	transform: translateY(-4px);
	border-color: #333;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.pricing-card-featured {
	border-color: #333;
	background: linear-gradient(180deg, #0f0f0f 0%, #0a0a0a 100%);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card-featured:hover {
	border-color: #444;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.popular-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	color: #000;
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.pricing-card-header {
	padding: 32px 32px 24px;
	border-bottom: 1px solid #1a1a1a;
}

.plan-icon-wrapper {
	width: 48px;
	height: 48px;
	background: #1a1a1a;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.plan-icon-wrapper i {
	font-size: 1.5rem;
	color: #fff;
}

.plan-name {
	font-size: 1.5rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.5rem;
}

.plan-description {
	font-size: 0.95rem;
	color: #888;
	margin: 0;
}

.pricing-card-price {
	padding: 24px 32px;
	border-bottom: 1px solid #1a1a1a;
}

.plan-price {
	font-size: 3rem;
	font-weight: 700;
	color: #fff;
	line-height: 1;
}

.plan-price span {
	font-size: 1rem;
	color: #888;
	font-weight: 400;
}

.pricing-card-features {
	padding: 24px 32px;
	flex-grow: 1;
}

.feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.feature-list li {
	padding: 10px 0;
	color: #ccc;
	display: flex;
	align-items: center;
	font-size: 0.9rem;
}

.feature-list li i {
	color: #888;
	margin-right: 12px;
	font-size: 1rem;
	flex-shrink: 0;
}

.pricing-card-footer {
	padding: 24px 32px 32px;
}

/* ========================================
   Buttons
   ======================================== */

.btn-subscribe {
	width: 100%;
	padding: 12px 24px;
	font-weight: 500;
	font-size: 0.95rem;
	border-radius: 6px;
	transition: all 0.2s;
	border: 1px solid transparent;
}

.btn-primary {
	background: #fff;
	color: #000;
	border-color: #fff;
}

.btn-primary:hover {
	background: #e6e6e6;
	border-color: #e6e6e6;
	color: #000;
}

.btn-outline {
	background: transparent;
	color: #fff;
	border-color: #333;
}

.btn-outline:hover {
	background: #1a1a1a;
	border-color: #444;
	color: #fff;
}

.btn-large {
	display: inline-block;
	width: auto;
	padding: 16px 32px;
	font-size: 1rem;
	background: #fff;
	color: #000;
	border: none;
	font-weight: 500;
	border-radius: 6px;
	transition: all 0.2s;
	text-decoration: none;
}

.btn-large:hover {
	background: #e6e6e6;
	color: #000;
}

.btn-text {
	color: #fff;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.2s;
}

.btn-text:hover {
	color: #ccc;
}

.btn-text i {
	font-size: 0.8rem;
}

/* ========================================
   Features Block
   ======================================== */

.features-block {
	padding: 100px 0;
	border-bottom: 1px solid #1a1a1a;
}

.section-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 80px;
}

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.section-header p {
	font-size: 1.1rem;
	color: #888;
}

.feature-item {
	text-align: center;
	padding: 2rem;
}

.feature-icon {
	width: 64px;
	height: 64px;
	background: #1a1a1a;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.feature-icon i {
	font-size: 2rem;
	color: #fff;
}

.feature-item h4 {
	font-size: 1.25rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.75rem;
}

.feature-item p {
	font-size: 0.95rem;
	color: #888;
	line-height: 1.6;
}

/* ========================================
   Products Overview (Features Page)
   ======================================== */

.comparison-block {
	padding: 100px 0;
	border-bottom: 1px solid #1a1a1a;
}

.product-overview-card {
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 12px;
	padding: 40px;
	height: 100%;
	transition: all 0.3s;
	text-align: center;
}

.product-overview-card:hover {
	border-color: #333;
	transform: translateY(-4px);
}

.product-icon {
	width: 64px;
	height: 64px;
	background: #1a1a1a;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.product-icon i {
	font-size: 2rem;
	color: #fff;
}

.product-overview-card h3 {
	font-size: 1.75rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.5rem;
}

.product-price {
	font-size: 1.1rem;
	color: #888;
	margin-bottom: 1rem;
}

.product-description {
	font-size: 0.95rem;
	color: #888;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

/* ========================================
   Feature Details (Features Page)
   ======================================== */

.features-detail-block {
	padding: 100px 0;
	border-bottom: 1px solid #1a1a1a;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 60px;
}

.feature-card {
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 12px;
	padding: 32px;
	transition: all 0.3s;
}

.feature-card:hover {
	border-color: #333;
	transform: translateY(-4px);
}

.feature-card-icon {
	width: 48px;
	height: 48px;
	background: #1a1a1a;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.feature-card-icon i {
	font-size: 1.5rem;
	color: #fff;
}

.feature-card h4 {
	font-size: 1.25rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.75rem;
}

.feature-card p {
	font-size: 0.95rem;
	color: #888;
	line-height: 1.6;
	margin: 0;
}

/* ========================================
   Plan Specific Blocks (Features Page)
   ======================================== */

.plan-block {
	padding: 100px 0;
	border-bottom: 1px solid #1a1a1a;
}

.plan-content {
	max-width: 900px;
	margin: 0 auto;
}

.plan-badge {
	display: inline-block;
	background: #1a1a1a;
	color: #fff;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 1rem;
}

.plan-block h2 {
	font-size: 3rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.plan-block .lead {
	font-size: 1.25rem;
	color: #888;
	margin-bottom: 3rem;
	line-height: 1.6;
}

.feature-highlight-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.feature-highlight {
	padding: 1.5rem;
}

.feature-highlight-icon {
	font-size: 2rem;
	color: #fff;
	margin-bottom: 1rem;
}

.feature-highlight h5 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.5rem;
}

.feature-highlight p {
	font-size: 0.9rem;
	color: #888;
	margin: 0;
	line-height: 1.5;
}

/* ========================================
   CTA Block
   ======================================== */

.cta-block {
	padding: 100px 0;
}

.cta-content {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.cta-content h2 {
	font-size: 3rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.cta-content p {
	font-size: 1.1rem;
	color: #888;
	margin-bottom: 2rem;
}

/* ========================================
   Contact Methods Block
   ======================================== */

.contact-methods-block {
	padding: 100px 0;
	border-bottom: 1px solid #1a1a1a;
}

.contact-card {
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 12px;
	padding: 40px;
	height: 100%;
	transition: all 0.3s ease;
	text-align: center;
}

.contact-card:hover {
	transform: translateY(-4px);
	border-color: #333;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.contact-card-featured {
	border-color: #333;
	background: linear-gradient(180deg, #0f0f0f 0%, #0a0a0a 100%);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-card-featured:hover {
	border-color: #444;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.contact-icon {
	width: 64px;
	height: 64px;
	background: #1a1a1a;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.contact-icon i {
	font-size: 2rem;
	color: #fff;
}

.contact-card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 1rem;
}

.contact-description {
	font-size: 0.95rem;
	color: #888;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.contact-link {
	color: #fff;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.2s;
}

.contact-link:hover {
	color: #ccc;
	gap: 0.75rem;
}

.contact-link i {
	font-size: 0.9rem;
}

/* ========================================
   Contact Form Block
   ======================================== */

.contact-form-block {
	padding: 100px 0;
	border-bottom: 1px solid #1a1a1a;
}

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

.contact-form {
	margin-top: 3rem;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	color: #fff;
	font-size: 0.9rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.form-control {
	width: 100%;
	padding: 12px 16px;
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 6px;
	color: #fff !important;
	font-size: 0.95rem;
	transition: all 0.2s;
	-webkit-text-fill-color: #fff !important;
}

.form-control:focus {
	outline: none;
	border-color: #333;
	background: #0f0f0f;
}

/* Ensure input text is always visible, even with browser autocomplete */
.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus,
.form-control:-webkit-autofill:active {
	-webkit-text-fill-color: #fff !important;
	-webkit-box-shadow: 0 0 0 1000px #0a0a0a inset !important;
	transition: background-color 5000s ease-in-out 0s;
}

.form-control::placeholder {
	color: #555;
}

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

/* File Input Button Styling */
.form-control::file-selector-button,
.form-control::-webkit-file-upload-button {
	background-color: #333;
	color: #fff;
	border: 1px solid #444;
	border-radius: 4px;
	padding: 6px 12px;
	margin-right: 10px;
	cursor: pointer;
	transition: all 0.2s;
}

.form-control::file-selector-button:hover,
.form-control::-webkit-file-upload-button:hover {
	background-color: #444;
	border-color: #555;
	color: #fff;
}

.btn-submit {
	width: auto;
	padding: 14px 32px;
	margin-top: 1rem;
}

/* ========================================
   FAQ Block
   ======================================== */

.faq-block {
	padding: 100px 0;
	border-bottom: 1px solid #1a1a1a;
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.faq-item {
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 12px;
	padding: 32px;
	transition: all 0.3s;
}

.faq-item:hover {
	border-color: #333;
	transform: translateY(-2px);
}

.faq-item h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 1rem;
}

.faq-item p {
	font-size: 0.95rem;
	color: #888;
	line-height: 1.6;
	margin: 0;
}

/* ========================================
   Authentication Pages
   ======================================== */

.auth-block {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 150px 0 100px;
}

.auth-wrapper {
	max-width: 1000px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 4rem;
	align-items: start;
}

.auth-card {
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 12px;
	padding: 48px;
}

.auth-header {
	text-align: center;
	margin-bottom: 2rem;
}

.auth-icon {
	width: 64px;
	height: 64px;
	background: #1a1a1a;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.auth-icon i {
	font-size: 2rem;
	color: #fff;
}

.auth-header h1 {
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.5rem;
}

.auth-header p {
	font-size: 0.95rem;
	color: #888;
	margin: 0;
}

.auth-form {
	margin: 2rem 0;
}

.auth-form .form-group {
	margin-bottom: 1.5rem;
}

.form-text {
	display: block;
	margin-top: 0.5rem;
	font-size: 0.85rem;
	color: #666;
}

.code-input {
	text-align: center;
	font-size: 1.5rem;
	letter-spacing: 0.5rem;
	font-weight: 600;
	font-family: "Courier New", monospace;
}

/* Segmented one-digit-per-cell login code entry */
.otp-group {
	display: flex;
	gap: 6px;
	margin-bottom: 0.5rem;
}

.otp-cell {
	flex: 1 1 0;
	min-width: 0;
	height: 56px;
	padding: 0;
	background: #0f0f0f;
	border: 2px solid #1a1a1a;
	border-radius: 8px;
	text-align: center;
	font-size: 1.4rem;
	font-weight: 700;
	color: #fff;
	font-family: "Courier New", monospace;
	transition: all 0.2s;
	outline: none;
}

.otp-cell::placeholder {
	color: #333;
}

.otp-cell:focus {
	border-color: #4ade80;
	background: #1a1a1a;
	box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.12);
}

.otp-cell.filled {
	border-color: #3a3a3a;
}

.btn-auth {
	width: 100%;
	padding: 14px 24px;
	font-size: 1rem;
	margin-top: 0.5rem;
}

.auth-footer {
	text-align: center;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid #1a1a1a;
}

.auth-footer p {
	margin: 0.5rem 0;
	color: #888;
	font-size: 0.9rem;
}

.resend-form {
	margin: 0.5rem 0;
	color: #888;
	font-size: 0.9rem;
}

.resend-btn {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	font-size: 0.9rem;
}

.auth-link {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s;
}

.auth-link:hover {
	color: #ccc;
}

.auth-info {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.info-item {
	display: flex;
	gap: 1rem;
	align-items: start;
}

.info-item > i {
	font-size: 1.5rem;
	color: #fff;
	background: #1a1a1a;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	flex-shrink: 0;
}

.info-item h4 {
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.25rem;
}

.info-item p {
	font-size: 0.9rem;
	color: #888;
	margin: 0;
	line-height: 1.5;
}

.alert-custom {
	background: #1a1a1a;
	border: 1px solid #333;
	color: #fff;
	border-radius: 8px;
	padding: 12px 16px;
	margin-bottom: 1.5rem;
}

.alert-success {
	border-color: #2ea043;
	background: rgba(46, 160, 67, 0.1);
}

.alert-error,
.alert-danger {
	border-color: #da3633;
	background: rgba(218, 54, 51, 0.1);
	color: #f85149;
}

.alert-info {
	border-color: #1f6feb;
	background: rgba(31, 111, 235, 0.1);
}

.alert-warning {
	border-color: #d29922;
	background: rgba(210, 153, 34, 0.1);
	color: #e3b341;
}

.alert-custom a {
	color: inherit;
	text-decoration: underline;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 992px) {
	.hero-title {
		font-size: 3rem;
	}

	.section-header h2,
	.plan-block h2,
	.cta-content h2 {
		font-size: 2rem;
	}
}

@media (max-width: 768px) {
	.hero-block {
		padding: 120px 0 80px;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.pricing-block,
	.features-block,
	.comparison-block,
	.features-detail-block,
	.plan-block,
	.contact-methods-block,
	.contact-form-block,
	.faq-block,
	.purchase-block,
	.features-reminder-block,
	.cta-block {
		padding: 60px 0;
	}

	.plan-price {
		font-size: 2.5rem;
	}

	.pricing-card-featured {
		margin-top: 20px;
	}

	.navbar .btn-subscribe {
		width: 100%;
		margin-left: 0;
		margin-top: 10px;
	}

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

	/* Auth pages responsive */
	.auth-block {
		padding: 100px 0 60px;
	}

	.auth-wrapper {
		grid-template-columns: minmax(0, 1fr);
		gap: 2rem;
	}

	.auth-card {
		padding: 32px 24px;
	}

	/* Purchase page responsive */
	.purchase-form-card {
		padding: 24px;
	}

	.order-summary-card {
		position: static;
		margin-top: 24px;
	}

	.period-selection {
		grid-template-columns: 1fr;
	}
}

/* ========================================
   Purchase Page Styles
   ======================================== */

.purchase-form-card {
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 12px;
	padding: 40px;
}

.purchase-section-title {
	font-size: 1.75rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 2rem;
}

.form-section {
	margin-bottom: 2.5rem;
}

.form-label {
	display: block;
	color: #fff;
	font-size: 0.95rem;
	font-weight: 500;
	margin-bottom: 1rem;
}

.form-help {
	font-size: 0.85rem;
	color: #888;
	margin-top: 0.5rem;
}

/* Product Selection */
.product-selection {
	display: grid;
	gap: 1rem;
}

.product-option {
	position: relative;
	cursor: pointer;
}

.product-option input[type="radio"] {
	position: absolute;
	opacity: 0;
}

.product-option-content {
	background: #0f0f0f;
	border: 2px solid #1a1a1a;
	border-radius: 8px;
	padding: 16px 20px;
	transition: all 0.2s;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.product-option input[type="radio"]:checked + .product-option-content {
	border-color: #fff;
	background: #1a1a1a;
}

.product-option-content:hover {
	border-color: #333;
}

.product-option-header {
	display: flex;
	align-items: center;
	gap: 12px;
}

.product-option-header i {
	font-size: 1.25rem;
	color: #fff;
}

.product-option-name {
	font-size: 1rem;
	font-weight: 500;
	color: #fff;
}

.product-option-price {
	font-size: 1rem;
	font-weight: 600;
	color: #888;
}

/* Period Selection */
.period-selection {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 1rem;
}

.period-option {
	position: relative;
	cursor: pointer;
}

.period-option input[type="radio"] {
	position: absolute;
	opacity: 0;
}

.period-option-content {
	background: #0f0f0f;
	border: 2px solid #1a1a1a;
	border-radius: 8px;
	padding: 20px 16px;
	text-align: center;
	transition: all 0.2s;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.period-option input[type="radio"]:checked + .period-option-content {
	border-color: #fff;
	background: #1a1a1a;
}

.period-option-content:hover {
	border-color: #333;
}

.period-duration {
	font-size: 1.1rem;
	font-weight: 600;
	color: #fff;
	display: block;
}

.period-badge {
	font-size: 0.8rem;
	color: #888;
	display: inline-block;
	padding: 4px 8px;
	background: #0a0a0a;
	border-radius: 4px;
}

.period-badge-popular {
	background: #fff;
	color: #000;
}

/* Payment Methods */
.payment-methods {
	display: grid;
	gap: 1rem;
}

.payment-option {
	position: relative;
	cursor: pointer;
}

.payment-option input[type="radio"] {
	position: absolute;
	opacity: 0;
}

.payment-option-content {
	background: #0f0f0f;
	border: 2px solid #1a1a1a;
	border-radius: 8px;
	padding: 20px;
	transition: all 0.2s;
	display: flex;
	align-items: center;
	gap: 16px;
}

.payment-option input[type="radio"]:checked + .payment-option-content {
	border-color: #fff;
	background: #1a1a1a;
}

.payment-option-content:hover {
	border-color: #333;
}

.payment-icon {
	width: 48px;
	height: 48px;
	background: #1a1a1a;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.payment-icon i {
	font-size: 1.5rem;
	color: #fff;
}

.payment-info {
	flex-grow: 1;
}

.payment-name {
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 2px;
}

.payment-description {
	font-size: 0.85rem;
	color: #888;
}

/* Order Summary */
.order-summary-card {
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 12px;
	padding: 32px;
	position: sticky;
	top: 100px;
}

.order-summary-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 1.5rem;
}

.order-summary-content {
	margin-bottom: 2rem;
}

.summary-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
}

.summary-label {
	font-size: 0.95rem;
	color: #888;
}

.summary-value {
	font-size: 0.95rem;
	font-weight: 500;
	color: #fff;
}

.summary-value-discount {
	color: #4ade80;
}

.summary-divider {
	height: 1px;
	background: #1a1a1a;
	margin: 16px 0;
}

.summary-row-total {
	padding-top: 16px;
}

.summary-row-total .summary-label {
	font-size: 1.1rem;
	font-weight: 600;
	color: #fff;
}

.summary-value-total {
	font-size: 1.75rem;
	font-weight: 700;
	color: #fff;
}

.summary-note {
	display: flex;
	gap: 8px;
	padding: 16px;
	background: #0f0f0f;
	border-radius: 8px;
	margin-top: 16px;
}

.summary-note i {
	color: #888;
	font-size: 1rem;
	flex-shrink: 0;
	margin-top: 2px;
}

.summary-note span {
	font-size: 0.85rem;
	color: #888;
	line-height: 1.5;
}

.btn-purchase {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 1rem;
	padding: 14px 24px;
}

.btn-purchase i {
	font-size: 0.9rem;
}

.security-badges {
	display: flex;
	justify-content: center;
	gap: 24px;
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid #1a1a1a;
}

.security-badge {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.85rem;
	color: #888;
}

.security-badge i {
	font-size: 1rem;
}

/* Features Reminder */
.features-reminder-block {
	padding: 80px 0 100px;
}

.feature-reminder {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 16px;
	color: #ccc;
	font-size: 0.95rem;
}

.feature-reminder i {
	color: #4ade80;
	font-size: 1.25rem;
}

/* Dashboard-specific styles */
.dashboard-header {
	padding: 100px 0 60px;
	border-bottom: 1px solid #1a1a1a;
}

.dashboard-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.5rem;
}

.dashboard-subtitle {
	font-size: 1.1rem;
	color: #888;
}

.dashboard-content {
	padding: 60px 0;
}

.subscription-card-dashboard {
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 12px;
	padding: 32px;
	margin-bottom: 24px;
	transition: all 0.3s;
}

.subscription-card-dashboard:hover {
	border-color: #333;
}

.subscription-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 24px;
	flex-wrap: wrap;
	gap: 1rem;
}

.subscription-info {
	flex: 1;
}

.subscription-name {
	font-size: 1.5rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.subscription-icon {
	width: 40px;
	height: 40px;
	background: #1a1a1a;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.subscription-icon i {
	font-size: 1.2rem;
	color: #fff;
}

.subscription-price {
	font-size: 1.25rem;
	color: #888;
	font-weight: 500;
}

.status-badge {
	display: inline-block;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.status-active {
	background: rgba(35, 134, 54, 0.2);
	color: #238636;
}

.status-cancelled {
	background: rgba(248, 81, 73, 0.2);
	color: #f85149;
}

.status-trial {
	background: rgba(88, 166, 255, 0.2);
	color: #58a6ff;
}

.subscription-details {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
	margin-bottom: 24px;
	padding: 24px;
	background: #000;
	border-radius: 8px;
}

.detail-item {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.detail-label {
	font-size: 0.85rem;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.detail-value {
	font-size: 1rem;
	color: #fff;
	font-weight: 500;
}

.subscription-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.btn-action {
	padding: 10px 20px;
	border-radius: 6px;
	font-size: 0.9rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.btn-action-primary {
	background: #fff;
	color: #000;
	border: 1px solid #fff;
}

.btn-action-primary:hover {
	background: #e6e6e6;
	color: #000;
}

.btn-action-secondary {
	background: transparent;
	color: #fff;
	border: 1px solid #333;
}

.btn-action-secondary:hover {
	background: #1a1a1a;
	color: #fff;
}

.btn-action-danger {
	background: transparent;
	color: #f85149;
	border: 1px solid #f85149;
}

.btn-action-danger:hover {
	background: rgba(248, 81, 73, 0.1);
}

.empty-state {
	text-align: center;
	padding: 80px 20px;
}

.empty-state-icon {
	font-size: 4rem;
	color: #333;
	margin-bottom: 1.5rem;
}

.empty-state h3 {
	font-size: 1.5rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 1rem;
}

.empty-state p {
	font-size: 1rem;
	color: #888;
	margin-bottom: 2rem;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin-bottom: 60px;
}

.stat-card {
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 12px;
	padding: 24px;
}

.stat-label {
	font-size: 0.9rem;
	color: #888;
	margin-bottom: 0.5rem;
}

.stat-value {
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
}

.stat-change {
	font-size: 0.85rem;
	color: #238636;
	margin-top: 0.5rem;
}

.redeem-block {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 150px 0 100px;
}

.redeem-wrapper {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.redeem-card {
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 12px;
	padding: 48px;
}

.redeem-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.redeem-icon {
	width: 80px;
	height: 80px;
	background: #1a1a1a;
	border-radius: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.redeem-icon i {
	font-size: 2.5rem;
	color: #fff;
}

.redeem-header h1 {
	font-size: 2.25rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.5rem;
}

.redeem-header p {
	font-size: 1rem;
	color: #888;
	margin: 0;
}

.redeem-form {
	margin-bottom: 2rem;
}

.input-with-icon {
	position: relative;
}

.input-with-icon > i {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: #888;
	font-size: 1.1rem;
	pointer-events: none;
}

.input-with-icon .form-control {
	padding-left: 48px;
	padding-right: 48px;
}

.toggle-password {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: none;
	color: #888;
	cursor: pointer;
	padding: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s;
}

.toggle-password:hover {
	color: #fff;
}

.toggle-password i {
	font-size: 1.1rem;
}

.btn-redeem {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 1rem;
	padding: 14px 24px;
	margin-top: 1.5rem;
}

.redeem-footer {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #1a1a1a;
}

.redeem-footer p {
	margin: 0.5rem 0;
	color: #888;
	font-size: 0.9rem;
}

/* Redeem Info Sidebar */
.redeem-info {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.redeem-info h2 {
	font-size: 1.75rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 1rem;
}

.info-steps {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.info-step {
	display: flex;
	gap: 1.5rem;
	align-items: start;
}

.step-number {
	width: 40px;
	height: 40px;
	background: #1a1a1a;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	font-weight: 700;
	color: #fff;
	flex-shrink: 0;
}

.step-content h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.5rem;
}

.step-content p {
	font-size: 0.95rem;
	color: #888;
	line-height: 1.6;
	margin: 0;
}

.info-box {
	display: flex;
	gap: 1rem;
	padding: 1.5rem;
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 8px;
}

.info-box > i {
	font-size: 1.5rem;
	color: #fff;
	flex-shrink: 0;
}

.info-box h4 {
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.5rem;
}

.info-box p {
	font-size: 0.9rem;
	color: #888;
	line-height: 1.5;
	margin: 0;
}

/* Success Modal */
.success-icon {
	width: 80px;
	height: 80px;
	background: rgba(74, 222, 128, 0.1);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.success-icon i {
	font-size: 3rem;
	color: #4ade80;
}

.success-message {
	font-size: 1rem;
	color: #888;
	margin-bottom: 2rem;
}

.success-details {
	background: #0f0f0f;
	border: 1px solid #1a1a1a;
	border-radius: 8px;
	padding: 1.5rem;
	margin-bottom: 2rem;
}

.success-detail-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 0;
}

.success-detail-item:not(:last-child) {
	border-bottom: 1px solid #1a1a1a;
}

.success-detail-item strong {
	color: #888;
	font-size: 0.9rem;
	font-weight: 500;
}

.success-detail-item span {
	color: #fff;
	font-size: 0.95rem;
	font-weight: 500;
}

/* Redeem Page Responsive */
@media (max-width: 992px) {
	.redeem-wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.redeem-info {
		order: -1;
	}
}

@media (max-width: 768px) {
	.redeem-block {
		padding: 100px 0 60px;
	}

	.redeem-card {
		padding: 32px 24px;
	}

	.redeem-header h1 {
		font-size: 1.75rem;
	}

	.redeem-icon {
		width: 64px;
		height: 64px;
	}

	.redeem-icon i {
		font-size: 2rem;
	}
}

/* ========================================
   Reseller Page
   ======================================== */

.reseller-block {
	padding: 80px 0 100px;
}

.reseller-form-card {
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 12px;
	padding: 40px;
}

.reseller-header {
	display: flex;
	justify-content: space-between;
	align-items: start;
	margin-bottom: 2.5rem;
	gap: 1.5rem;
}

.reseller-title {
	font-size: 1.75rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.5rem;
}

.reseller-description {
	font-size: 0.95rem;
	color: #888;
	margin: 0;
}

.reseller-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: rgba(74, 222, 128, 0.1);
	border: 1px solid rgba(74, 222, 128, 0.2);
	border-radius: 8px;
	font-size: 0.85rem;
	font-weight: 500;
	color: #4ade80;
	white-space: nowrap;
}

.reseller-badge i {
	font-size: 1rem;
}

.form-select {
	width: 100%;
	padding: 12px 16px;
	background: #0f0f0f;
	border: 1px solid #1a1a1a;
	border-radius: 6px;
	color: #fff;
	font-size: 0.95rem;
	transition: all 0.2s;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 40px;
}

.form-select:focus {
	outline: none;
	border-color: #333;
	background-color: #1a1a1a;
}

.form-label {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	font-size: 0.95rem;
	font-weight: 500;
	margin-bottom: 1rem;
}

.form-label i {
	font-size: 1rem;
	color: #888;
}

.form-help {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.85rem;
	color: #888;
	margin-top: 0.5rem;
}

.form-help i {
	font-size: 0.9rem;
}

/* Volume Discount Info */
.volume-discount-info {
	background: #0f0f0f;
	border: 1px solid #1a1a1a;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 2rem;
}

.volume-discount-header {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.95rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 1rem;
}

.volume-discount-header i {
	font-size: 1.1rem;
	color: #fbbf24;
}

.volume-discount-tiers {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 12px;
}

.discount-tier {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 12px;
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 6px;
}

.discount-quantity {
	font-size: 0.9rem;
	font-weight: 600;
	color: #fff;
}

.discount-value {
	font-size: 0.85rem;
	color: #4ade80;
}

/* Reseller Payment Methods */
.reseller-payment-methods {
	display: grid;
	gap: 1rem;
}

.reseller-payment-option {
	position: relative;
	cursor: pointer;
}

.reseller-payment-option input[type="radio"] {
	position: absolute;
	opacity: 0;
}

.reseller-payment-content {
	background: #0f0f0f;
	border: 2px solid #1a1a1a;
	border-radius: 8px;
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 16px;
	transition: all 0.2s;
}

.reseller-payment-option
	input[type="radio"]:checked
	+ .reseller-payment-content {
	border-color: #fff;
	background: #1a1a1a;
}

.reseller-payment-content:hover {
	border-color: #333;
}

.reseller-payment-icon {
	width: 48px;
	height: 48px;
	background: #1a1a1a;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.reseller-payment-icon i {
	font-size: 1.5rem;
	color: #fff;
}

.reseller-payment-details {
	flex-grow: 1;
}

.reseller-payment-name {
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 2px;
}

.reseller-payment-description {
	font-size: 0.85rem;
	color: #888;
}

.reseller-payment-badge {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	background: #0a0a0a;
	border-radius: 6px;
	font-size: 0.8rem;
	color: #888;
}

.reseller-payment-badge i {
	font-size: 0.9rem;
}

/* Reseller Summary Card */
.reseller-summary-card {
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 12px;
	padding: 32px;
	position: sticky;
	top: 100px;
}

.reseller-summary-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 1.5rem;
}

.reseller-summary-content {
	margin-bottom: 2rem;
}

.summary-detail-box {
	background: #0f0f0f;
	border: 1px solid #1a1a1a;
	border-radius: 8px;
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.summary-detail-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.summary-detail-label {
	font-size: 0.9rem;
	color: #888;
}

.summary-detail-value {
	font-size: 0.9rem;
	font-weight: 500;
	color: #fff;
}

.summary-price-breakdown {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 16px 0;
}

.summary-price-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.summary-price-label {
	font-size: 0.9rem;
	color: #888;
}

.summary-price-value {
	font-size: 0.9rem;
	font-weight: 500;
	color: #fff;
}

.summary-price-discount .summary-price-value {
	color: #4ade80;
}

.summary-price-volume .summary-price-value {
	color: #fbbf24;
}

.summary-total-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 16px;
}

.summary-total-label {
	font-size: 1.1rem;
	font-weight: 600;
	color: #fff;
}

.summary-total-value-wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 4px;
}

.summary-total-value {
	font-size: 1.75rem;
	font-weight: 700;
	color: #fff;
}

.summary-total-per-code {
	font-size: 0.85rem;
	color: #888;
}

.summary-profit-estimate {
	background: rgba(74, 222, 128, 0.1);
	border: 1px solid rgba(74, 222, 128, 0.2);
	border-radius: 8px;
	padding: 16px;
	margin-top: 16px;
}

.profit-estimate-header {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9rem;
	font-weight: 600;
	color: #4ade80;
	margin-bottom: 8px;
}

.profit-estimate-header i {
	font-size: 1rem;
}

.profit-estimate-value {
	font-size: 1.5rem;
	font-weight: 700;
	color: #4ade80;
	margin-bottom: 4px;
}

.profit-estimate-description {
	font-size: 0.85rem;
	color: #888;
}

.btn-reseller-purchase {
	width: 100%;
	padding: 14px 24px;
	background: #fff;
	color: #000;
	border: none;
	border-radius: 6px;
	font-size: 1rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	cursor: pointer;
	transition: all 0.2s;
}

.btn-reseller-purchase:hover {
	background: #e6e6e6;
}

.btn-reseller-purchase i {
	font-size: 1.1rem;
}

.reseller-guarantee {
	display: flex;
	justify-content: center;
	gap: 24px;
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid #1a1a1a;
}

.guarantee-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.85rem;
	color: #888;
}

.guarantee-item i {
	font-size: 1rem;
	color: #4ade80;
}

/* Reseller Info Card */
.reseller-info-card {
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 12px;
	padding: 32px;
	margin-top: 1.5rem;
}

.reseller-info-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 1.5rem;
}

.reseller-info-steps {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.info-step {
	display: flex;
	gap: 1rem;
}

.info-step-number {
	width: 32px;
	height: 32px;
	background: #1a1a1a;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
	font-weight: 600;
	color: #fff;
	flex-shrink: 0;
}

.info-step-content {
	flex-grow: 1;
}

.info-step-title {
	font-size: 0.95rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 4px;
}

.info-step-description {
	font-size: 0.85rem;
	color: #888;
}

/* Reseller Benefits */
.reseller-benefits-block {
	padding: 80px 0 100px;
	border-top: 1px solid #1a1a1a;
}

.benefit-card {
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 12px;
	padding: 32px;
	text-align: center;
	height: 100%;
	transition: all 0.3s;
}

.benefit-card:hover {
	border-color: #333;
	transform: translateY(-4px);
}

.benefit-icon {
	width: 64px;
	height: 64px;
	background: #1a1a1a;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.benefit-icon i {
	font-size: 2rem;
	color: #fff;
}

.benefit-card h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.75rem;
}

.benefit-card p {
	font-size: 0.9rem;
	color: #888;
	line-height: 1.6;
	margin: 0;
}

/* ========================================
   Download Page
   ======================================== */

.download-content {
	padding: 80px 0 100px;
}

.download-card {
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 12px;
	padding: 40px;
}

/* Download Header */
.download-header {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}

.download-icon {
	width: 72px;
	height: 72px;
	background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.download-icon i {
	font-size: 2.5rem;
	color: #fff;
}

.download-info {
	flex-grow: 1;
}

.download-title {
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.75rem;
}

.download-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.download-meta > span {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.9rem;
	color: #888;
}

.download-meta i {
	font-size: 1rem;
}

/* Platform Selection */
.download-platforms {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1rem;
	margin-bottom: 2.5rem;
}

.platform-option {
	position: relative;
}

.platform-option input[type="radio"] {
	position: absolute;
	opacity: 0;
}

.platform-label {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 24px 16px;
	background: #0f0f0f;
	border: 2px solid #1a1a1a;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s;
	text-align: center;
}

.platform-option input[type="radio"]:checked + .platform-label,
.platform-option-active .platform-label {
	border-color: #fff;
	background: #1a1a1a;
}

.platform-label:hover {
	border-color: #333;
}

.platform-label i {
	font-size: 2rem;
	color: #fff;
}

.platform-name {
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
}

.platform-version {
	font-size: 0.85rem;
	color: #888;
}

/* Section Styling */
.section-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1.25rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 1rem;
}

.section-title i {
	font-size: 1.25rem;
	color: #888;
}

/* What's New Section */
.whats-new-section {
	margin-bottom: 2.5rem;
}

.whats-new-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.whats-new-list li {
	display: flex;
	align-items: start;
	gap: 12px;
	padding: 12px;
	background: #0f0f0f;
	border: 1px solid #1a1a1a;
	border-radius: 6px;
}

.whats-new-list i {
	color: #4ade80;
	font-size: 1.1rem;
	flex-shrink: 0;
	margin-top: 2px;
}

.whats-new-list span {
	font-size: 0.95rem;
	color: #ccc;
	line-height: 1.5;
}

/* System Requirements */
.requirements-section {
	margin-bottom: 2.5rem;
}

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

.requirement-item {
	padding: 16px;
	background: #0f0f0f;
	border: 1px solid #1a1a1a;
	border-radius: 6px;
}

.requirement-label {
	font-size: 0.85rem;
	font-weight: 600;
	color: #888;
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.requirement-value {
	font-size: 0.95rem;
	color: #fff;
	line-height: 1.4;
}

/* Terms of Service Section */
.tos-section {
	margin-bottom: 2rem;
}

.tos-content {
	max-height: 400px;
	overflow-y: auto;
	padding: 24px;
	background: #0f0f0f;
	border: 1px solid #1a1a1a;
	border-radius: 8px;
	font-size: 0.9rem;
	line-height: 1.6;
	color: #ccc;
}

.tos-content::-webkit-scrollbar {
	width: 8px;
}

.tos-content::-webkit-scrollbar-track {
	background: #0a0a0a;
	border-radius: 4px;
}

.tos-content::-webkit-scrollbar-thumb {
	background: #333;
	border-radius: 4px;
}

.tos-content::-webkit-scrollbar-thumb:hover {
	background: #444;
}

.tos-content h4 {
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
}

.tos-content h4:first-of-type {
	margin-top: 0;
}

.tos-content p {
	margin-bottom: 1rem;
}

.tos-content strong {
	color: #fff;
}

/* ToS Agreement */
.tos-agreement {
	margin-bottom: 2rem;
}

.agreement-checkbox {
	display: flex;
	align-items: start;
	gap: 12px;
	padding: 16px;
	background: #0f0f0f;
	border: 1px solid #1a1a1a;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s;
}

.agreement-checkbox:hover {
	border-color: #333;
}

.agreement-checkbox input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin-top: 2px;
	cursor: pointer;
	flex-shrink: 0;
	accent-color: #fff;
}

.agreement-text {
	font-size: 0.95rem;
	color: #ccc;
	line-height: 1.5;
}

.agreement-link {
	color: #fff;
	text-decoration: underline;
	transition: color 0.2s;
}

.agreement-link:hover {
	color: #ccc;
}

/* Download Button */
.btn-download {
	width: 100%;
	padding: 16px 32px;
	background: #333;
	color: #666;
	border: 1px solid #1a1a1a;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	cursor: not-allowed;
	transition: all 0.3s;
}

.btn-download i {
	font-size: 1.25rem;
}

.btn-download:disabled {
	background: #1a1a1a;
	color: #666;
	border-color: #1a1a1a;
}

.btn-download-enabled {
	background: #fff;
	color: #000;
	border-color: #fff;
	cursor: pointer;
}

.btn-download-enabled:hover {
	background: #e6e6e6;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.download-note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 1rem;
	font-size: 0.85rem;
	color: #888;
}

.download-note i {
	font-size: 1rem;
}

/* Additional Downloads */
.additional-downloads {
	margin-top: 2rem;
}

.additional-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 1rem;
}

.additional-links {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
}

.additional-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 8px;
	color: #ccc;
	text-decoration: none;
	transition: all 0.2s;
}

.additional-link:hover {
	border-color: #333;
	background: #0f0f0f;
	color: #fff;
	transform: translateY(-2px);
}

.additional-link i {
	font-size: 1.5rem;
	color: #888;
}

.additional-link span {
	font-size: 0.95rem;
	font-weight: 500;
}

/* Navbar Dropdown Styling */
.navbar .dropdown-menu {
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 8px;
	padding: 8px;
	margin-top: 8px;
	min-width: 200px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.navbar .dropdown-item {
	color: #ccc;
	padding: 10px 16px;
	border-radius: 6px;
	transition: all 0.2s;
	display: flex;
	align-items: center;
	gap: 10px;
}

.navbar .dropdown-item i {
	font-size: 1.1rem;
	opacity: 0.7;
}

.navbar .dropdown-item:hover {
	background: #1a1a1a;
	color: #fff;
}

.navbar .dropdown-item:hover i {
	opacity: 1;
}

.navbar .dropdown-item:active {
	background: #2a2a2a;
	color: #fff;
}

.navbar .dropdown-divider {
	border-color: #1a1a1a;
	margin: 8px 0;
}

/* Dropdown toggle arrow */
.navbar .dropdown-toggle::after {
	margin-left: 0.5em;
	vertical-align: 0.15em;
}

/* Mobile dropdown styling */
@media (max-width: 991px) {
	.navbar .dropdown-menu {
		background: transparent;
		border: none;
		box-shadow: none;
		padding-left: 1rem;
		margin-top: 0;
	}

	.navbar .dropdown-item {
		padding: 8px 16px;
	}
}

/* ========================================
   Bitcoin Success Page
   ======================================== */

.success-content {
	min-height: 100vh;
	padding: 120px 0 80px;
	display: flex;
	align-items: center;
}

.success-card {
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 12px;
	padding: 60px 40px 40px;
	text-align: center;
}

/* Success Icon */
.success-icon-wrapper {
	position: relative;
	display: inline-block;
	margin-bottom: 2rem;
}

.success-icon {
	width: 120px;
	height: 120px;
	background: linear-gradient(
		135deg,
		rgba(74, 222, 128, 0.2) 0%,
		rgba(74, 222, 128, 0.05) 100%
	);
	border: 3px solid #4ade80;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.success-icon i {
	font-size: 4rem;
	color: #4ade80;
}

.success-animation {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 140px;
	height: 140px;
	border: 2px solid #4ade80;
	border-radius: 50%;
	opacity: 0;
	animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
	0% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.8);
	}
	50% {
		opacity: 0.3;
	}
	100% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(1.2);
	}
}

/* Success Text */
.success-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.75rem;
}

.success-subtitle {
	font-size: 1.1rem;
	color: #888;
	margin-bottom: 3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Transaction Details */
.transaction-details {
	background: #0f0f0f;
	border: 1px solid #1a1a1a;
	border-radius: 8px;
	padding: 32px;
	margin-bottom: 2.5rem;
	text-align: left;
}

.transaction-status {
	text-align: center;
	margin-bottom: 2rem;
}

.status-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	border-radius: 8px;
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.status-badge i {
	font-size: 1.1rem;
}

.status-badge-processing {
	background: rgba(251, 191, 36, 0.1);
	color: #fbbf24;
	border: 1px solid rgba(251, 191, 36, 0.2);
}

.status-badge-complete {
	background: rgba(74, 222, 128, 0.1);
	color: #4ade80;
	border: 1px solid rgba(74, 222, 128, 0.2);
}

.status-text {
	font-size: 0.9rem;
	color: #888;
	margin: 0;
}

.transaction-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.transaction-info-item {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.info-label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.85rem;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.info-label i {
	font-size: 1rem;
}

.info-value {
	font-size: 1.1rem;
	font-weight: 600;
	color: #fff;
}

/* Transaction ID Box */
.transaction-id-box {
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 8px;
	padding: 20px;
}

.transaction-id-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.85rem;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 1rem;
}

.transaction-id-label i {
	font-size: 1.1rem;
}

.transaction-id-content {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 1rem;
}

.transaction-id {
	flex-grow: 1;
	font-family: "Courier New", monospace;
	font-size: 0.85rem;
	color: #fff;
	background: #0f0f0f;
	padding: 12px;
	border-radius: 6px;
	word-break: break-all;
}

.btn-copy-tx {
	background: #1a1a1a;
	border: 1px solid #333;
	color: #888;
	padding: 12px 16px;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.2s;
	flex-shrink: 0;
}

.btn-copy-tx:hover {
	background: #2a2a2a;
	color: #fff;
}

.btn-copy-tx i {
	font-size: 1.1rem;
}

.blockchain-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.9rem;
	color: #fff;
	text-decoration: none;
	transition: color 0.2s;
}

.blockchain-link:hover {
	color: #4ade80;
}

.blockchain-link i {
	font-size: 0.9rem;
}

/* Confirmation Progress */
.confirmation-progress {
	background: #0f0f0f;
	border: 1px solid #1a1a1a;
	border-radius: 8px;
	padding: 24px;
	margin-bottom: 2.5rem;
	text-align: left;
}

.progress-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.progress-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	color: #fff;
	margin: 0;
}

.progress-title i {
	font-size: 1.1rem;
	color: #888;
}

.progress-count {
	font-size: 0.9rem;
	font-weight: 600;
	color: #fbbf24;
}

.progress-bar-container {
	width: 100%;
	height: 8px;
	background: #1a1a1a;
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 1rem;
}

.progress-bar-fill {
	height: 100%;
	background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
	border-radius: 4px;
	transition: width 1s ease;
}

.progress-note {
	font-size: 0.85rem;
	color: #888;
	margin: 0;
}

/* What's Next Section */
.whats-next-section {
	background: #0f0f0f;
	border: 1px solid #1a1a1a;
	border-radius: 8px;
	padding: 32px;
	margin-bottom: 2.5rem;
	text-align: left;
}

.section-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1.25rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 1.5rem;
}

.section-title i {
	font-size: 1.25rem;
	color: #888;
}

/* Timeline */
.timeline {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.timeline-item {
	display: flex;
	gap: 1rem;
	position: relative;
}

.timeline-item:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 19px;
	top: 40px;
	bottom: -24px;
	width: 2px;
	background: #1a1a1a;
}

.timeline-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

.timeline-icon i {
	font-size: 1.1rem;
}

.timeline-icon-complete {
	background: rgba(74, 222, 128, 0.1);
	border: 2px solid #4ade80;
	color: #4ade80;
}

.timeline-icon-processing {
	background: rgba(251, 191, 36, 0.1);
	border: 2px solid #fbbf24;
	color: #fbbf24;
	animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.4);
	}
	50% {
		box-shadow: 0 0 0 8px rgba(251, 191, 36, 0);
	}
}

.timeline-icon-pending {
	background: #1a1a1a;
	border: 2px solid #333;
	color: #666;
}

.timeline-content {
	flex-grow: 1;
}

.timeline-title {
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.25rem;
}

.timeline-description {
	font-size: 0.9rem;
	color: #888;
	margin: 0;
	line-height: 1.5;
}

/* Important Info */
.important-info {
	display: flex;
	gap: 1rem;
	background: rgba(59, 130, 246, 0.05);
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 2.5rem;
	text-align: left;
}

.info-icon {
	width: 40px;
	height: 40px;
	background: rgba(59, 130, 246, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.info-icon i {
	font-size: 1.5rem;
	color: #3b82f6;
}

.info-content {
	flex-grow: 1;
}

.info-title {
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.75rem;
}

.info-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.info-list li {
	font-size: 0.9rem;
	color: #ccc;
	line-height: 1.5;
	padding-left: 20px;
	position: relative;
}

.info-list li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: #3b82f6;
	font-weight: bold;
}

.info-list strong {
	color: #fff;
}

/* Action Buttons */
.action-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.btn-action {
	padding: 14px 32px;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s;
}

.btn-action i {
	font-size: 1.1rem;
}

.btn-action-primary {
	background: #fff;
	color: #000;
	border: 2px solid #fff;
}

.btn-action-primary:hover {
	background: #e6e6e6;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.btn-action-secondary {
	background: transparent;
	color: #fff;
	border: 2px solid #333;
}

.btn-action-secondary:hover {
	background: #1a1a1a;
	border-color: #444;
}

/* Support Link */
.support-link {
	text-align: center;
	font-size: 0.9rem;
	color: #888;
}

.support-link a {
	color: #fff;
	text-decoration: underline;
	transition: color 0.2s;
}

.support-link a:hover {
	color: #ccc;
}

/* Additional Info Card */
.additional-info-card {
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 12px;
	padding: 32px;
	margin-top: 2rem;
}

.additional-info-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 1rem;
}

.additional-info-text {
	font-size: 0.95rem;
	color: #ccc;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.blockchain-facts {
	display: flex;
	gap: 2rem;
	justify-content: center;
}

.blockchain-fact {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9rem;
	color: #888;
}

.blockchain-fact i {
	font-size: 1.25rem;
	color: #fbbf24;
}

/* Responsive */
@media (max-width: 768px) {
	.success-card {
		padding: 40px 24px 24px;
	}

	.success-title {
		font-size: 2rem;
	}

	.success-icon {
		width: 100px;
		height: 100px;
	}

	.success-icon i {
		font-size: 3rem;
	}

	.transaction-info-grid {
		grid-template-columns: 1fr;
	}

	.action-buttons {
		flex-direction: column;
	}

	.btn-action {
		width: 100%;
		justify-content: center;
	}

	.blockchain-facts {
		flex-direction: column;
		gap: 1rem;
	}

	.important-info {
		flex-direction: column;
	}
}

/* ========================================
   Footer
   ======================================== */

.footer {
	background: #0a0a0a;
	border-top: 1px solid #1a1a1a;
	padding: 60px 0 0;
	margin-top: auto;
}

.footer-content {
	width: 100%;
}

/* Footer Top */
.footer-top {
	padding-bottom: 40px;
}

/* Footer Brand */
.footer-brand {
	max-width: 300px;
}

.footer-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 1.25rem;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	margin-bottom: 1rem;
	transition: opacity 0.2s;
}

.footer-logo:hover {
	opacity: 0.8;
}

.footer-logo i {
	font-size: 1.5rem;
}

.footer-description {
	font-size: 0.9rem;
	color: #888;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

/* Social Links */
.footer-social {
	display: flex;
	gap: 12px;
}

.social-link {
	width: 40px;
	height: 40px;
	background: #1a1a1a;
	border: 1px solid #2a2a2a;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #888;
	text-decoration: none;
	transition: all 0.2s;
}

.social-link:hover {
	background: #2a2a2a;
	border-color: #333;
	color: #fff;
}

.social-link i {
	font-size: 1.1rem;
}

/* Footer Links */
.footer-links {
	display: flex;
	flex-direction: column;
}

.footer-title {
	font-size: 0.9rem;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 1rem;
}

.footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-menu li a {
	font-size: 0.9rem;
	color: #888;
	text-decoration: none;
	transition: color 0.2s;
	display: inline-block;
}

.footer-menu li a:hover {
	color: #fff;
}

/* Footer Bottom */
.footer-bottom {
	border-top: 1px solid #1a1a1a;
	padding: 24px 0;
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-copyright {
	font-size: 0.9rem;
	color: #888;
	margin: 0;
}

.footer-bottom-links {
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer-bottom-links a {
	font-size: 0.9rem;
	color: #888;
	text-decoration: none;
	transition: color 0.2s;
}

.footer-bottom-links a:hover {
	color: #fff;
}

.footer-bottom-links .separator {
	color: #333;
	font-size: 0.8rem;
}

/* Minimal Footer Version */
.footer-minimal {
	padding: 32px 0;
}

.footer-minimal-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-minimal-links {
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer-minimal-links a {
	font-size: 0.9rem;
	color: #888;
	text-decoration: none;
	transition: color 0.2s;
}

.footer-minimal-links a:hover {
	color: #fff;
}

.footer-minimal-links .separator {
	color: #333;
	font-size: 0.8rem;
}

/* Responsive Footer */
@media (max-width: 991px) {
	.footer {
		padding: 40px 0 0;
	}

	.footer-top {
		padding-bottom: 32px;
	}

	.footer-brand {
		max-width: 100%;
		margin-bottom: 2rem;
	}

	.footer-links {
		margin-bottom: 2rem;
	}
}

@media (max-width: 768px) {
	.footer-bottom-content {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}

	.footer-bottom-links {
		flex-wrap: wrap;
		justify-content: center;
	}

	.footer-minimal-content {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}

	.footer-minimal-links {
		flex-wrap: wrap;
		justify-content: center;
	}
}

/* Ensure body takes full height */
body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

/* Main content should grow */
main,
.main-content {
	flex: 1 0 auto;
}

/* ========================================
   Legal Terms Page
   ======================================== */

.legal-content {
	padding: 60px 0 80px;
}

/* Sidebar */
.legal-sidebar {
	position: sticky;
	top: 100px;
}

.legal-nav {
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 8px;
	padding: 24px;
	margin-bottom: 1.5rem;
}

.legal-nav-title {
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.legal-nav-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.legal-nav-link {
	display: block;
	padding: 10px 12px;
	color: #888;
	text-decoration: none;
	border-radius: 6px;
	transition: all 0.2s;
	font-size: 0.95rem;
}

.legal-nav-link:hover {
	background: #0f0f0f;
	color: #fff;
}

.legal-nav-link.active {
	background: #1a1a1a;
	color: #fff;
	font-weight: 500;
}

/* Info Box */
.legal-info-box {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 8px;
	padding: 16px;
}

.legal-info-box i {
	font-size: 1.5rem;
	color: #888;
}

.legal-info-label {
	font-size: 0.85rem;
	color: #888;
	margin-bottom: 2px;
}

.legal-info-value {
	font-size: 0.95rem;
	font-weight: 600;
	color: #fff;
}

/* Main Content */
.legal-main {
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 12px;
	padding: 40px;
}

.legal-section {
	margin-bottom: 4rem;
}

.legal-section:last-child {
	margin-bottom: 0;
}

.legal-section-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid #1a1a1a;
}

.legal-section-header i {
	font-size: 2rem;
	color: #fff;
}

.legal-section-header h2 {
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	margin: 0;
}

.legal-intro {
	background: #0f0f0f;
	border-left: 3px solid #fff;
	padding: 20px;
	margin-bottom: 2rem;
	border-radius: 4px;
}

.legal-intro p {
	color: #ccc;
	margin-bottom: 0.75rem;
}

.legal-intro p:last-child {
	margin-bottom: 0;
}

.legal-intro strong {
	color: #fff;
}

.legal-article {
	margin-bottom: 2.5rem;
}

.legal-article:last-child {
	margin-bottom: 0;
}

.legal-article h3 {
	font-size: 1.25rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 1rem;
}

.legal-article p {
	font-size: 0.95rem;
	color: #ccc;
	line-height: 1.7;
	margin-bottom: 1rem;
}

.legal-article p:last-child {
	margin-bottom: 0;
}

.legal-article ul,
.legal-article ol {
	margin-bottom: 1rem;
	padding-left: 1.5rem;
}

.legal-article li {
	font-size: 0.95rem;
	color: #ccc;
	line-height: 1.7;
	margin-bottom: 0.5rem;
}

.legal-article strong {
	color: #fff;
	font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
	.legal-sidebar {
		position: static;
		margin-bottom: 2rem;
	}

	.legal-nav {
		margin-bottom: 1rem;
	}

	.legal-main {
		padding: 24px;
	}

	.legal-section-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

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

@media (max-width: 768px) {
	.legal-content {
		padding: 40px 0 60px;
	}

	.legal-main {
		padding: 20px;
	}

	.legal-article h3 {
		font-size: 1.1rem;
	}

	.legal-article p,
	.legal-article li {
		font-size: 0.9rem;
	}
}

/* ========================================
   Verification Code Page
   ======================================== */

.verification-content {
	min-height: 100vh;
	padding: 120px 0 80px;
	display: flex;
	align-items: center;
}

.verification-card {
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 12px;
	padding: 50px 40px 40px;
	text-align: center;
}

/* Icon */
.verification-icon-wrapper {
	display: inline-block;
	margin-bottom: 2rem;
}

.verification-icon {
	width: 100px;
	height: 100px;
	background: linear-gradient(
		135deg,
		rgba(74, 222, 128, 0.2) 0%,
		rgba(74, 222, 128, 0.05) 100%
	);
	border: 3px solid #4ade80;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.verification-icon i {
	font-size: 3.5rem;
	color: #4ade80;
}

/* Title */
.verification-title {
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.75rem;
}

.verification-subtitle {
	font-size: 1rem;
	color: #888;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.verification-subtitle strong {
	color: #fff;
	font-weight: 600;
}

/* Expiry Notice */
.expiry-notice {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #0f0f0f;
	border: 1px solid #1a1a1a;
	border-radius: 20px;
	padding: 8px 16px;
	margin-bottom: 2.5rem;
	font-size: 0.9rem;
	color: #888;
}

.expiry-notice i {
	font-size: 1rem;
	color: #888;
}

.expiry-notice strong {
	color: #fff;
	font-weight: 600;
	font-family: "Courier New", monospace;
}

/* Code Input Container */
.code-input-container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-bottom: 2rem;
}

.code-input {
	width: 50px;
	height: 60px;
	background: #0f0f0f;
	border: 2px solid #1a1a1a;
	border-radius: 8px;
	text-align: center;
	font-size: 1.75rem;
	font-weight: 700;
	color: #fff;
	font-family: "Courier New", monospace;
	transition: all 0.2s;
	outline: none;
}

.code-input:focus {
	border-color: #fff;
	background: #1a1a1a;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.code-input:valid:not(:placeholder-shown) {
	border-color: #4ade80;
}

.code-input.success {
	border-color: #4ade80;
	background: rgba(74, 222, 128, 0.1);
}

/* Shake animation for errors */
@keyframes shake {
	0%,
	100% {
		transform: translateX(0);
	}
	25% {
		transform: translateX(-5px);
	}
	75% {
		transform: translateX(5px);
	}
}

.code-input.shake {
	animation: shake 0.3s;
	border-color: #ef4444;
}

/* Code Separator */
.code-separator {
	width: 20px;
	height: 2px;
	background: #333;
	border-radius: 1px;
}

/* Messages */
.error-message,
.success-message {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 20px;
	border-radius: 8px;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
	font-weight: 500;
}

.error-message {
	background: rgba(239, 68, 68, 0.1);
	border: 1px solid rgba(239, 68, 68, 0.3);
	color: #ef4444;
}

.error-message i {
	font-size: 1.25rem;
}

.success-message {
	background: rgba(74, 222, 128, 0.1);
	border: 1px solid rgba(74, 222, 128, 0.3);
	color: #4ade80;
}

.success-message i {
	font-size: 1.25rem;
}

/* Verify Button */
.btn-verify {
	width: 100%;
	padding: 16px;
	background: #fff;
	color: #000;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	margin-bottom: 2rem;
}

.btn-verify:hover:not(:disabled) {
	background: #e6e6e6;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.btn-verify:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.btn-loader {
	display: none;
	align-items: center;
	gap: 10px;
}

/* Resend Section */
.resend-section {
	margin-bottom: 2rem;
}

.resend-text {
	font-size: 0.95rem;
	color: #888;
	margin-bottom: 1rem;
}

.btn-resend {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: transparent;
	color: #fff;
	border: 2px solid #333;
	border-radius: 8px;
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
}

.btn-resend:hover:not(:disabled) {
	background: #1a1a1a;
	border-color: #444;
}

.btn-resend:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.btn-resend i {
	font-size: 1.1rem;
}

.resend-cooldown {
	font-size: 0.9rem;
	color: #888;
	margin-top: 1rem;
}

.resend-cooldown strong {
	color: #fff;
	font-family: "Courier New", monospace;
}

/* Info Box */
.info-box {
	background: #0f0f0f;
	border: 1px solid #1a1a1a;
	border-radius: 8px;
	padding: 24px;
	text-align: left;
	margin-bottom: 2rem;
}

.info-box-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 1rem;
}

.info-box-title i {
	font-size: 1.1rem;
	color: #888;
}

.info-box-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.info-box-list li {
	font-size: 0.9rem;
	color: #ccc;
	padding-left: 20px;
	position: relative;
	line-height: 1.5;
}

.info-box-list li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: #888;
	font-weight: bold;
}

/* Back to Login */
.back-to-login {
	padding-top: 1rem;
	border-top: 1px solid #1a1a1a;
}

.back-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #888;
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.2s;
}

.back-link:hover {
	color: #fff;
}

.back-link i {
	font-size: 1rem;
}

/* Security Notice */
.security-notice {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 2rem;
	padding: 16px;
	background: rgba(59, 130, 246, 0.05);
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 8px;
}

.security-notice i {
	font-size: 1.5rem;
	color: #3b82f6;
	flex-shrink: 0;
}

.security-notice p {
	font-size: 0.9rem;
	color: #ccc;
	margin: 0;
	line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
	.verification-card {
		padding: 40px 24px 24px;
	}

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

	.verification-icon {
		width: 80px;
		height: 80px;
	}

	.verification-icon i {
		font-size: 2.5rem;
	}

	.code-input-container {
		gap: 6px;
	}

	.code-input {
		width: 42px;
		height: 52px;
		font-size: 1.5rem;
	}

	.code-separator {
		width: 12px;
	}
}

@media (max-width: 480px) {
	.code-input-container {
		gap: 4px;
		flex-wrap: wrap;
	}

	.code-input {
		width: 38px;
		height: 48px;
		font-size: 1.25rem;
	}

	.code-separator {
		width: 100%;
		height: 10px;
		background: transparent;
	}
}

/* ========================================
   Hardware ID Reset Page
   ======================================== */

.hwid-reset-content {
	min-height: 100vh;
	padding: 120px 0 80px;
	display: flex;
	align-items: center;
}

.hwid-reset-card {
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 12px;
	padding: 50px 40px 40px;
}

/* Icon */
.hwid-icon-wrapper {
	text-align: center;
	margin-bottom: 2rem;
}

.hwid-icon {
	display: inline-block;
	width: 100px;
	height: 100px;
	background: linear-gradient(
		135deg,
		rgba(59, 130, 246, 0.2) 0%,
		rgba(59, 130, 246, 0.05) 100%
	);
	border: 3px solid #3b82f6;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hwid-icon i {
	font-size: 3.5rem;
	color: #3b82f6;
}

/* Title */
.hwid-title {
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.75rem;
	text-align: center;
}

.hwid-subtitle {
	font-size: 1rem;
	color: #888;
	margin-bottom: 2.5rem;
	text-align: center;
	line-height: 1.6;
}

/* Info Notice */
.info-notice {
	display: flex;
	gap: 12px;
	background: rgba(59, 130, 246, 0.1);
	border: 1px solid rgba(59, 130, 246, 0.3);
	border-radius: 8px;
	padding: 16px;
	margin-bottom: 2rem;
}

.info-notice i {
	font-size: 1.5rem;
	color: #3b82f6;
	flex-shrink: 0;
	margin-top: 2px;
}

.info-notice strong {
	display: block;
	color: #3b82f6;
	font-size: 1rem;
	margin-bottom: 4px;
}

.info-notice p {
	color: #ccc;
	font-size: 0.9rem;
	margin: 0;
	line-height: 1.5;
}

/* Form */
.form-group {
	margin-bottom: 1.5rem;
}

.form-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.95rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.5rem;
}

.form-label i {
	font-size: 1rem;
	color: #888;
}

.form-input {
	width: 100%;
	padding: 14px 16px;
	background: #0f0f0f;
	border: 2px solid #1a1a1a;
	border-radius: 8px;
	color: #fff;
	font-size: 1rem;
	transition: all 0.2s;
	outline: none;
}

.form-input:focus {
	border-color: #3b82f6;
	background: #1a1a1a;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input::placeholder {
	color: #555;
}

.form-help {
	font-size: 0.85rem;
	color: #666;
	margin-top: 6px;
}

/* reCAPTCHA Container */
.recaptcha-container {
	margin-bottom: 1.5rem;
	display: flex;
	justify-content: center;
}

.recaptcha-container > div {
	transform: scale(0.95);
	transform-origin: 0 0;
}

/* Alert Messages */
.alert-message {
	display: none;
	align-items: center;
	gap: 10px;
	padding: 14px 18px;
	border-radius: 8px;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
	font-weight: 500;
}

.alert-message i {
	font-size: 1.25rem;
	flex-shrink: 0;
}

.alert-error {
	background: rgba(239, 68, 68, 0.1);
	border: 1px solid rgba(239, 68, 68, 0.3);
	color: #ef4444;
}

.alert-success {
	background: rgba(74, 222, 128, 0.1);
	border: 1px solid rgba(74, 222, 128, 0.3);
	color: #4ade80;
}

/* Reset Button */
.btn-reset {
	width: 100%;
	padding: 16px;
	background: #3b82f6;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	margin-bottom: 2rem;
}

.btn-reset:hover:not(:disabled) {
	background: #2563eb;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.btn-reset:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.btn-text {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.btn-text i {
	font-size: 1.1rem;
}

.btn-loader {
	display: none;
	align-items: center;
	gap: 10px;
}

/* Warning Box */
.warning-box {
	display: flex;
	gap: 12px;
	background: rgba(251, 191, 36, 0.1);
	border: 1px solid rgba(251, 191, 36, 0.3);
	border-radius: 8px;
	padding: 16px;
	margin-bottom: 2rem;
}

.warning-icon {
	flex-shrink: 0;
}

.warning-icon i {
	font-size: 1.5rem;
	color: #fbbf24;
}

.warning-content strong {
	display: block;
	color: #fbbf24;
	font-size: 1rem;
	margin-bottom: 8px;
}

.warning-content ul {
	margin: 0;
	padding-left: 20px;
	color: #ccc;
}

.warning-content li {
	font-size: 0.9rem;
	line-height: 1.6;
	margin-bottom: 4px;
}

/* Help Section */
.help-section {
	background: #0f0f0f;
	border: 1px solid #1a1a1a;
	border-radius: 8px;
	padding: 24px;
	margin-bottom: 2rem;
}

.help-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 1.5rem;
}

.help-title i {
	font-size: 1.2rem;
	color: #888;
}

/* FAQ Items */
.faq-item {
	margin-bottom: 1rem;
	border-bottom: 1px solid #1a1a1a;
	padding-bottom: 1rem;
}

.faq-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.faq-question {
	font-size: 0.95rem;
	font-weight: 600;
	color: #fff;
	cursor: pointer;
	padding: 8px 0;
	transition: color 0.2s;
	position: relative;
	padding-right: 20px;
}

.faq-question:hover {
	color: #3b82f6;
}

.faq-question::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.25rem;
	color: #888;
}

.faq-answer {
	display: none;
	font-size: 0.9rem;
	color: #ccc;
	line-height: 1.6;
	padding: 8px 0 0 0;
}

/* Support Link */
.support-link {
	text-align: center;
	padding-top: 1.5rem;
	border-top: 1px solid #1a1a1a;
}

.support-link p {
	font-size: 0.95rem;
	color: #888;
	margin-bottom: 1rem;
}

.link-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: transparent;
	color: #fff;
	border: 2px solid #333;
	border-radius: 8px;
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 600;
	transition: all 0.2s;
}

.link-button:hover {
	background: #1a1a1a;
	border-color: #444;
	transform: translateY(-2px);
}

.link-button i {
	font-size: 1.1rem;
}

/* Security Footer */
.security-footer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 2rem;
	padding: 16px;
	background: rgba(74, 222, 128, 0.05);
	border: 1px solid rgba(74, 222, 128, 0.2);
	border-radius: 8px;
}

.security-footer i {
	font-size: 1.5rem;
	color: #4ade80;
	flex-shrink: 0;
}

.security-footer p {
	font-size: 0.9rem;
	color: #ccc;
	margin: 0;
	line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
	.hwid-reset-card {
		padding: 40px 24px 24px;
	}

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

	.hwid-icon {
		width: 80px;
		height: 80px;
	}

	.hwid-icon i {
		font-size: 2.5rem;
	}

	.recaptcha-container > div {
		transform: scale(0.85);
	}
}

@media (max-width: 480px) {
	.recaptcha-container > div {
		transform: scale(0.75);
	}
}

/* ========================================
   Code Status Checker Page
   ======================================== */

.code-checker-content {
	min-height: 100vh;
	padding: 120px 0 80px;
	display: flex;
	align-items: center;
}

.checker-card {
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 12px;
	padding: 50px 40px 40px;
}

/* Icon */
.checker-icon-wrapper {
	text-align: center;
	margin-bottom: 2rem;
}

.checker-icon {
	display: inline-block;
	width: 100px;
	height: 100px;
	background: linear-gradient(
		135deg,
		rgba(168, 85, 247, 0.2) 0%,
		rgba(168, 85, 247, 0.05) 100%
	);
	border: 3px solid #a855f7;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.checker-icon i {
	font-size: 3.5rem;
	color: #a855f7;
}

/* Title */
.checker-title {
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.75rem;
	text-align: center;
}

.checker-subtitle {
	font-size: 1rem;
	color: #888;
	margin-bottom: 2rem;
	text-align: center;
	line-height: 1.6;
}

/* Reseller Badge */
.reseller-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(168, 85, 247, 0.1);
	border: 1px solid rgba(168, 85, 247, 0.3);
	border-radius: 20px;
	padding: 8px 16px;
	margin: 0 auto 2rem;
	font-size: 0.9rem;
	color: #a855f7;
	font-weight: 600;
	display: block;
	width: fit-content;
}

.reseller-badge i {
	font-size: 1.1rem;
}

/* Code Input */
.code-input {
	font-family: "Courier New", monospace;
	font-size: 1.1rem;
	letter-spacing: 2px;
	text-align: center;
}

/* Check Button */
.btn-check {
	width: 100%;
	padding: 16px;
	background: #a855f7;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	margin-bottom: 2rem;
}

.btn-check:hover:not(:disabled) {
	background: #9333ea;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(168, 85, 247, 0.3);
}

.btn-check:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Results Section */
.results-section {
	background: #0f0f0f;
	border: 1px solid #1a1a1a;
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 2rem;
}

.results-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #1a1a1a;
}

.results-header i {
	font-size: 1.5rem;
	color: #a855f7;
}

.results-header h3 {
	font-size: 1.25rem;
	font-weight: 600;
	color: #fff;
	margin: 0;
}

/* Status Cards */
.status-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px;
	border-radius: 8px;
	margin-bottom: 1.5rem;
}

.status-card .status-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.status-card .status-icon i {
	font-size: 2rem;
}

.status-card .status-info h4 {
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0 0 4px 0;
}

.status-card .status-info p {
	font-size: 0.95rem;
	margin: 0;
	opacity: 0.9;
}

/* Status - Used */
.status-used {
	background: rgba(239, 68, 68, 0.1);
	border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-used .status-icon {
	background: rgba(239, 68, 68, 0.2);
}

.status-used .status-icon i {
	color: #ef4444;
}

.status-used .status-info h4 {
	color: #ef4444;
}

.status-used .status-info p {
	color: #fca5a5;
}

/* Status - Available */
.status-available {
	background: rgba(74, 222, 128, 0.1);
	border: 1px solid rgba(74, 222, 128, 0.3);
}

.status-available .status-icon {
	background: rgba(74, 222, 128, 0.2);
}

.status-available .status-icon i {
	color: #4ade80;
}

.status-available .status-info h4 {
	color: #4ade80;
}

.status-available .status-info p {
	color: #86efac;
}

/* Status - Invalid */
.status-invalid {
	background: rgba(156, 163, 175, 0.1);
	border: 1px solid rgba(156, 163, 175, 0.3);
}

.status-invalid .status-icon {
	background: rgba(156, 163, 175, 0.2);
}

.status-invalid .status-icon i {
	color: #9ca3af;
}

.status-invalid .status-info h4 {
	color: #9ca3af;
}

.status-invalid .status-info p {
	color: #d1d5db;
}

/* Details Grid */
.details-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 16px;
	margin-top: 1rem;
}

.detail-item {
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 8px;
	padding: 16px;
}

.detail-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.85rem;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
}

.detail-label i {
	font-size: 1rem;
}

.detail-value {
	font-size: 1rem;
	color: #fff;
	font-weight: 500;
	word-break: break-word;
}

.code-display {
	font-family: "Courier New", monospace;
	font-size: 1.1rem;
	letter-spacing: 1px;
	color: #a855f7;
}

/* Status Badges */
.status-badge {
	display: inline-flex;
	align-items: center;
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.status-badge-used {
	background: rgba(239, 68, 68, 0.2);
	color: #ef4444;
}

.status-badge-available {
	background: rgba(74, 222, 128, 0.2);
	color: #4ade80;
}

.status-badge-invalid {
	background: rgba(156, 163, 175, 0.2);
	color: #9ca3af;
}

/* Reseller Info */
.reseller-info {
	background: #0f0f0f;
	border: 1px solid #1a1a1a;
	border-radius: 8px;
	padding: 24px;
	margin-bottom: 2rem;
}

.reseller-info-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 1.5rem;
}

.reseller-info-title i {
	font-size: 1.2rem;
	color: #a855f7;
}

.reseller-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.reseller-link {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px;
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.2s;
}

.reseller-link:hover {
	background: #1a1a1a;
	border-color: #2a2a2a;
	transform: translateX(4px);
}

.reseller-link i {
	font-size: 1.75rem;
	color: #a855f7;
	flex-shrink: 0;
}

.reseller-link strong {
	display: block;
	color: #fff;
	font-size: 1rem;
	margin-bottom: 2px;
}

.reseller-link span {
	display: block;
	color: #888;
	font-size: 0.85rem;
}

/* Info Box (from previous pages, adjusted) */
.checker-card .info-box {
	background: #0f0f0f;
	border: 1px solid #1a1a1a;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 2rem;
}

.checker-card .info-box-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 1rem;
}

.checker-card .info-box-title i {
	font-size: 1.1rem;
	color: #888;
}

.checker-card .info-box-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.checker-card .info-box-list li {
	font-size: 0.9rem;
	color: #ccc;
	padding-left: 20px;
	position: relative;
	line-height: 1.5;
}

.checker-card .info-box-list li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: #a855f7;
	font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
	.checker-card {
		padding: 40px 24px 24px;
	}

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

	.checker-icon {
		width: 80px;
		height: 80px;
	}

	.checker-icon i {
		font-size: 2.5rem;
	}

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

	.status-card {
		flex-direction: column;
		text-align: center;
	}

	.reseller-link {
		flex-direction: column;
		text-align: center;
	}
}
