:root {
	--background: #000000;
	--scale: 1;
	--icon-size: 24px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

body {
	width: 100%;
	height: 100vh;
	background: var(--background);
	overflow-y: auto;
	overflow-x: hidden;
	position: relative;
	padding-top: 60px;
	padding-bottom: 120px;
}

.connect-wallet-btn {
	position: fixed;
	top: 15px;
	right: 15px;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	z-index: 1000;
}

.connect-wallet-btn:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-1px);
}

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

.connect-wallet-btn .wallet-icon {
	width: 18px;
	height: 18px;
	fill: #fff;
	flex-shrink: 0;
}

.connect-wallet-btn .btn-text {
	white-space: nowrap;
}

.connect-wallet-btn.connected {
	background: rgba(34, 197, 94, 0.1);
	border-color: rgba(34, 197, 94, 0.3);
}

.connect-wallet-btn.connected:hover {
	background: rgba(34, 197, 94, 0.15);
	border-color: rgba(34, 197, 94, 0.4);
}

@media (max-width: 480px) {
	.connect-wallet-btn {
		top: 10px;
		right: 10px;
		padding: 8px 12px;
		font-size: 12px;
		gap: 6px;
	}
	
	.connect-wallet-btn .wallet-icon {
		width: 16px;
		height: 16px;
	}
	
	.connect-wallet-btn .btn-text {
		display: inline;
	}
	
	body {
		padding-top: 50px;
		padding-bottom: 140px;
	}
}

nav {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 350px;
	height: 80px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	border-radius: 10px 10px 0 0;
	padding: 0 15px;
	background: rgb(0, 0, 0);
	box-shadow: 0 -6.7px 5.3px rgba(0, 0, 0, 0.12), 0 -22.3px 17.9px rgba(0, 0, 0, 0.08), 0 -100px 80px rgba(0, 0, 0, 0.04);
	overflow: hidden;
	z-index: 999;
}

@media (max-width: 480px) {
	nav {
		width: 100%;
		max-width: 100%;
		height: 70px;
		padding: 0 10px;
		border-radius: 8px 8px 0 0;
		left: 0;
		transform: none;
	}
}

nav ul {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

nav ul li {
	list-style: none;
	width: var(--icon-size);
	height: var(--icon-size);
}

nav ul li a {
	display: block;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

nav ul li a svg {
	fill: #fff;
	width: 100%;
	height: 100%;
	opacity: 0.4;
	transition: opacity 100ms ease;
	pointer-events: none;
}

nav ul li a.active svg {
	opacity: 1;
}

nav .tubelight {
	position: absolute;
	left: 0px;
	top: 0px;
	transform: translateX(-50%);
	width: 45px;
	height: 5px;
	border-radius: 5px;
	background: #ffffff;
	transition: left 400ms ease;
	z-index: 10;
}

nav .tubelight .light-ray {
	position: absolute;
	left: -30%;
	top: 5px;
	width: 160%;
	height: 80px;
	clip-path: polygon(5% 100%, 25% 0px, 75% 0px, 95% 100%);
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) -50%, rgba(255, 255, 255, 0) 90%);
	pointer-events: none;
}

@media (max-width: 480px) {
	nav .tubelight .light-ray {
		height: 70px;
	}
	
	nav ul li {
		width: 22px;
		height: 22px;
	}
	
	:root {
		--icon-size: 22px;
	}
}

@media (max-width: 360px) {
	nav {
		height: 65px;
		padding: 0 8px;
	}
	
	body {
		padding-bottom: 75px;
	}
	
	nav .tubelight .light-ray {
		height: 65px;
	}
	
	nav ul li {
		width: 20px;
		height: 20px;
	}
	
	:root {
		--icon-size: 20px;
	}
}

/* Content Area */
.content {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	padding: 20px;
	padding-bottom: 20px;
	display: none;
}

.content.page.active {
	display: block;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.empty-state {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 60px 20px;
	text-align: center;
}

.empty-state .empty-icon {
	width: 64px;
	height: 64px;
	fill: rgba(255, 255, 255, 0.3);
	margin-bottom: 20px;
}

.empty-state h2 {
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	margin: 0 0 8px 0;
}

.empty-state p {
	color: rgba(255, 255, 255, 0.5);
	font-size: 16px;
	margin: 0;
}

.empty-tasks-state {
	text-align: center;
	padding: 40px 20px;
	color: rgba(255, 255, 255, 0.6);
}

.empty-tasks-state p {
	margin: 8px 0;
	font-size: 14px;
}

.task-meta {
	display: flex;
	gap: 16px;
	margin-top: 8px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
}

.task-reward {
	color: rgba(34, 197, 94, 0.8);
	font-weight: 500;
}

.task-participants {
	color: rgba(255, 255, 255, 0.5);
}

/* Bookmarks Page */
.bookmarks-container {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	padding: 20px;
	padding-bottom: 40px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.bookmark-card {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	gap: 16px;
}

.bookmark-card:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.15);
	transform: translateY(-2px);
}

.bookmark-card-content {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 1;
}

.bookmark-card-icon {
	width: 40px;
	height: 40px;
	fill: #fff;
	flex-shrink: 0;
}

.bookmark-card-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.bookmark-card-title {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	margin: 0;
}

.bookmark-card-desc {
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
	margin: 0;
}

.bookmark-card-arrow {
	width: 20px;
	height: 20px;
	fill: rgba(255, 255, 255, 0.5);
	flex-shrink: 0;
	transform: rotate(-90deg);
}

.back-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-bottom: 20px;
}

.back-btn:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.15);
}

.back-icon {
	width: 16px;
	height: 16px;
	fill: #fff;
	transform: rotate(90deg);
}

.page-title {
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	margin: 0 0 24px 0;
}

/* Leaderboard */
.leaderboard-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.leaderboard-item {
	display: flex;
	align-items: center;
	gap: 16px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 16px;
	transition: all 0.3s ease;
}

.leaderboard-item:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.15);
}

.rank {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	min-width: 40px;
}

.user-info {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
}

.user-avatar-small {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	flex-shrink: 0;
}

.user-details {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.user-name {
	color: #fff;
	font-size: 15px;
	font-weight: 500;
}

.user-rewards {
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
}

/* Staking */
.staking-info {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-bottom: 24px;
}

.info-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 16px;
	text-align: center;
}

.info-label {
	color: rgba(255, 255, 255, 0.6);
	font-size: 12px;
	margin-bottom: 8px;
}

.info-value {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
}

.action-btn {
	width: 100%;
	padding: 14px 20px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.action-btn:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
}

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

/* Tasks List */
.tasks-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.task-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 16px;
	transition: all 0.3s ease;
}

.task-item:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.15);
}

.task-item-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.task-item-title {
	color: #fff;
	font-size: 15px;
	font-weight: 500;
}

.task-item-status {
	color: rgba(255, 255, 255, 0.6);
	font-size: 12px;
}

.task-item-reward {
	color: #22c55e;
	font-size: 16px;
	font-weight: 600;
}

@media (max-width: 480px) {
	.bookmarks-container {
		padding: 15px;
		padding-bottom: 50px;
		gap: 10px;
	}
	
	.bookmark-card {
		padding: 16px;
	}
	
	.bookmark-card-icon {
		width: 36px;
		height: 36px;
	}
	
	.bookmark-card-title {
		font-size: 15px;
	}
	
	.bookmark-card-desc {
		font-size: 12px;
	}
	
	.page-title {
		font-size: 20px;
		margin-bottom: 20px;
	}
	
	.staking-info {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	
	.leaderboard-item {
		padding: 12px;
	}
	
	.user-avatar-small {
		width: 36px;
		height: 36px;
	}
}

/* Profile Page */
.profile-container {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	padding: 20px;
	padding-bottom: 40px;
}

.profile-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 32px;
}

.profile-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 16px;
	border: 3px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.05);
}

.avatar-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.profile-name {
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	margin: 0 0 8px 0;
}

.profile-username {
	color: rgba(255, 255, 255, 0.6);
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 12px;
}

.profile-bio {
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	line-height: 1.5;
	text-align: center;
	max-width: 400px;
	margin: 0 auto 20px;
	padding: 0 20px;
}

.profile-stats-social {
	display: flex;
	gap: 32px;
	justify-content: center;
	margin-top: 16px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.stat-number {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
}

.stat-item .stat-label {
	color: rgba(255, 255, 255, 0.6);
	font-size: 12px;
	margin: 0;
}

.profile-stats {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 24px;
}

.stat-card {
	display: flex;
	align-items: center;
	gap: 16px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 20px;
	transition: all 0.3s ease;
}

.stat-card:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.15);
}

.stat-icon {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	flex-shrink: 0;
}

.stat-icon svg {
	width: 32px;
	height: 32px;
	fill: #fff;
}

.stat-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.stat-label {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
}

.stat-value {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
}


@media (max-width: 480px) {
	.profile-container {
		padding: 15px;
	}
	
	.profile-avatar {
		width: 100px;
		height: 100px;
	}
	
	.profile-name {
		font-size: 20px;
	}
	
	.stat-card {
		padding: 16px;
	}
	
	.stat-icon {
		width: 50px;
		height: 50px;
	}
	
	.stat-icon svg {
		width: 28px;
		height: 28px;
	}
}

/* Claim Rewards Section */
.claim-rewards-section {
	margin-top: 24px;
}

.claim-card {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(34, 197, 94, 0.1);
	border: 1px solid rgba(34, 197, 94, 0.3);
	border-radius: 12px;
	padding: 20px;
	gap: 16px;
}

.claim-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.claim-label {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
}

.claim-amount {
	color: #22c55e;
	font-size: 24px;
	font-weight: 700;
}

.claim-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: rgba(34, 197, 94, 0.2);
	border: 1px solid rgba(34, 197, 94, 0.4);
	border-radius: 10px;
	color: #22c55e;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.claim-btn:hover {
	background: rgba(34, 197, 94, 0.3);
	border-color: rgba(34, 197, 94, 0.5);
	transform: translateY(-2px);
}

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

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

.claim-icon {
	width: 18px;
	height: 18px;
	fill: #22c55e;
}

@media (max-width: 480px) {
	.profile-container {
		padding-bottom: 50px;
	}
	
	.claim-card {
		flex-direction: row;
		align-items: center;
		gap: 12px;
		padding: 16px;
	}
	
	.claim-btn {
		width: auto;
		padding: 10px 20px;
		flex-shrink: 0;
	}
	
	.claim-amount {
		font-size: 20px;
	}
	
	.claim-info {
		flex: 1;
		min-width: 0;
	}
	 
	.stat-value {
		font-size: 18px;
	}
}

/* Create Task Form */
.create-container {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	padding-bottom: 20px;
}

.create-title {
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	margin: 0 0 24px 0;
	text-align: center;
}

.create-task-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 30px;
}

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

.form-label {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
}

.form-input,
.form-textarea,
.form-select {
	width: 100%;
	padding: 12px 16px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	color: #fff;
	font-size: 14px;
	font-family: inherit;
	transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
	outline: none;
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

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

.form-select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 40px;
}

.form-select option {
	background: #1a1a1a;
	color: #fff;
}

.reward-display {
	margin-top: 8px;
}

.reward-card {
	background: rgba(34, 197, 94, 0.1);
	border: 1px solid rgba(34, 197, 94, 0.3);
	border-radius: 12px;
	padding: 20px;
	text-align: center;
}

.reward-display.reward-warning .reward-card {
	background: rgba(239, 68, 68, 0.1);
	border-color: rgba(239, 68, 68, 0.3);
}

.reward-label {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	margin-bottom: 8px;
}

.reward-amount {
	color: #22c55e;
	font-size: 28px;
	font-weight: 700;
}

.submit-btn {
	width: 100%;
	padding: 16px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 8px;
}

.submit-btn:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
}

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

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

@media (max-width: 480px) {
	.create-title {
		font-size: 20px;
		margin-bottom: 20px;
	}
	
	.create-task-form {
		gap: 16px;
		margin-bottom: 40px;
	}
	
	.create-container {
		padding-bottom: 40px;
	}
	
	.form-input,
	.form-textarea,
	.form-select {
		padding: 10px 14px;
		font-size: 14px;
	}
	
	.reward-amount {
		font-size: 24px;
	}
	
	.submit-btn {
		padding: 14px;
		font-size: 15px;
		margin-bottom: 20px;
	}
}

.tasks-container {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.task-card {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 16px 20px;
	transition: all 0.3s ease;
}

.task-card:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.15);
}

.task-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.task-title {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	margin: 0;
}

.task-description {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	margin: 0;
}

.task-action-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 20px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
	min-width: 100px;
}

.task-action-btn:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-1px);
}

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

.task-action-btn.verified {
	background: rgba(34, 197, 94, 0.2);
	border-color: rgba(34, 197, 94, 0.4);
	color: #22c55e;
}

.task-action-btn.verified .btn-label::before {
	content: "✓ ";
}

@media (max-width: 480px) {
	.content {
		padding: 15px;
	}
	
	.task-card {
		padding: 14px 16px;
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
	
	.task-action-btn {
		width: 100%;
		justify-content: center;
	}
	
	.task-title {
		font-size: 15px;
	}
	
	.task-description {
		font-size: 13px;
	}
}

/* Settings Page */
.settings-container {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	padding: 20px;
	padding-bottom: 40px;
}

.settings-section {
	margin-bottom: 32px;
}

.settings-title {
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	margin: 0 0 24px 0;
}

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

.referral-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 24px;
}

.referral-info {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.referral-label {
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	font-weight: 500;
	margin: 0;
}

.referral-code-container {
	display: flex;
	gap: 12px;
	align-items: center;
}

.referral-code {
	flex: 1;
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	padding: 12px 16px;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	font-family: monospace;
	letter-spacing: 1px;
	text-align: center;
	outline: none;
}

.referral-code:focus {
	border-color: rgba(255, 255, 255, 0.4);
}

.copy-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.copy-btn:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-1px);
}

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

.copy-icon {
	width: 20px;
	height: 20px;
	fill: #fff;
}

.referral-description {
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
	line-height: 1.5;
	margin: 0;
	text-align: center;
}

@media (max-width: 480px) {
	.settings-container {
		padding: 15px;
	}
	
	.settings-title {
		font-size: 20px;
		margin-bottom: 20px;
	}
	
	.referral-card {
		padding: 20px;
	}
	
	.referral-code {
		font-size: 14px;
		padding: 10px 12px;
	}
	
	.copy-btn {
		width: 44px;
		height: 44px;
	}
	
	.copy-icon {
		width: 18px;
		height: 18px;
	}
	
	.referral-description {
		font-size: 12px;
	}
}

/* Onboarding Page */
.onboarding-page {
	background-image: url('login/login.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 10000;
	overflow-y: auto;
}

.onboarding-container {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	padding: 40px 20px;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
	z-index: 2;
}

.onboarding-header {
	text-align: center;
	margin-bottom: 40px;
}

.onboarding-title {
	color: #fff;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 12px;
}

.onboarding-subtitle {
	color: rgba(255, 255, 255, 0.8);
	font-size: 16px;
}

.onboarding-tasks {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.onboarding-task {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 24px;
	transition: all 0.3s ease;
	position: relative;
}

.onboarding-task:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
}

.task-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
}

.task-number {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	flex-shrink: 0;
}

.task-info {
	flex: 1;
}

.task-title {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 4px;
}

.task-description {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
}

.task-status {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

.task-icon {
	width: 100%;
	height: 100%;
}

.task-icon.pending {
	color: rgba(255, 255, 255, 0.5);
}

.task-icon.completed {
	color: #22c55e;
}

.task-icon.completed path {
	fill: currentColor;
}

.task-content {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.referral-input {
	width: 100%;
	padding: 14px 16px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	font-family: monospace;
	letter-spacing: 1px;
	text-align: center;
	outline: none;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

.referral-input:focus {
	border-color: rgba(255, 255, 255, 0.4);
	background: rgba(255, 255, 255, 0.08);
}

.referral-input::placeholder {
	color: rgba(255, 255, 255, 0.4);
	text-transform: none;
}

.task-btn {
	padding: 14px 24px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	text-align: center;
	display: block;
	width: 100%;
}

.task-btn:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.3);
}

.task-btn:active {
	background: rgba(255, 255, 255, 0.08);
}

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

.task-btn.verify-btn {
	background: rgba(34, 197, 94, 0.2);
	border-color: rgba(34, 197, 94, 0.4);
}

.task-btn.verify-btn:hover {
	background: rgba(34, 197, 94, 0.3);
	border-color: rgba(34, 197, 94, 0.5);
}

.task-error {
	color: #ef4444;
	font-size: 14px;
	margin-top: 8px;
	text-align: center;
}

.task-success {
	color: #22c55e;
	font-size: 14px;
	margin-top: 8px;
	text-align: center;
}

@media (max-width: 480px) {
	.onboarding-container {
		padding: 30px 15px;
	}
	
	.onboarding-title {
		font-size: 24px;
	}
	
	.onboarding-subtitle {
		font-size: 14px;
	}
	
	.onboarding-task {
		padding: 16px;
	}
	
	.task-number {
		width: 36px;
		height: 36px;
		font-size: 18px;
	}
	
	.task-title {
		font-size: 16px;
	}
	
	.task-description {
		font-size: 13px;
	}
}

