/* Dress-up Game Components */
.loading {
	text-align: center;
	padding: var(--space-xl);
	color: var(--text-light);
	font-style: italic;
}
.item-name {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 0.5rem;
	background: var(--surface);
	color: var(--text);
	font-size: 0.875rem;
	text-align: center;
	transform: translateY(100%);
	transition: var(--transition-fast);
	border-top: var(--border-width) solid var(--border-color);
}
[data-theme="dark"] .item-name {
	background: #2d2d2d;
	color: var(--text);
}
.dressup-item:hover .item-name {
	transform: translateY(0);
}
/* Profile Circle Styles */
.profile-circle {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-color: var(--primary);
	display: inline-block;
	margin-right: var(--space-xs);
	border: 2px solid var(--surface);
	box-shadow: var(--shadow-sm);
}
.account-link {
	display: flex;
	align-items: center;
	gap: var(--space-xs);
	color: var(--text-light);
	text-decoration: none;
}
.account-link i {
	font-size: 0.75rem;
	margin-left: var(--space-2xs);
}
/* Navigation Link Styles */
.game-nav > a {
	color: var(--text-light);
	text-decoration: none;
	font-weight: 500;
	padding: var(--space-xs) var(--space-sm);
	border-radius: var(--border-radius);
	transition: var(--transition-fast);
}
.game-nav > a:hover,.game-nav > a.active {
	color: var(--primary);
	background-color: rgba(255, 181, 232, 0.1);
}
/* Navigation Icons */
.game-nav > a i,.nav-dropdown-content a i {
	font-size: 1rem;
	width: 1.25rem;
	text-align: center;
	margin-right: var(--space-xs);
}
.nav-dropdown-content a i {
	font-size: 0.875rem;
	width: 1rem;
	opacity: 0.8;
}
.account-link i.fa-chevron-down {
	font-size: 0.75rem;
	margin-left: var(--space-2xs);
	margin-right: 0;
	width: auto;
	transition: transform var(--transition-fast);
}
.nav-dropdown:hover .account-link i.fa-chevron-down {
	transform: rotate(180deg);
}
.game-logo {
	max-height: 60px;
	width: auto;
	transition: transform var(--transition-fast);
}
.game-logo:hover {
	transform: scale(1.05);
}
.logo-container {
	display: flex;
	align-items: center;
	justify-content: center;
}
.news-container {
	padding: 2rem 0;
	background-color: var(--background-color);
}
.page-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 2.5rem;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 3rem;
	text-align: center;
}
.news-list {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 1rem;
}
.news-article {
	background: #FFF;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	margin-bottom: 3rem;
	overflow: hidden;
}
.article-header {
	padding: 2rem 2rem 1rem;
}
.article-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}
.article-category {
	background: var(--accent-color);
	color: white;
	padding: 0.25rem 1rem;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 500;
}
.article-header h3 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 1.75rem;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 0.5rem;
}
.article-author {
	color: var(--text-secondary);
	font-size: 0.875rem;
	margin-top: 0.5rem;
}
.article-content {
	padding: 0 2rem 2rem;
}
.article-image {
	width: 100%;
	height: 400px;
	margin: 1rem 0 2rem;
	border-radius: 8px;
	overflow: hidden;
}
.article-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.article-text {
	color: var(--text-color);
	line-height: 1.8;
	font-size: 1.1rem;
}
.article-text p {
	margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
	.page-title {
		font-size: 2rem;
	}
	.article-header {
		padding: 1.5rem 1.5rem 1rem;
	}
	.article-content {
		padding: 0 1.5rem 1.5rem;
	}
	.article-image {
		height: 300px;
		margin: 0.5rem 0 1.5rem;
	}
	.article-header h3 {
		font-size: 1.5rem;
	}
	.article-text {
		font-size: 1rem;
	}
}
.community-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 2rem;
	padding: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}
.community-card {
	background: var(--card-bg);
	border-radius: var(--border-radius);
	border: var(--border-width) solid var(--border-color);
	overflow: hidden;
	transition: transform var(--transition-fast);
}
.community-card:hover {
	transform: translateY(-5px);
}
.member-link {
	text-decoration: none;
	color: var(--text-color);
	display: block;
}
.member-image {
	width: 100%;
	aspect-ratio: 1;
	overflow: hidden;
	position: relative;
}
.member-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.profile-image-overlay {
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid var(--card-bg);
	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.profile-image-overlay img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.member-info {
	padding: 1rem;
	text-align: center;
}
.member-info h3 {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 600;
}
.error-message {
	text-align: center;
	color: var(--error-color, #dc3545);
	padding: 2rem;
	background: var(--card-bg);
	border-radius: var(--border-radius);
	margin: 2rem auto;
	max-width: 600px;
}
.no-users {
	text-align: center;
	padding: 2rem;
	color: var(--text-color);
	grid-column: 1 / -1;
}
.contact-section {
	max-width: 800px;
	margin: 2rem auto;
	padding: 0 1rem;
}
.contact-section h1 {
	text-align: center;
	margin-bottom: 2rem;
	color: var(--text-color);
}
.contact-block {
	background: var(--card-bg);
	border-radius: var(--border-radius);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	border: var(--border-width) solid var(--border-color);
}
.contact-block h2 {
	color: var(--text-color);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.contact-block h2 i {
	color: var(--accent-color);
}
.contact-block p {
	color: var(--text-color);
	line-height: 1.6;
	margin-bottom: 1rem;
}
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.form-group label {
	color: var(--text-color);
	font-weight: 500;
}
.form-group input,.form-group textarea {
	padding: 0.75rem;
	border: var(--border-width) solid var(--border-color);
	border-radius: var(--border-radius);
	background: var(--input-bg);
	color: var(--text-color);
	font-size: 1rem;
}
.form-group textarea {
	resize: vertical;
	min-height: 120px;
}
.submit-button {
	background: #FFB5E8;
	color: white;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: var(--border-radius);
	cursor: pointer;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: background-color 0.2s;
}
.submit-button:hover {
	background: #333;
}
.alert {
	padding: 1rem;
	border-radius: var(--border-radius);
	margin-bottom: 1rem;
}
.alert-success {
	background: #4CAF50;
	color: white;
}
.alert-error {
	background: #f44336;
	color: white;
}
.user-items-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 1rem;
	margin-top: 1rem;
}
.item-card {
	background: var(--surface);
	border-radius: var(--border-radius);
	overflow: hidden;
	border: var(--border-width) solid var(--border-color);
}
.item-image {
	width: 100%;
	height: 150px;
	overflow: hidden;
}
.item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.item-info {
	padding: 1rem;
}
.item-info h3 {
	margin: 0;
	font-size: 1rem;
	color: var(--text-color);
}
.item-category {
	color: var(--accent-color);
	font-size: 0.9rem;
	margin: 0.5rem 0;
}
.item-date {
	color: var(--text-muted);
	font-size: 0.8rem;
	margin: 0;
}
@media (max-width: 768px) {
	.user-items-grid {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	}
}
@media (max-width: 768px) {
	.community-grid {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		gap: 1rem;
		padding: 1rem;
	}
	.profile-image-overlay {
		width: 30px;
		height: 30px;
		bottom: 5px;
		right: 5px;
	}
}
@media (max-width: 768px) {
	.game-logo {
		max-height: 48px;
	}
}
/* Responsive adjustments */
@media (max-width: 768px) {
	.game-nav > a i,.nav-dropdown-content a i {
		font-size: 0.875rem;
		width: 1rem;
	}
}
/* Account Settings Styles */
.account-settings {
	background-color: var(--card-bg);
	border-radius: var(--border-radius);
	border: var(--border-width) solid var(--border-color);
	padding: var(--space-lg);
	margin-top: var(--space-xl);
}
.settings-form {
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
}
.form-section {
	background-color: var(--surface);
	border-radius: var(--border-radius);
	border: var(--border-width) solid var(--border-color);
	padding: var(--space-lg);
	margin-bottom: var(--space-lg);
}
.form-section h4 {
	display: flex;
	align-items: center;
	gap: var(--space-xs);
	margin-bottom: var(--space-md);
	color: var(--text);
}
.form-section h4 i {
	color: var(--primary);
}
.form-group {
	display: flex;
	flex-direction: column;
	gap: var(--space-xs);
}
.form-group label {
	display: flex;
	align-items: center;
	gap: var(--space-xs);
	color: var(--text);
	font-weight: 500;
}
.form-group label i {
	color: var(--primary);
	width: 1rem;
}
.settings-input {
	padding: var(--space-sm);
	border: var(--border-width) solid var(--border-color);
	border-radius: var(--border-radius);
	background-color: var(--surface);
	color: var(--text);
	font-family: var(--font-primary);
	transition: var(--transition-fast);
}
.settings-input:focus {
	border-color: var(--primary);
	outline: none;
	box-shadow: 0 0 0 2px rgba(255, 181, 232, 0.2);
}
.checkbox-group,.radio-group {
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
}
.checkbox-label,.radio-label {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	cursor: pointer;
}
.checkbox-label input,.radio-label input {
	width: 16px;
	height: 16px;
	cursor: pointer;
}
.form-actions {
	display: flex;
	gap: var(--space-md);
	margin-top: var(--space-lg);
}
/* Community Members Styles */
.community-members {
	background-color: var(--card-bg);
	border-radius: var(--border-radius);
	border: var(--border-width) solid var(--border-color);
	padding: var(--space-lg);
	margin-top: var(--space-xl);
}
.members-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: var(--space-md);
	margin-top: var(--space-md);
}
.member-card {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	padding: var(--space-sm);
	background-color: var(--surface);
	border-radius: var(--border-radius);
	border: var(--border-width) solid var(--border-color);
	transition: var(--transition-fast);
}
.member-card:hover {
	transform: translateY(-2px);
	border-color: var(--primary);
	box-shadow: var(--shadow-sm);
}
.member-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--surface);
	font-size: 1.25rem;
}
.member-info {
	flex: 1;
}
.member-name {
	font-weight: 500;
	color: var(--text);
}
.member-status {
	font-size: 0.875rem;
	color: var(--text-light);
}
.member-status.online {
	color: var(--accent);
}
.member-status.online::before {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	background-color: var(--accent);
	border-radius: 50%;
	margin-right: var(--space-2xs);
}
/* Mini Profile Styles */
.mini-profile {
	background-color: var(--card-bg);
	border-radius: var(--border-radius);
	border: var(--border-width) solid var(--border-color);
	padding: var(--space-lg);
	margin-top: var(--space-xl);
}
.profile-header {
	width: 100%;
	margin-bottom: 2rem;
	position: relative;
}
.profile-cover {
	width: 100%;
	height: 300px;
	overflow: hidden;
	border-radius: var(--border-radius);
}
.profile-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.profile-info {
	position: absolute;
	bottom: -60px;
	left: 2rem;
	display: flex;
	align-items: flex-end;
	gap: 1.5rem;
}
.profile-avatar {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	border: 4px solid var(--card-bg);
	overflow: hidden;
	background: var(--card-bg);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.profile-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.profile-details {
	margin-bottom: 1rem;
	background: var(--card-bg);
	padding: 1rem;
	border-radius: var(--border-radius);
	border: var(--border-width) solid var(--border-color);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.profile-details h1 {
	margin: 0;
	color: var(--text-color);
	font-size: 2rem;
}
.broadcaster-type {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	background: var(--accent-color);
	color: var(--text-on-accent);
	border-radius: var(--border-radius);
	font-size: 0.9rem;
	margin-top: 0.5rem;
}
.profile-content {
	padding: 0 2rem 2rem;
	margin-top: 100px;
}
.profile-section {
	background: var(--card-bg);
	border-radius: var(--border-radius);
	border: var(--border-width) solid var(--border-color);
	padding: 1.5rem;
	margin-bottom: 2rem;
}
.profile-section h2 {
	margin: 0 0 1rem;
	color: var(--text-color);
	font-size: 1.5rem;
}
.profile-description {
	color: var(--text-color);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}
.profile-meta {
	display: grid;
	gap: 1rem;
}
.meta-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--text-color);
}
.meta-item i {
	color: var(--accent-color);
}
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 1rem;
}
.gallery-item {
	aspect-ratio: 1;
	border-radius: var(--border-radius);
	overflow: hidden;
}
.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.no-images {
	text-align: center;
	color: var(--text-color);
	padding: 2rem;
}
.profile-dingle-card {
	background: var(--card-bg);
	border-radius: var(--border-radius);
	padding: 1rem;
	box-shadow: var(--card-shadow);
	max-width: 300px;
	margin: 1rem 0;
}
.profile-dingle-card img {
	width: 100%;
	height: auto;
	border-radius: calc(var(--border-radius) - 4px);
}
.profile-dingle-card .dingle-name {
	margin-top: 0.5rem;
	font-size: 1.1rem;
	color: var(--text-color);
	text-align: center;
}
@media (max-width: 768px) {
	.profile-cover {
		height: 200px;
	}
	.profile-info {
		position: relative;
		bottom: auto;
		left: auto;
		flex-direction: column;
		align-items: center;
		text-align: center;
		margin-top: -40px;
		padding: 0 1rem;
	}
	.profile-avatar {
		width: 120px;
		height: 120px;
	}
	.profile-details {
		margin: 1rem 0 0;
		width: 100%;
	}
	.profile-content {
		padding: 0 1rem 1rem;
		margin-top: 2rem;
	}
	.gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	}
}
.terms-section {
	max-width: 800px;
	margin: 2rem auto;
	padding: 0 1rem;
}
.terms-section h1 {
	text-align: center;
	margin-bottom: 2rem;
	color: var(--text-color);
}
.terms-block {
	background: var(--card-bg);
	border-radius: var(--border-radius);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	border: var(--border-width) solid var(--border-color);
}
.terms-block h2 {
	color: var(--text-color);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.terms-block h2 i {
	color: var(--accent-color);
}
.terms-block p {
	color: var(--text-color);
	line-height: 1.6;
	margin-bottom: 1rem;
}
.terms-block ul {
	color: var(--text-color);
	margin-left: 1.5rem;
	margin-bottom: 1rem;
}
.terms-block li {
	margin-bottom: 0.5rem;
	line-height: 1.4;
}
@media (max-width: 768px) {
	.terms-section {
		margin: 1rem auto;
	}
	.terms-block {
		padding: 1rem;
	}
}
.privacy-section {
	max-width: 800px;
	margin: 2rem auto;
	padding: 0 1rem;
}
.privacy-section h1 {
	text-align: center;
	margin-bottom: 2rem;
	color: var(--text-color);
}
.privacy-block {
	background: var(--card-bg);
	border-radius: var(--border-radius);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	border: var(--border-width) solid var(--border-color);
}
.privacy-block h2 {
	color: var(--text-color);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.privacy-block h2 i {
	color: var(--accent-color);
}
.privacy-block p {
	color: var(--text-color);
	line-height: 1.6;
	margin-bottom: 1rem;
}
.privacy-block ul {
	color: var(--text-color);
	margin-left: 1.5rem;
	margin-bottom: 1rem;
}
.privacy-block li {
	margin-bottom: 0.5rem;
	line-height: 1.4;
}
@media (max-width: 768px) {
	.privacy-section {
		margin: 1rem auto;
	}
	.privacy-block {
		padding: 1rem;
	}
}
.about-section {
	max-width: 800px;
	margin: 2rem auto;
	padding: 0 1rem;
}
.about-section h1 {
	text-align: center;
	margin-bottom: 2rem;
	color: var(--text-color);
}
.about-block {
	background: var(--card-bg);
	border-radius: var(--border-radius);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	border: var(--border-width) solid var(--border-color);
}
.about-block h2 {
	color: var(--text-color);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.about-block h2 i {
	color: var(--accent-color);
}
.about-block p {
	color: var(--text-color);
	line-height: 1.6;
	margin-bottom: 1rem;
}
.about-block ul, .about-block ol {
	color: var(--text-color);
	margin-left: 1.5rem;
	margin-bottom: 1rem;
}
.about-block li {
	margin-bottom: 0.5rem;
	line-height: 1.4;
}
@media (max-width: 768px) {
	.about-section {
		margin: 1rem auto;
	}
	.about-block {
		padding: 1rem;
	}
}
/* Guestbook Styles */
.guestbook {
	margin-top: var(--space-lg);
	padding-top: var(--space-lg);
	border-top: var(--border-width) solid var(--border-color);
}
.guestbook h4 {
	display: flex;
	align-items: center;
	gap: var(--space-xs);
	margin-bottom: var(--space-md);
	color: var(--text);
}
.guestbook h4 i {
	color: var(--primary);
}
.guestbook-form {
	margin-bottom: var(--space-lg);
}
.guestbook-form textarea {
	width: 100%;
	margin-bottom: var(--space-sm);
	resize: vertical;
	min-height: 80px;
}
.guestbook-entries {
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
}
.guestbook-entry {
	display: flex;
	gap: var(--space-md);
	padding: var(--space-md);
	background-color: var(--surface);
	border-radius: var(--border-radius);
	border: var(--border-width) solid var(--border-color);
}
.entry-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--surface);
	font-size: 1.25rem;
	flex-shrink: 0;
}
.entry-content {
	flex: 1;
}
.entry-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: var(--space-xs);
}
.entry-name {
	font-weight: 500;
	color: var(--text);
}
.entry-date {
	font-size: 0.875rem;
	color: var(--text-light);
}
.entry-content p {
	margin: 0;
	color: var(--text);
	line-height: 1.5;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
	.members-grid {
		grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	}
	.profile-header {
		flex-direction: column;
		text-align: center;
	}
	.profile-stats {
		justify-content: center;
	}
	.profile-actions {
		flex-direction: column;
	}
	.form-actions {
		flex-direction: column;
	}
	.guestbook-entry {
		flex-direction: column;
		gap: var(--space-sm);
	}
	.entry-avatar {
		width: 32px;
		height: 32px;
		font-size: 1rem;
	}
}
/* Category Tabs */
.dressup-tabs {
	display: flex;
	gap: var(--space-sm);
	background-color: var(--card-bg);
	border: var(--border-width) solid var(--border-color);
	border-radius: var(--border-radius);
	padding: var(--space-sm);
	margin-bottom: var(--space-md);
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: thin;
	scrollbar-color: var(--primary) var(--background);
	-webkit-overflow-scrolling: touch;
	/* Hide scrollbar for Chrome, Safari and Opera */
	&::-webkit-scrollbar {
		height: 6px;
	}
	&::-webkit-scrollbar-track {
		background: var(--background);
		border-radius: 3px;
	}
	&::-webkit-scrollbar-thumb {
		background-color: var(--primary);
		border-radius: 3px;
	}
	/* Prevent tab buttons from shrinking */
	& > * {
		flex: 0 0 auto;
	}
}
.dressup-tab {
	display: flex;
	align-items: center;
	gap: var(--space-xs);
	padding: var(--space-sm) var(--space-md);
	background: none;
	border: none;
	border-radius: var(--border-radius);
	color: var(--text-light);
	font-weight: 500;
	cursor: pointer;
	transition: var(--transition-fast);
	white-space: nowrap;
	min-width: max-content;
}
.dressup-tab:hover {
	color: var(--primary);
	background-color: rgba(255, 181, 232, 0.1);
}
.dressup-tab.active {
	color: var(--primary);
	background-color: rgba(255, 181, 232, 0.1);
}
.dressup-tab i {
	font-size: 1.25rem;
}
/* Item Grid */
.dressup-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
	gap: var(--space-md);
	padding: var(--space-md);
	background-color: var(--card-bg);
	border-radius: var(--border-radius);
	border: var(--border-width) solid var(--border-color);
	margin-bottom: var(--space-lg);
}
.dressup-item {
	position: relative;
	aspect-ratio: 1;
	border-radius: var(--border-radius);
	overflow: hidden;
	cursor: pointer;
	background-color: var(--surface);
	border: var(--border-width) solid var(--border-color);
	transition: all var(--transition-fast);
}
.dressup-item:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
	border-color: var(--primary);
}
[data-theme="dark"] .dressup-item:hover {
	background-color: #3d3d3d;
}
.dressup-item.selected {
	border-color: var(--primary);
	box-shadow: 0 0 0 2px var(--primary);
}
.dressup-item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform var(--transition-fast);
}
.dressup-item:hover img {
	transform: scale(1.05);
}
/* Color Palette */
.color-palette {
	display: flex;
	gap: var(--space-sm);
	padding: var(--space-md);
	border-top: var(--border-width) solid var(--border-color);
	background-color: var(--card-bg);
}
.color-option {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 2px solid var(--border-color);
	cursor: pointer;
	transition: var(--transition-fast);
}
.color-option:hover {
	transform: scale(1.1);
}
.color-option.selected {
	border-color: var(--primary);
	box-shadow: 0 0 0 2px var(--primary);
}
/* Controls */
.dressup-controls {
	display: flex;
	gap: var(--space-md);
	padding: var(--space-md);
	border: var(--border-width) solid var(--border-color);
	border-radius: var(--border-radius);
	background-color: var(--card-bg);
	margin-bottom: var(--space-lg);
}
.dressup-button {
	padding: var(--space-sm) var(--space-md);
	border-radius: var(--border-radius);
	border: var(--border-width) solid var(--border-color);
	background-color: var(--surface);
	color: var(--text);
	font-family: var(--font-primary);
	font-weight: 500;
	cursor: pointer;
	transition: var(--transition-fast);
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	flex: 1;
	justify-content: center;
}
.dressup-button:hover {
	background-color: var(--primary);
	border-color: var(--primary);
	color: var(--surface);
}
.dressup-button.secondary {
	background-color: var(--background);
}
.dressup-button.secondary:hover {
	background-color: var(--secondary);
	border-color: var(--secondary);
	color: var(--surface);
}
/* Save/Load Section */
.dressup-saves {
	padding: var(--space-md);
	border-top: var(--border-width) solid var(--border-color);
	background-color: var(--card-bg);
	border-radius: var(--border-radius);
}
.dressup-saves h3 {
	margin-bottom: var(--space-md);
}
.save-slot {
	display: flex;
	align-items: center;
	gap: var(--space-md);
	padding: var(--space-sm);
	border-radius: var(--border-radius);
	border: var(--border-width) solid var(--border-color);
	margin-bottom: var(--space-sm);
	cursor: pointer;
	transition: var(--transition-fast);
	background-color: var(--surface);
}
.save-slot:last-child {
	margin-bottom: 0;
}
.save-slot:hover {
	border-color: var(--primary);
	background-color: rgba(255, 181, 232, 0.1);
}
.save-slot img {
	width: 48px;
	height: 48px;
	border-radius: var(--border-radius);
	object-fit: cover;
}
.save-info {
	flex: 1;
}
.save-name {
	font-weight: 500;
	color: var(--text);
	margin-bottom: var(--space-2xs);
}
.save-date {
	font-size: 0.875rem;
	color: var(--text-light);
}
/* Responsive Design */
@media (max-width: 768px) {
	.dressup-tabs {
		padding: var(--space-xs);
		gap: var(--space-xs);
	}
	.dressup-tab {
		padding: var(--space-xs) var(--space-sm);
		font-size: 0.875rem;
	}
	.dressup-grid {
		grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
		gap: var(--space-sm);
		padding: var(--space-sm);
	}
	.dressup-controls {
		flex-wrap: wrap;
	}
	.dressup-button {
		min-width: 120px;
	}
}
@media (max-width: 480px) {
	.dressup-tabs {
		padding: var(--space-xs);
	}
	.dressup-tab {
		padding: var(--space-xs) var(--space-sm);
		font-size: 0.875rem;
	}
	.dressup-tab i {
		font-size: 1rem;
	}
	.dressup-grid {
		grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
	}
	.color-palette {
		padding: var(--space-sm);
	}
	.color-option {
		width: 24px;
		height: 24px;
	}
	.dressup-button {
		padding: var(--space-xs) var(--space-sm);
		font-size: 0.875rem;
	}
}
@media (max-width: 768px) {
	.profile-container {
		flex-direction: column;
		padding: var(--space-sm);
	}
	.profile-sidebar {
		width: 100%;
		margin-bottom: var(--space-md);
	}
	.profile-main {
		width: 100%;
	}
	.profile-header {
		flex-direction: column;
		text-align: center;
		gap: var(--space-sm);
	}
	.profile-avatar {
		width: 120px;
		height: 120px;
	}
	.profile-info {
		align-items: center;
	}
	.profile-stats {
		flex-wrap: wrap;
		justify-content: center;
		gap: var(--space-sm);
	}
	.stat-item {
		min-width: 100px;
	}
	.profile-tabs {
		flex-wrap: wrap;
		gap: var(--space-xs);
	}
	.profile-tab {
		flex: 1;
		min-width: 120px;
		text-align: center;
		padding: var(--space-xs) var(--space-sm);
	}
	.profile-content {
		padding: var(--space-sm);
	}
	.inventory-grid {
		grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
		gap: var(--space-sm);
	}
	.inventory-item {
		padding: var(--space-xs);
	}
	.inventory-item img {
		width: 80px;
		height: 80px;
	}
}
@media (max-width: 480px) {
	.profile-container {
		padding: var(--space-xs);
	}
	.profile-avatar {
		width: 100px;
		height: 100px;
	}
	.profile-stats {
		gap: var(--space-xs);
	}
	.stat-item {
		min-width: 80px;
		font-size: 0.875rem;
	}
	.profile-tab {
		min-width: 100px;
		font-size: 0.875rem;
	}
	.inventory-grid {
		grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	}
	.inventory-item img {
		width: 60px;
		height: 60px;
	}
}
/* Event Tab Styles */
.dressup-tab-divider {
	width: 1px;
	height: 24px;
	background-color: var(--border-color);
	margin: 0 var(--space-xs);
	align-self: center;
}

.dressup-tab.event-tab {
	color: var(--accent-color);
	position: relative;
}

.dressup-tab.event-tab:hover {
	color: var(--primary);
	background-color: rgba(255, 181, 232, 0.15);
}

.dressup-tab.event-tab.active {
	color: var(--primary);
	background-color: rgba(255, 181, 232, 0.2);
}

.dressup-tab.event-tab i {
	color: gold;
}

.dressup-tab.event-tab::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background-color: gold;
	transition: width 0.2s ease;
}

.dressup-tab.event-tab:hover::after,
.dressup-tab.event-tab.active::after {
	width: 80%;
}

/* Responsive styles for event tabs */
@media (max-width: 768px) {
	.dressup-tab.event-tab {
		font-size: 0.8rem;
		padding: var(--space-xs) var(--space-sm);
	}
	
	.dressup-tab.event-tab i {
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.dressup-tab.event-tab {
		font-size: 0.75rem;
		padding: var(--space-xs);
	}
	
	.dressup-tab.event-tab i {
		font-size: 0.8rem;
	}
}

.dressup-item.event-item {
	position: relative;
	border: 1px solid var(--accent-color);
}

.dressup-item.event-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, transparent 0%, rgba(255, 215, 0, 0.1) 100%);
	pointer-events: none;
	border-radius: var(--border-radius);
}

.dressup-item.event-item .item-name {
	color: var(--accent-color);
}

.dressup-item.event-item .fa-star {
	color: gold;
	margin-right: 0.25rem;
}
