:root {
	/* Updated Color Scheme */
	--dark-bg: #0a0e23; /* Deep dark blue background */
	--text-white: #ffffff; /* White text for contrast */
	--interactive-blue: #00AEEF; /* Bright blue for interactive elements */
	--logo-blue: linear-gradient(135deg, #00AEEF 0%, #0085FF 100%); /* Gradient for "U" */
	
	/* Secondary Colors */
	--primary: var(--interactive-blue);
	--primary-light: #7ed6ff;
	--secondary: #00a8ff;
	--success: #00b894;
	--warning: #fdcb6e;
	--danger: #ff7675;
	--casino: #e84393;
	--survey: #0984e3;
	--game: #00b894;
	--card-bg: #0a0a0a;
    --card-border: rgba(255,255,255,0.2);
	--app: #6c5ce7;
	--cyan: #00ffff;
    --orange: #ffaa00;
    --blue: #00a2ff;
    --green: #00ffaa;
    --red: #ff5555;
    --gold: #ffd700;
    --silver: #c0c0c0;
    --bronze: #cd7f32;
	--text: var(--text-white);
	--text-light: #b2bec3;
	--light-bg: var(--dark-bg);
	--sidebar-bg: #121a2b; /* Slightly lighter than main bg */
	--sidebar-active: rgba(0, 174, 239, 0.2);
	--card-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	--sidebar-width: 280px;
	--sidebar-collapsed: 80px;
	--header-height: 70px;
	--mobile-nav-height: 60px;
}

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

a {
	text-decoration: none;
}

body {
	font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
	color: var(--text);
	background-color: var(--dark-bg);
	min-height: 100vh;
	padding-bottom: var(--mobile-nav-height);
}

/* App Layout */
.app-container {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

/* Header - Visible on all devices */
.dashboard-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	background: var(--sidebar-bg);
	height: var(--header-height);
	border-bottom: 1px solid rgba(255,255,255,0.1);
	position: sticky;
	top: 0;
	z-index: 100;
	margin-bottom: 10px;
}

/* Mobile Logo - Updated */
.mobile-logo {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	display: flex;
	align-items: center;
	gap: 8px;
}

.mobile-logo-icon {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	background: transparent;
}

.mobile-logo-icon .logo-g {
	color: var(--text-white);
}

.mobile-logo-icon .logo-u {
	background: var(--logo-blue);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-left: -2px;
}

.mobile-logo-text {
	display: none;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 1px;
}

/* Desktop Sidebar */
.sidebar {
	display: none;
	width: var(--sidebar-width);
	background: var(--sidebar-bg);
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	flex-direction: column;
	z-index: 101;
}

.sidebar-header {
	padding: 25px 20px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	min-height: var(--header-height);
}

/* Updated Logo Styles */
.logo {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.logo-monogram {
	display: flex;
	justify-content: center;
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 2.5rem;
	line-height: 1;
	margin-bottom: 8px;
	letter-spacing: -2px;
}

.logo-g {
	color: var(--text-white);
}

.logo-u {
	background: var(--logo-blue);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-left: -5px;
}

.logo-full {
	color: var(--text-white);
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 1.5px;
	text-align: center;
	text-transform: uppercase;
	opacity: 0.8;
}

.sidebar-nav {
	list-style: none;
	padding: 20px 0;
	flex: 1;
}

.sidebar-nav li a {
	display: flex;
	align-items: center;
	padding: 12px 20px;
	color: var(--text-light);
	text-decoration: none;
	transition: all 0.3s;
}

.sidebar-nav li a:hover {
	color: var(--text-white);
	background: rgba(255,255,255,0.05);
}

.sidebar-nav li a.active {
	color: var(--interactive-blue);
	background: var(--sidebar-active);
	border-left: 3px solid var(--interactive-blue);
}

.sidebar-nav li a i {
	margin-right: 12px;
	font-size: 1.1rem;
	width: 20px;
	text-align: center;
}

.nav-text {
	font-size: 0.9rem;
	font-weight: 500;
}

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

/* Mobile Navigation */
.mobile-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--sidebar-bg);
	display: flex;
	justify-content: space-around;
	padding: 10px 0;
	height: var(--mobile-nav-height);
	z-index: 100;
	border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: rgba(255,255,255,0.7);
	text-decoration: none;
	font-size: 0.7rem;
	flex: 1;
}

.mobile-nav-item.active {
	color: var(--interactive-blue);
}

.mobile-nav-item i {
	font-size: 1.2rem;
	margin-bottom: 5px;
}

/* Header Controls */
.header-controls {
	display: flex;
	align-items: center;
	gap: 10px;
}

.dark-mode-toggle {
	cursor: pointer;
	padding: 8px;
	border-radius: 50%;
	transition: all 0.3s;
	background: none;
	border: none;
	color: var(--text);
	font-size: 1rem;
}

.notification-bell {
	position: relative;
	cursor: pointer;
	background: none;
	border: none;
	color: var(--text);
	font-size: 1rem;
	padding: 8px;
	border-radius: 50%;
}

.notification-count {
	position: absolute;
	top: -5px;
	right: -5px;
	background: var(--danger);
	color: white;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	font-size: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.notification-dropdown {
	display: none;
	position: fixed;
	bottom: var(--mobile-nav-height);
	left: 15px;
	right: 15px;
	background: var(--sidebar-bg);
	box-shadow: 0 5px 15px rgba(0,0,0,0.4);
	border-radius: 12px;
	padding: 10px;
	z-index: 1000;
	max-height: 60vh;
	overflow-y: auto;
	border: 1px solid rgba(255,255,255,0.1);
}

/* User Profile - Updated (XP removed) */
.user-profile {
	display: flex;
	align-items: center;
	background: rgba(0, 174, 239, 0.1);
	padding: 8px 12px;
	border-radius: 8px;
	max-width: 100%;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,0.1);
}

.user-level {
	position: relative;
	width: 40px;
	height: 40px;
	margin-right: 10px;
	flex-shrink: 0;
}

.level-circle {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: conic-gradient(var(--interactive-blue) 70%, #444 70%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.level-number {
	background: var(--sidebar-bg);
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: var(--interactive-blue);
	font-size: 0.9rem;
}

.user-info {
	display: flex;
	flex-direction: column;
}

.user-name {
	font-weight: 600;
	font-size: 0.9rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.profile {min-width: 240px;padding-bottom: 0;background: #121a2b;}
.profile .dropdown-header h6 {font-size: 18px;margin-bottom: 0;font-weight: 600;color: #fff;}
.profile .dropdown-header span {font-size: 14px;}
.profile .dropdown-item {font-size: 14px;padding: 10px 15px;transition: 0.3s;color:#fff!important;}
.profile .dropdown-item i {margin-right: 10px;font-size: 18px;line-height: 0;}
.profile .dropdown-item:hover {background-color: #090f1c;}

/* Quick Actions */
.quick-actions {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
	gap: 10px;
	margin-bottom: 20px;
}

.action-btn {
	background: var(--sidebar-bg);
	border: none;
	padding: 12px 8px;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s;
	box-shadow: var(--card-shadow);
	min-height: 80px;
	border: 1px solid rgba(255,255,255,0.1);
}

.action-btn:active {
	transform: translateY(2px);
}

.action-icon {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background: var(--interactive-blue);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	margin-bottom: 8px;
}

.action-text {
	font-size: 0.8rem;
	font-weight: 500;
	text-align: center;
	color: var(--text);
}

/* Balance Cards */
.balances-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 15px;
	margin-bottom: 20px;
}

.balance-card {
	background: var(--sidebar-bg);
	padding: 20px;
	border-radius: 10px;
	box-shadow: var(--card-shadow);
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,0.1);
}

.balance-card.primary {
	background: linear-gradient(135deg, var(--interactive-blue) 0%, #0085FF 100%);
	color: white;
}

.balance-card.warning {
	border-left: 4px solid var(--warning);
}

.balance-card h3 {
	font-size: 0.9rem;
	margin: 0 0 8px;
	opacity: 0.9;
}

.balance-card .balance-amount {
	font-size: 1.8rem;
	font-weight: 700;
	margin: 0;
	display: flex;
	align-items: center;
}

.balance-card .balance-amount i {
	margin-right: 10px;
	font-size: 1.5rem;
	color: rgba(255,255,255,0.8);
}

/* Chart Container */
.chart-container {
	background: var(--sidebar-bg);
	padding: 15px;
	border-radius: 10px;
	box-shadow: var(--card-shadow);
	margin-bottom: 20px;
	height: 250px;
	border: 1px solid rgba(255,255,255,0.1);
}

/* Stats Cards */
.stats-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 15px;
	margin-bottom: 20px;
}

.stat-card {
	background: var(--sidebar-bg);
	padding: 20px;
	border-radius: 10px;
	box-shadow: var(--card-shadow);
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,0.1);
}

.stat-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
}

.stat-card.success::after {
	background-color: var(--success);
}

.stat-card.secondary::after {
	background-color: var(--interactive-blue);
}

.stat-card.warning::after {
	background-color: var(--warning);
}

.stat-card h3 {
	font-size: 1.5rem;
	margin: 0;
	color: var(--text);
}

.stat-card p {
	margin: 5px 0 0;
	color: var(--text-light);
	font-size: 0.9rem;
}

.stat-card .stat-icon {
	position: absolute;
	right: 15px;
	top: 20px;
	font-size: 1.5rem;
	opacity: 0.2;
	color: var(--interactive-blue);
}

/* Progress Bar */
.progress-container {
	margin-top: 12px;
}

.progress-label {
	display: flex;
	justify-content: space-between;
	margin-bottom: 5px;
	font-size: 0.8rem;
}

.progress-bar {
	height: 6px;
	background-color: rgba(255,255,255,0.1);
	border-radius: 3px;
	overflow: hidden;
}

.progress-fill {
	height: 100%;
	background: var(--logo-blue);
	border-radius: 3px;
}

/* Leaderboard */
.leaderboard {
	background: var(--sidebar-bg);
	border-radius: 10px;
	box-shadow: var(--card-shadow);
	margin-bottom: 20px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,0.1);
}

.leaderboard-header {
	display: grid;
	grid-template-columns: 50px 1fr 80px;
	padding: 12px 15px;
	background: rgba(0, 174, 239, 0.1);
	font-weight: 600;
	font-size: 0.8rem;
}

.leaderboard-item {
	display: grid;
	grid-template-columns: 50px 1fr 80px;
	padding: 10px 15px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	font-size: 0.9rem;
}

.leaderboard-item.you {
	background: rgba(0, 174, 239, 0.05);
	font-weight: 600;
}

.leaderboard-item:last-child {
	border-bottom: none;
}

/* Tasks Section */
.section-title {
	font-size: 1.1rem;
	margin: 25px 0 12px;
	color: var(--interactive-blue);
	display: flex;
	align-items: center;
}

.section-title i {
	margin-right: 8px;
	color: var(--interactive-blue);
	font-size: 1rem;
}

.tasks-list {
	background: var(--sidebar-bg);
	padding: 15px;
	border-radius: 10px;
	box-shadow: var(--card-shadow);
	margin-bottom: 20px;
	border: 1px solid rgba(255,255,255,0.1);
}

.task-item {
	display: flex;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.task-item:last-child {
	border-bottom: none;
}

.task-checkbox {
	margin-right: 12px;
	width: 18px;
	height: 18px;
	accent-color: var(--interactive-blue);
	flex-shrink: 0;
}

.task-label {
	flex: 1;
	font-size: 0.9rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.task-badge {
	background-color: rgba(0, 174, 239, 0.1);
	padding: 3px 8px;
	border-radius: 10px;
	font-size: 0.7rem;
	color: var(--interactive-blue);
	font-weight: 600;
	margin-left: 8px;
	flex-shrink: 0;
}

/* Combined Activity Section */
.activity-section {
	background: var(--sidebar-bg);
	border-radius: 10px;
	box-shadow: var(--card-shadow);
	margin-bottom: 20px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,0.1);
}

.activity-tabs {
	display: flex;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.activity-tabs::-webkit-scrollbar {
	display: none;
}

.activity-tab {
	padding: 12px 15px;
	cursor: pointer;
	font-weight: 500;
	color: var(--text-light);
	border-bottom: 3px solid transparent;
	transition: all 0.3s;
	background: none;
	border: none;
	text-align: left;
	font-size: 0.9rem;
	white-space: nowrap;
}

.activity-tab.active {
	color: var(--interactive-blue);
	border-bottom-color: var(--interactive-blue);
}

.tab-content {
	display: none;
	padding: 15px;
}

.tab-content.active {
	display: block;
}

/* Transactions Table */
.transactions-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.8rem;
}

.transactions-table th, 
.transactions-table td {
	padding: 12px 8px;
	text-align: left;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.transactions-table th {
	background-color: rgba(0, 174, 239, 0.1);
	font-weight: 600;
	color: var(--text-light);
	font-size: 0.7rem;
	position: sticky;
	top: 0;
}

.transactions-table tr:last-child td {
	border-bottom: none;
}

.provider-cell {
	display: flex;
	align-items: center;
}

.provider-icon {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background-color: rgba(0, 174, 239, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 8px;
	color: var(--interactive-blue);
	flex-shrink: 0;
}

/* Offer Type Tags */
.offer-tag {
	display: inline-block;
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 0.6rem;
	font-weight: 600;
	text-transform: uppercase;
	margin-left: 6px;
}

.tag-casino {
	background-color: rgba(232, 67, 147, 0.1);
	color: var(--casino);
}

.tag-survey {
	background-color: rgba(9, 132, 227, 0.1);
	color: var(--survey);
}

.tag-game {
	background-color: rgba(0, 184, 148, 0.1);
	color: var(--game);
}

.tag-app {
	background-color: rgba(108, 92, 231, 0.1);
	color: var(--app);
}

.status-badge {
	display: inline-block;
	padding: 4px 8px;
	border-radius: 20px;
	font-size: 0.7rem;
	font-weight: 600;
}

.status-completed {
	background-color: rgba(0, 184, 148, 0.1);
	color: var(--success);
}

.status-pending {
	background-color: rgba(225, 112, 85, 0.1);
	color: #e17055;
}

.status-error {
	background-color: rgba(217, 79, 53, 0.1);
	color: #e17055;
}

.reward-amount {
	font-weight: 600;
	color: var(--interactive-blue);
}

/* Activity List */
.activity-list {
	list-style: none;
}

.activity-item {
	padding: 10px 0;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	display: flex;
}

.activity-item:last-child {
	border-bottom: none;
}

.activity-bullet {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--interactive-blue);
	margin-right: 12px;
	margin-top: 5px;
	flex-shrink: 0;
}

.activity-content {
	flex: 1;
}

.activity-date {
	font-weight: 600;
	color: var(--text-light);
	font-size: 0.7rem;
}

.activity-text {
	margin-top: 3px;
	font-size: 0.9rem;
}

/* Empty State */
.empty-state {
	text-align: center;
	padding: 30px 15px;
	color: var(--text-light);
}

.empty-state i {
	font-size: 2.5rem;
	margin-bottom: 10px;
	opacity: 0.3;
	color: var(--interactive-blue);
}

.empty-state h3 {
	margin-bottom: 10px;
	color: var(--text);
	font-size: 1.1rem;
}

/* Desktop Styles */
@media (min-width: 768px) {
	body {
		padding-bottom: 0;
	}
	
	.app-container {
		flex-direction: row;
	}
	
	.sidebar {
		display: flex;
	}
	
	.mobile-nav {
		display: none;
	}
	
	.mobile-logo {
		display: none;
	}
	
	.dashboard-header {
		background: transparent;
		border-bottom: none;
		justify-content: flex-end;
		padding: 20px 30px;
		margin-bottom: 10px;
	}
	
	.main-content {
		margin-left: var(--sidebar-width);
		padding: 30px;
	}
	
	.header-controls {
		gap: 15px;
	}
	
	.notification-dropdown {
		position: absolute;
		bottom: auto;
		left: auto;
		right: 0;
		width: 300px;
		max-height: 400px;
	}
	
	.user-profile {
		padding: 10px 15px;
	}
	
	.user-level {
		width: 50px;
		height: 50px;
		margin-right: 15px;
	}
	
	.level-number {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}
	
	.user-name {
		font-size: 1rem;
	}
	
	.quick-actions {
		grid-template-columns: repeat(3, 1fr);
		gap: 15px;
		margin-bottom: 30px;
	}
	
	.action-btn {
		padding: 15px;
		min-height: auto;
	}
	
	.action-icon {
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
		margin-bottom: 10px;
	}
	
	.action-text {
		font-size: 0.9rem;
	}
	
	.balances-container {
		grid-template-columns: 1fr 1fr;
		gap: 20px;
		margin-bottom: 30px;
	}
	
	.balance-card {
		padding: 25px;
	}
	
	.balance-card h3 {
		font-size: 1rem;
	}
	
	.balance-card .balance-amount {
		font-size: 2.5rem;
	}
	
	.balance-card .balance-amount i {
		font-size: 2rem;
	}
	
	.chart-container {
		padding: 20px;
		height: 300px;
		margin-bottom: 30px;
	}
	
	.stats-container {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		gap: 20px;
		margin-bottom: 30px;
	}
	
	.stat-card {
		padding: 25px;
	}
	
	.stat-card h3 {
		font-size: 2rem;
	}
	
	.stat-card p {
		font-size: 1rem;
	}
	
	.stat-card .stat-icon {
		font-size: 1.8rem;
	}
	
	.section-title {
		font-size: 1.3rem;
		margin: 30px 0 15px;
	}
	
	.section-title i {
		font-size: 1.2rem;
	}
	
	.tasks-list {
		padding: 20px;
		margin-bottom: 30px;
	}
	
	.task-item {
		padding: 12px 0;
	}
	
	.task-label {
		font-size: 1rem;
	}
	
	.activity-tabs {
		flex-direction: row;
		border-bottom: 1px solid rgba(255,255,255,0.1);
	}
	
	.activity-tab {
		padding: 15px 20px;
		font-size: 1rem;
	}
	
	.tab-content {
		padding: 20px;
	}
	
	.transactions-table {
		font-size: 0.9rem;
	}
	
	.transactions-table th, 
	.transactions-table td {
		padding: 15px;
	}
	
	.transactions-table th {
		font-size: 0.8rem;
	}
	
	.provider-icon {
		width: 30px;
		height: 30px;
	}
	
	.offer-tag {
		font-size: 0.7rem;
		padding: 3px 8px;
	}
	
	.status-badge {
		font-size: 0.8rem;
		padding: 5px 10px;
	}
	
	.activity-item {
		padding: 12px 0;
	}
	
	.activity-date {
		font-size: 0.9rem;
	}
	
	.activity-text {
		font-size: 1rem;
	}
}

/* Large Desktop Styles */
@media (min-width: 992px) {
	.logo-monogram {
		font-size: 3rem;
	}
	
	.logo-full {
		font-size: 1rem;
	}
	
	.chart-container {
		height: 350px;
	}
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 12px;
}

.section-title-offerwalls {
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary), transparent);
  padding: 8px 12px;
  margin: 15px 0 12px;
  text-transform: uppercase;
  border-radius: 6px;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.section-title-offerwalls::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  animation: shineOverlay 3s infinite;
}

@keyframes shineOverlay {
  100% { transform: translateX(100%); }
}

.offerwall-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.offerwall-logo {
  max-height: 80px;
  max-width: 120px;
}

/* Enhanced Card Design */
.offerwall-card {
  position: relative;
  background: 
	radial-gradient(circle at 70% 30%, rgba(0,162,255,0.03) 0%, transparent 50%),
	var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 15px;
  overflow: hidden;
  transition: all 0.2s ease-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.offerwall-card:active {
  transform: scale(0.98) translateY(2px);
  background: #1a1a1a;
}

@media (hover: hover) {
  .offerwall-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(0, 162, 255, 0.15);
  }
}

/* Premium Card Effects */
.premium-card {
  position: relative;
  background: linear-gradient(145deg, #0f111a, #1b1e30);
  z-index: 1;
}

.premium-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 12px;
  background: linear-gradient(45deg, #00a2ff, #00ffaa);
  -webkit-mask: 
	linear-gradient(#fff 0 0) content-box, 
	linear-gradient(#fff 0 0);
  mask: 
	linear-gradient(#fff 0 0) content-box, 
	linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.premium-indicator {
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  animation: pulse 2s infinite;
  padding: 2px 6px;
  background: rgba(0,0,0,0.3);
  border-radius: 4px;
}

@keyframes pulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; text-shadow: 0 0 8px var(--primary); }
}

/* Enhanced Tag Design */
.offerwall-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, #ffaa00, #ff5555);
  color: #000;
  padding: 3px 8px 3px 12px;
  font-size: 0.6rem;
  font-weight: 900;
  border-radius: 10px;
  z-index: 2;
  clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
  letter-spacing: 0.5px;
}

/* Centered Logo Container */
.logo-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  padding: 0 5px;
}

.offerwall-logo {
  font-size: clamp(0.9rem, 4vw, 1.3rem);
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
  text-align: center;
  word-break: break-word;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .offerwall-logo {
	font-size: clamp(1rem, 1.5vw, 1.5rem);
  }
}

.logo-text-cyan { color: var(--cyan); }
.logo-text-white { color: var(--text); }
.logo-text-orange { color: var(--orange); }
.logo-text-blue { color: var(--blue); }
.logo-text-green { color: var(--green); }
.logo-text-red { color: var(--red); }
.logo-text-gray { color: #aaaaaa; }

/* Enhanced Bonus Badge */
.bonus-badge {
  background: linear-gradient(135deg, var(--primary), #00ccff);
  color: #000;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 800;
  margin-top: auto;
  align-self: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.bonus-badge::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
	to bottom right,
	transparent 45%,
	rgba(255,255,255,0.3) 50%,
	transparent 55%
  );
  transform: rotate(45deg);
  animation: shine 2.5s infinite;
  z-index: -1;
}

@keyframes shine {
  0% { left: -100%; }
  20%, 100% { left: 100%; }
}

.mobile-tap-feedback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.2s;
}

.offerwall-card:active .mobile-tap-feedback {
  opacity: 1;
}

/* Enhanced Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-container {
  position: relative;
  width: 95%;
  max-width: 800px;
  height: 80vh;
  background: #131313;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 162, 255, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-overlay.active .popup-container {
  transform: scale(1);
}

.popup-header {
  padding: 15px 20px;
  background: linear-gradient(90deg, #00a2ff, #0066ff);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup-title {
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.popup-close {
  background: rgba(0, 0, 0, 0.3);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1.2rem;
}

.popup-close:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: rotate(90deg);
}

.popup-content {
  height: calc(100% - 50px);
  position: relative;
}

.popup-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #131313;
  z-index: 10;
  transition: opacity 0.3s ease;
}

.popup-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border-top-color: var(--primary);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

.popup-iframe {
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
}

.popup-iframe.loaded {
  opacity: 1;
}

/* Desktop adaptations */
@media (min-width: 768px) {
  .container {
	padding: 20px;
  }
  
  .offerwall-grid {
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 16px;
  }
  
  .offerwall-card {
	padding: 20px;
	min-height: 180px;
  }
  
  .bonus-badge {
	padding: 8px 16px;
	font-size: 0.9rem;
  }
  
  .popup-container {
	width: 90%;
	height: 85vh;
  }
}

/* Large screens */
@media (min-width: 1024px) {
  .offerwall-grid {
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	perspective: 1000px;
  }
  
  .offerwall-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .offerwall-card:hover {
	transform: translateY(-5px) translateZ(10px);
	box-shadow: 0 8px 20px rgba(0, 162, 255, 0.2);
  }

  .popup-container {
	max-width: 900px;
  }
}

.back-to-top {position: fixed;visibility: hidden;opacity: 0;right: 15px;bottom: 15px;z-index: 99999;background: #121a2b;width: 40px;height: 40px;border-radius: 4px;transition: all 0.4s;}
.back-to-top i {font-size: 24px;color: #fff;line-height: 0;}
.back-to-top:hover {background: #6776f4;color: #fff;}
.back-to-top.active {visibility: visible;opacity: 1;}
.infobox{background: var(--sidebar-bg);display:block;clear:both;padding:6px;width:100%;font-size:14px;color:#fff;margin-bottom:15px;border: 1px solid rgba(255,255,255,0.1);box-shadow: var(--card-shadow);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}
.infobox h1{font-weight:600;text-align:center}
.affiliate-url .form-group{width:100%;position:relative}
.affiliate-url i{position:absolute;left:13px;top:5px;font-size:18px}
.affiliate-url .form-control{padding-left:40px}.affiliate-url .form-control:focus{border-color:#00ce81}
#aff-block{margin:5px 0 20px;display:block;padding:8px 10px 5px;font-size:13px;text-align:left;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px}
#aff-block .title{display:block;font-weight:700;text-align:center;font-size:18px;background-color:#08546b;color:#fff;margin:-23px auto 0;text-shadow:1px 1px 1px rgba(0,0,0,0.6);border-radius:6px;-moz-border-radius:6px;-webkit-border-radius:6px}
#aff-block .aff_block_p{margin-bottom:0;margin-top:10px;display:block;text-align:center;font-size:11px}
#aff-block .aff_content_bottom{font-size:14px;font-weight:700;text-align:center;margin-top:14px}
#aff-block .aff_block_p2{display:block;background-color:#bedee2;margin:9px 5px 0;padding:4px 0;text-align:center;color:#0d5675;font-size:18px;border:1px solid #84afba;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;text-decoration:none}
#aff-block .aff_block_p2 a{color:#0b516f}
#aff-block .aff_block_p2:hover{background-color:#c2e2e6;border-color:#93c2cf}
#aff-banner{padding:4px 10px;background-color:#fff;color:#0e6083;border:1px solid #08546b;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px}
.aff-banner-title{display:block;margin:0 auto;font-weight:700;text-align:center;font-size:18px;padding:1px;background-color:#08546b;color:#fff;text-shadow:1px 1px 1px rgba(0,0,0,0.6);border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px}
.card-custom {background: var(--sidebar-bg);color:#fff;border: 1px solid rgba(255,255,255,0.1);box-shadow: var(--card-shadow);}
.page-link {background: rgba(0, 174, 239, 0.1);color:#fff;border: 1px solid rgba(255,255,255,0.1);}
.page-link:hover {background: rgba(0, 174, 239, 0.1);color:#fff;border: 1px solid rgba(255,255,255,0.1);}
.info-card {background: var(--sidebar-bg);border: 1px solid rgba(255,255,255,0.1);box-shadow: var(--card-shadow);padding-bottom: 10px;margin-bottom: 10px;margin-top:0;}
.info-card h6 {font-size: 28px;color: #fff;font-weight: 700;margin: 0;padding: 0;}
.mobileMenu {width:100%;min-width: 500px;padding-bottom: 0;background: #121a2b;border-top: 2px solid rgba(255,255,255,0.1);}
.mobileMenu .dropdown-header h6 {font-size: 18px;margin-bottom: 0;font-weight: 600;color: #fff;}
.mobileMenu .dropdown-header span {font-size: 14px;}
.mobileMenu .dropdown-item {font-size: 14px;padding: 10px 15px;transition: 0.3s;color:#fff!important;}
.mobileMenu .dropdown-item i {margin-right: 10px;font-size: 18px;line-height: 0;}
.mobileMenu .dropdown-item:hover {background-color: #090f1c;}