/* ==========================================================================
   DAILY EARN PAGE STYLES - MILLIONCOINZ
   ========================================================================== */

.de-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 15px 60px;
	color: #e2e8f0;
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	box-sizing: border-box;
}

.de-container * {
	box-sizing: border-box;
}

/* --- Hero Section --- */
.de-hero {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 30px;
	background: linear-gradient(135deg, rgba(13, 21, 39, 0.95) 0%, rgba(17, 28, 51, 0.95) 100%);
	border: 1px solid rgba(0, 255, 102, 0.15);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
	position: relative;
	overflow: hidden;
}

.de-hero-text {
	flex: 1;
	max-width: 700px;
}

.de-hero-title {
	font-size: 44px;
	font-weight: 900;
	line-height: 1.15;
	margin: 0 0 12px;
	color: #ffffff;
	letter-spacing: -1px;
}

.de-hero-title span {
	color: #00ff66;
	text-shadow: 0 0 20px rgba(0, 255, 102, 0.4);
}

.de-hero-subtitle {
	font-size: 20px;
	font-weight: 700;
	color: #94a3b8;
	margin-bottom: 18px;
}

.de-hero-desc {
	font-size: 15px;
	line-height: 1.6;
	color: #cbd5e1;
	margin-bottom: 25px;
	white-space: pre-line;
}

.de-alert-box {
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(0, 255, 102, 0.08);
	border: 1px solid rgba(0, 255, 102, 0.3);
	border-radius: 12px;
	padding: 14px 20px;
	color: #00ff66;
	font-size: 14px;
	font-weight: 600;
}

.de-alert-box svg {
	width: 22px;
	height: 22px;
	fill: #00ff66;
	flex-shrink: 0;
}

.de-hero-graphic {
	width: 300px;
	flex-shrink: 0;
	text-align: center;
}

.de-hero-graphic img {
	max-width: 100%;
	height: auto;
	filter: drop-shadow(0 0 25px rgba(0, 255, 102, 0.35));
	animation: floatHero 4s ease-in-out infinite;
}

@keyframes floatHero {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

/* --- Countdown Banner --- */
.de-countdown-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background: rgba(13, 21, 39, 0.9);
	border: 1px solid rgba(0, 255, 102, 0.2);
	border-radius: 16px;
	padding: 20px 30px;
	margin-bottom: 35px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.de-countdown-label {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 17px;
	font-weight: 700;
	color: #ffffff;
}

.de-countdown-label svg {
	width: 26px;
	height: 26px;
	stroke: #00ff66;
	fill: none;
	stroke-width: 2;
	flex-shrink: 0;
}

.de-timer-boxes {
	display: flex;
	gap: 15px;
}

.de-timer-unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 60px;
}

.de-timer-val {
	background: #090e1a;
	border: 1px solid rgba(0, 255, 102, 0.3);
	border-radius: 10px;
	font-size: 24px;
	font-weight: 800;
	color: #ffffff;
	padding: 8px 14px;
	min-width: 55px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.de-timer-lbl {
	font-size: 11px;
	font-weight: 700;
	color: #64748b;
	text-transform: uppercase;
	margin-top: 6px;
	letter-spacing: 1px;
}

/* --- Two Column Main Layout --- */
.de-main-grid {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 30px;
	margin-bottom: 40px;
}

/* --- Left Column: Active Challenge --- */
.de-card {
	background: #0d1527;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	padding: 30px;
	margin-bottom: 25px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.de-section-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 800;
	color: #00ff66;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 20px;
}

/* Hand Photo with NEON GREEN GLOW OUTLINE */
.de-challenge-main {
	display: flex;
	gap: 25px;
	margin-bottom: 25px;
}

.de-hand-wrapper {
	width: 250px;
	height: 190px;
	flex-shrink: 0;
	border-radius: 16px;
	border: 2px solid #00ff66;
	box-shadow: 0 0 20px rgba(0, 255, 102, 0.6), inset 0 0 15px rgba(0, 255, 102, 0.2);
	overflow: hidden;
	position: relative;
	animation: neonPulse 3s infinite ease-in-out;
}

@keyframes neonPulse {
	0%, 100% {
		box-shadow: 0 0 18px rgba(0, 255, 102, 0.6), inset 0 0 12px rgba(0, 255, 102, 0.2);
		border-color: #00ff66;
	}
	50% {
		box-shadow: 0 0 30px rgba(0, 255, 102, 0.9), inset 0 0 20px rgba(0, 255, 102, 0.35);
		border-color: #33ff88;
	}
}

.de-hand-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.de-challenge-info {
	flex: 1;
	min-width: 0;
}

.de-challenge-title {
	font-size: 22px;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 12px;
	line-height: 1.3;
}

.de-reward-tag {
	font-size: 15px;
	font-weight: 700;
	color: #94a3b8;
	margin-bottom: 12px;
}

.de-reward-tag strong {
	color: #00ff66;
	font-size: 18px;
}

.de-challenge-desc {
	font-size: 14px;
	line-height: 1.6;
	color: #94a3b8;
	white-space: pre-line;
}

/* Requirements */
.de-requirements-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.de-requirements-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	color: #cbd5e1;
	line-height: 1.5;
}

.de-requirements-list li svg {
	width: 20px;
	height: 20px;
	fill: #00ff66;
	flex-shrink: 0;
	margin-top: 1px;
}

/* Claim Steps Flow */
.de-steps-flow {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 15px;
	margin: 25px 0 30px;
}

.de-step-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.de-step-icon-box {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #090e1a;
	border: 2px solid #00ff66;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	box-shadow: 0 0 15px rgba(0, 255, 102, 0.3);
}

.de-step-icon-box svg {
	width: 22px;
	height: 22px;
	stroke: #00ff66;
	fill: none;
	stroke-width: 2;
}

.de-step-title {
	font-size: 11px;
	font-weight: 800;
	color: #00ff66;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.de-step-text {
	font-size: 12px;
	color: #94a3b8;
	line-height: 1.4;
	word-break: break-word;
}

.de-step-text a {
	color: #00ff66;
	text-decoration: underline;
	word-break: break-all;
}

/* Reward Highlight Box */
.de-reward-banner {
	display: flex;
	align-items: center;
	gap: 18px;
	background: rgba(0, 255, 102, 0.06);
	border: 1px solid rgba(0, 255, 102, 0.25);
	border-radius: 14px;
	padding: 18px 22px;
}

.de-reward-icon {
	font-size: 30px;
	flex-shrink: 0;
}

.de-reward-text {
	font-size: 14px;
	color: #cbd5e1;
	line-height: 1.5;
}

.de-reward-text strong {
	color: #00ff66;
}

/* --- Right Column: More Challenges --- */
.de-sidebar-card {
	background: #0d1527;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	padding: 25px 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
	display: flex;
	flex-direction: column;
}

.de-sidebar-title {
	font-size: 17px;
	font-weight: 800;
	color: #00ff66;
	margin: 0 0 6px;
}

.de-sidebar-subtitle {
	font-size: 13px;
	color: #94a3b8;
	margin-bottom: 20px;
}

.de-platforms-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 25px;
}

.de-platform-item {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #080d19;
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	padding: 12px 16px;
	font-size: 14px;
	font-weight: 600;
	color: #e2e8f0;
	transition: all 0.3s ease;
}

.de-platform-item:hover {
	border-color: rgba(0, 255, 102, 0.3);
	transform: translateX(4px);
}

.de-platform-icon {
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.de-sidebar-footer-text {
	font-size: 13px;
	color: #94a3b8;
	text-align: center;
	margin-bottom: 20px;
}

.de-trophy-img {
	width: 100%;
	max-width: 200px;
	margin: 0 auto;
	display: block;
	filter: drop-shadow(0 0 20px rgba(0, 255, 102, 0.3));
}

/* --- Bottom Section: Rules --- */
.de-rules-section {
	margin-bottom: 35px;
}

.de-rules-title {
	font-size: 18px;
	font-weight: 800;
	color: #00ff66;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}

.de-rules-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 15px;
}

.de-rule-card {
	background: #0d1527;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	padding: 20px 15px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.de-rule-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(0, 255, 102, 0.1);
	border: 1px solid rgba(0, 255, 102, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.de-rule-icon svg {
	width: 22px;
	height: 22px;
	stroke: #00ff66;
	fill: none;
	stroke-width: 2;
}

.de-rule-text {
	font-size: 12px;
	color: #94a3b8;
	line-height: 1.4;
}

/* --- Bottom CTA Banner (FIXED BUTTON OVERLAP) --- */
.de-cta-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	background: linear-gradient(135deg, #0d1527 0%, #111c33 100%);
	border: 1px solid rgba(0, 255, 102, 0.3);
	border-radius: 16px;
	padding: 25px 35px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.de-cta-content {
	display: flex;
	align-items: center;
	gap: 20px;
	flex: 1;
	min-width: 0;
}

.de-cta-thumb-icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #00ff66;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 20px rgba(0, 255, 102, 0.5);
	flex-shrink: 0;
}

.de-cta-thumb-icon svg {
	width: 26px;
	height: 26px;
	fill: #090e1a;
}

.de-cta-h3 {
	font-size: 19px;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 4px;
}

.de-cta-p {
	font-size: 14px;
	color: #94a3b8;
	margin: 0;
	line-height: 1.4;
}

.de-cta-btn {
	background: #00ff66;
	color: #090e1a;
	font-size: 14px;
	font-weight: 800;
	padding: 14px 24px;
	border-radius: 10px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.3s ease;
	box-shadow: 0 0 20px rgba(0, 255, 102, 0.4);
	white-space: nowrap;
	flex-shrink: 0;
}

.de-cta-btn:hover {
	background: #33ff88;
	transform: translateY(-2px);
	box-shadow: 0 0 30px rgba(0, 255, 102, 0.7);
	color: #090e1a;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (MOBILE & TABLET ADAPTATION)
   ========================================================================== */

@media (max-width: 1024px) {
	.de-main-grid {
		grid-template-columns: 1fr;
	}

	.de-rules-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 850px) {
	.de-cta-banner {
		flex-direction: column;
		text-align: center;
		padding: 25px 20px;
		gap: 20px;
	}

	.de-cta-content {
		flex-direction: column;
		text-align: center;
	}

	.de-cta-btn {
		width: 100%;
		max-width: 320px;
	}
}

@media (max-width: 768px) {
	.de-hero {
		flex-direction: column;
		text-align: center;
		padding: 25px 20px;
	}

	.de-hero-text {
		max-width: 100%;
	}

	.de-hero-title {
		font-size: 32px;
	}

	.de-hero-subtitle {
		font-size: 16px;
	}

	.de-hero-desc {
		font-size: 14px;
	}

	.de-hero-graphic {
		width: 220px;
		margin: 0 auto;
	}

	.de-countdown-bar {
		flex-direction: column;
		gap: 15px;
		text-align: center;
		padding: 20px;
	}

	.de-timer-boxes {
		gap: 10px;
	}

	.de-timer-unit {
		min-width: 50px;
	}

	.de-timer-val {
		font-size: 20px;
		padding: 6px 10px;
		min-width: 45px;
	}

	.de-challenge-main {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.de-hand-wrapper {
		width: 100%;
		max-width: 340px;
		height: 210px;
	}

	.de-steps-flow {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.de-reward-banner {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.de-container {
		padding: 12px 10px 40px;
	}

	.de-card {
		padding: 20px 15px;
	}

	.de-hero-title {
		font-size: 28px;
	}

	.de-rules-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.de-rule-card {
		padding: 14px 10px;
	}

	.de-steps-flow {
		grid-template-columns: 1fr;
	}

	.de-alert-box {
		flex-direction: column;
		text-align: center;
	}
}
