/*
Theme Name: Steam
Theme URI: https://launchgo.ru
Author: 
Author URI: https://launchgo.ru
Description:
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: steam
Tags:
*/

/* ========================================
   CSS Variables - Dark Theme
======================================== */
:root {
	--steam-bg: #1a1c21;
	--steam-accent: #e8732e;
	--steam-text: #cbcdd2;
	--steam-text-secondary: #8a8c91;
	--steam-border: #2a2c31;
	--font-primary: "Segoe UI", Whitney, "Helvetica Neue", Helvetica, Arial, sans-serif;
	--font-display: "Open Sans", sans-serif;
}

:root.platform-ios,
:root.platform-macos {
	--font-primary: system-ui, -apple-system, BlinkMacSystemFont, "Roboto", "Apple Color Emoji", "Helvetica Neue", sans-serif;
}

/* ========================================
   Reset & Base Styles
======================================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: var(--font-primary);
	background-color: var(--steam-bg);
	color: var(--steam-text);
	line-height: 1.6;
	font-size: 16px;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
}

a {
	color: var(--steam-accent);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--steam-accent);
	opacity: 0.8;
}

img {
	max-width: 100%;
	height: auto;
}

/* ========================================
   Typography
======================================== */
h1, h2, h3, h4, h5, h6 {
	margin-bottom: 1rem;
	line-height: 1.2;
	font-weight: 600;
	color: var(--steam-text);
	font-family: var(--font-display);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
	margin-bottom: 1rem;
}

/* ========================================
   Layout
======================================== */
.site-container {
	display: flex;
	flex-direction: column;
	background: var(--steam-bg);
	overflow-x: hidden;
	width: 100%;
}

.site-title {
	font-size: 2rem;
	margin: 0;
}

.site-title a {
	color: var(--steam-accent);
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 2px;
}

/* ========================================
   Navigation (Legacy - kept for compatibility)
======================================== */

/* ========================================
   Main Content
======================================== */
.site-main {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	width: 100%;
}

.content-area {
	background-color: var(--steam-bg);
	padding: 1rem;
}

/* Page content areas - use same container style */
.page-content .content-area,
.page-content .page-about {
	background-color: transparent;
	padding: 0;
}

/* ========================================
   Posts & Articles
======================================== */
.post {
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--steam-border);
}

.post:last-child {
	border-bottom: none;
}

.entry-title {
	color: var(--steam-text);
	margin-bottom: 1rem;
}

.entry-title a {
	color: var(--steam-text);
}

.entry-title a:hover {
	color: var(--steam-accent);
}

.entry-meta {
	color: var(--steam-text-secondary);
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.entry-content {
	margin-top: 1.5rem;
}

.more-link {
	display: inline-block;
	margin-top: 1rem;
	padding: 0.5rem 1.5rem;
	background: transparent;
	color: var(--steam-accent);
	border: 1px solid var(--steam-accent);
	font-weight: 600;
	transition: all 0.3s ease;
}

.more-link:hover {
	background: var(--steam-accent);
	color: var(--steam-bg);
}

/* ========================================
   Footer
======================================== */
.site-footer {
	background: var(--steam-bg);
	border-top: 1px solid var(--steam-border);
}

.footer-top {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 4rem;
	padding: 3rem 0;
}

.footer-company-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.footer-company-header__name {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--steam-accent);
	margin: 0;
}

.footer-company__description {
	color: var(--steam-text-secondary);
	line-height: 1.6;
	margin: 0;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.footer-links__header {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--steam-text);
	margin-bottom: 1rem;
}

.footer-links__item {
	display: block;
	color: var(--steam-text-secondary);
	margin-bottom: 0.75rem;
	transition: color 0.3s ease;
	font-size: 0.95rem;
}

.footer-links__item:hover {
	color: var(--steam-accent);
	opacity: 1;
}

.footer-bottom {
	border-top: 1px solid var(--steam-border);
	padding: 1.5rem 0;
}

.site-info {
	text-align: center;
	color: var(--steam-text-secondary);
	font-size: 0.9rem;
}

.site-info p {
	margin: 0;
}

/* Footer Responsive */
@media (max-width: 992px) {
	.footer-top {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-links {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.footer-links {
		grid-template-columns: 1fr;
	}

	.footer-top {
		padding: 2rem 0;
	}
}

/* ========================================
   Buttons
======================================== */
.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	background: transparent;
	color: var(--steam-accent);
	border: 1px solid var(--steam-accent);
	font-weight: 600;
	text-align: center;
	transition: all 0.3s ease;
}

.btn:hover {
	background: var(--steam-accent);
	color: var(--steam-bg);
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 768px) {
	.header-container {
		flex-direction: column;
		gap: 1rem;
	}
	
	.main-navigation ul {
		flex-direction: column;
		gap: 0.5rem;
		text-align: center;
	}
	
	.site-main {
		padding: 20px 15px;
	}
	
	h1 { font-size: 2rem; }
	h2 { font-size: 1.75rem; }
	h3 { font-size: 1.5rem; }
}

/* ========================================
   WordPress Core Styles
======================================== */
.alignleft {
	float: left;
	margin-right: 1.5rem;
	margin-bottom: 1rem;
}

.alignright {
	float: right;
	margin-left: 1.5rem;
	margin-bottom: 1rem;
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption {
	max-width: 100%;
}

.wp-caption-text {
	text-align: center;
	font-size: 0.9rem;
	color: var(--steam-text-secondary);
	margin-top: 0.5rem;
}

/* ========================================
   Modern Steam Header
======================================== */
.steam-header {
	background: var(--steam-bg);
	padding: 0;
	border-bottom: 1px solid var(--steam-border);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-footer-container,
.footer-wrapper {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
	box-sizing: border-box;
}

.steam-header-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 60px;
	gap: 20px;
	width: 100%;
}

.steam-header-logo {
	margin-right: 2rem;
	flex-shrink: 0;
}

.steam-header-logo img {
	height: 40px;
	width: auto;
	display: block;
}

.steam-header-left {
	display: flex;
	align-items: center;
	gap: 30px;
	flex: 1;
}

.header-balance {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	background: rgba(232, 115, 46, 0.1);
	border: 1px solid rgba(232, 115, 46, 0.2);
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	color: var(--steam-text);
	font-family: var(--font-primary);
}

.header-balance i {
	color: var(--steam-accent);
	font-size: 18px;
}

.header-balance .balance-label {
	color: var(--steam-text-secondary);
	font-weight: 500;
}

.header-balance .balance-amount {
	color: var(--steam-accent);
	font-weight: 700;
	font-family: 'Courier New', monospace;
}

.steam-header-right {
	display: flex;
	align-items: center;
	gap: 10px;
}

/* Navigation */
.steam-nav {
	flex: 1;
}

.steam-nav-list {
	list-style: none;
	display: flex;
	gap: 30px;
	margin: 0;
	padding: 0;
}

.steam-nav-item a {
	color: var(--steam-text);
	font-weight: 500;
	font-size: 15px;
	font-family: var(--font-primary);
	padding: 20px 0;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	position: relative;
	transition: color 0.3s ease;
}

.steam-nav-item a i {
	font-size: 18px;
}

.steam-nav-item a:hover {
	color: var(--steam-accent);
}

.steam-nav-item.active a {
	color: var(--steam-accent);
}

.steam-nav-item.active a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--steam-accent);
}

/* Buttons */
.steam-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	font-family: var(--font-primary);
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.steam-btn svg,
.steam-btn i {
	flex-shrink: 0;
	font-size: 16px;
}

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

/* Button Variants */
.steam-btn-primary {
	background: var(--steam-accent);
	color: #fff;
	font-weight: 600;
}

.steam-btn-primary:hover:not(:disabled) {
	background: var(--steam-accent);
	opacity: 0.9;
	color: #fff;
}

.steam-btn-secondary {
	background-color: transparent;
	color: var(--steam-text);
	border: 1px solid var(--steam-border);
}

.steam-btn-secondary:hover:not(:disabled) {
	border-color: var(--steam-accent);
	color: var(--steam-accent);
}

.steam-btn-icon {
	background: transparent;
	color: var(--steam-accent);
	width: 44px;
	height: 44px;
	border-radius: 0;
	border: 1px solid var(--steam-accent);
	padding: 0;
	justify-content: center;
}

.steam-btn-icon:hover:not(:disabled) {
	background: var(--steam-accent);
	color: #fff;
}

.steam-btn-cart {
	background-color: transparent;
	color: var(--steam-text);
	border: 1px solid var(--steam-border);
	padding: 8px 12px;
}

.steam-btn-cart:hover:not(:disabled) {
	border-color: var(--steam-accent);
	color: var(--steam-accent);
}

/* Specific Button Styles */
.steam-projects-btn svg {
	width: 16px;
	height: 16px;
}

.steam-currency-btn svg,
.steam-lang-btn svg {
	width: 6px;
	height: 5px;
	margin-left: 4px;
}

.steam-flag {
	font-size: 18px;
	line-height: 1;
}

.steam-login-btn {
	padding: 10px 20px;
	border: 1px solid transparent;
}

.steam-login-btn:hover {
	opacity: 0.9;
}

.steam-login-btn svg {
	width: 16px;
	height: 16px;
}

.steam-cart-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ========================================
   Responsive Header
======================================== */
@media (max-width: 1200px) {
	.steam-nav-list {
		gap: 20px;
	}
	
	.steam-projects-btn span,
	.steam-login-btn span {
		display: none;
	}
	
	.steam-projects-btn,
	.steam-login-btn {
		width: 44px;
		height: 44px;
		padding: 0;
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.steam-header-row {
		flex-wrap: wrap;
		padding: 10px 0;
	}
	
	.steam-header-left {
		flex: 0 0 100%;
		justify-content: space-between;
		gap: 15px;
		flex-wrap: wrap;
	}
	
	.header-balance {
		padding: 8px 12px;
		font-size: 12px;
		margin-right: 8px;
	}
	
	.header-balance .balance-label {
		display: none;
	}
	
	.steam-nav {
		order: 3;
		flex: 0 0 100%;
		overflow-x: auto;
	}
	
	.steam-nav-list {
		gap: 15px;
		padding: 10px 0;
	}
	
	.steam-header-right {
		gap: 8px;
	}
	
	.steam-currency-btn,
	.steam-lang-btn {
		padding: 8px 12px;
	}
	
	.steam-cart-icon svg {
		width: 24px;
		height: 24px;
	}
}

@media (max-width: 480px) {
	.steam-currency-btn span:first-child,
	.steam-lang-btn .steam-flag {
		display: none;
	}
}

/* ========================================
   Custom Pages Styles
======================================== */

/* About Page */
.page-about {
	max-width: 100%;
}

.page-about .about-section {
	margin-bottom: 3rem;
	padding-bottom: 2rem;
}

.page-about .about-section:not(:last-child) {
	border-bottom: 1px solid var(--steam-border);
}

.page-about h2 {
	color: var(--steam-accent);
	margin-bottom: 1.5rem;
	font-size: 2rem;
	font-family: var(--font-display);
}

.about-content,
.about-story {
	color: var(--steam-text);
	line-height: 1.8;
	font-size: 16px;
}

.about-content p,
.about-story p {
	margin-bottom: 1rem;
	color: var(--steam-text-secondary);
}

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

.feature-item {
	background: var(--steam-border);
	padding: 24px;
	border-radius: 8px;
	border: 1px solid var(--steam-border);
	transition: all 0.3s ease;
}

.feature-item:hover {
	border-color: var(--steam-accent);
	background: rgba(232, 115, 46, 0.05);
	transform: translateY(-2px);
}

.feature-item h3 {
	font-size: 1.3rem;
	margin-bottom: 12px;
	color: var(--steam-text);
	font-family: var(--font-display);
}

.feature-item p {
	color: var(--steam-text-secondary);
	line-height: 1.7;
	margin: 0;
}

/* Contacts Page */
.page-contacts {
	max-width: 100%;
}

.contacts-content {
	color: var(--steam-text);
	line-height: 1.8;
	font-size: 16px;
}

.contacts-content h2,
.contacts-content h3 {
	color: var(--steam-accent);
	margin-top: 2rem;
	margin-bottom: 1rem;
	font-family: var(--font-display);
}

.contacts-content h2 {
	font-size: 1.8rem;
}

.contacts-content h3 {
	font-size: 1.4rem;
}

.contacts-content p {
	color: var(--steam-text-secondary);
	margin-bottom: 1rem;
}

.contacts-content a {
	color: var(--steam-accent);
	text-decoration: none;
	transition: color 0.3s;
}

.contacts-content a:hover {
	color: var(--steam-text);
	opacity: 0.8;
}

.contacts-content ul,
.contacts-content ol {
	margin-left: 20px;
	margin-bottom: 1rem;
	color: var(--steam-text-secondary);
}

.contacts-content li {
	margin-bottom: 0.5rem;
}

/* FAQ Page */
.faq-intro {
	font-size: 1.1rem;
	margin-bottom: 3rem;
	padding: 1.5rem;
	background: transparent;
	border-left: 2px solid var(--steam-accent);
}

.faq-section {
	margin-bottom: 3rem;
}

.faq-section h2 {
	color: var(--steam-accent);
	margin-bottom: 2rem;
	font-size: 1.8rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid var(--steam-border);
}

/* Old FAQ item styles removed - using new FAQ design */

.page-header {
	margin-bottom: 30px;
}

.page-header h1 {
	font-size: 2.5rem;
	margin: 20px 0;
	color: var(--steam-text);
	font-family: var(--font-display);
}

.page-content {
	margin-top: 30px;
	width: 100%;
}

/* Responsive for custom pages */
@media (max-width: 768px) {
	.features-grid {
		grid-template-columns: 1fr;
	}
	
	.page-header h1 {
		font-size: 2rem;
	}
	
	.faq-section h2,
	.page-about h2,
	.contact-form-section h2 {
		font-size: 1.5rem;
	}
	
	.page-about .about-section {
		margin-bottom: 2rem;
		padding-bottom: 1.5rem;
	}
	
	.feature-item {
		padding: 20px;
	}
}

/* ========================================
   New FAQ Page Design
======================================== */
.layout-container {
	width: 100%;
	padding: 20px 0;
}

.page-header .bread {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--steam-text-secondary);
	margin-bottom: 20px;
	padding: 0;
}

.bread a {
	padding: 4px 8px;
	border-radius: 4px;
	transition: all 0.3s;
}

.bread a:hover {
	background: rgba(232, 115, 46, 0.1);
	color: var(--steam-accent);
}

.breadcrumb-home-icon,
.breadcrumb-icon {
	flex-shrink: 0;
}

.breadcrumb-home-icon {
	font-size: 16px;
}

.breadcrumb-icon {
	font-size: 12px;
}


.faq-container {
	display: grid;
	grid-template-columns: 350px 1fr;
	gap: 40px;
	margin-top: 30px;
}

.faq-navigation {
	position: sticky;
	top: 20px;
	height: fit-content;
}

.faq-categories-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	background: var(--steam-border);
	border-radius: 8px;
	overflow: hidden;
}

.faq-item {
	background: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	transition: all 0.3s ease;
	cursor: default;
}

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

.faq-item:hover {
	border-left: none;
}

.faq-category {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	cursor: pointer !important;
	color: var(--steam-text);
	font-weight: 500;
	font-family: var(--font-primary);
	transition: all 0.3s;
	position: relative;
	border-radius: 6px;
	margin: 4px;
}

.faq-category:hover {
	background: rgba(232, 115, 46, 0.15);
	transform: translateY(-1px);
}

.faq-category * {
	cursor: pointer !important;
}

.faq-category__icon {
	font-size: 20px;
	flex-shrink: 0;
	color: var(--steam-text-secondary);
}

.faq-category__arrow-icon {
	margin-left: auto;
	transition: transform 0.3s;
	color: var(--steam-text-secondary);
	font-size: 14px;
}

.faq-item_opened .faq-category__arrow-icon {
	transform: rotate(180deg);
}

.faq-questions-list {
	list-style: none;
	padding: 0 16px 0;
	margin: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item_opened .faq-questions-list {
	max-height: 1000px;
	padding: 0 16px 16px;
}

.faq-questions-list__item {
	margin-bottom: 8px;
}

.faq-questions-list__item-link {
	display: block;
	padding: 8px 12px;
	color: var(--steam-text-secondary);
	font-size: 14px;
	font-family: var(--font-primary);
	border-radius: 6px;
	transition: all 0.3s;
	cursor: pointer;
}

.faq-questions-list__item-link:hover {
	background: rgba(232, 115, 46, 0.12);
	color: var(--steam-text);
	border-radius: 6px;
}

.faq-questions-list__item-link_active {
	background: rgba(232, 115, 46, 0.18);
	color: var(--steam-accent);
	border-radius: 6px;
}

.faq__content {
	background: var(--steam-border);
	border-radius: 8px;
	padding: 30px;
	min-height: 400px;
}

.answer-section {
	display: none;
}

.answer-section.active {
	display: block;
}

.answer-section__text {
	color: var(--steam-text);
	line-height: 1.8;
	font-size: 16px;
}

.answer-section__text a {
	color: var(--steam-accent);
}

.answer-section__text ul {
	list-style: disc;
	margin-left: 20px;
	color: var(--steam-text-secondary);
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 10px;
}

.faq__back-button {
	display: none;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	background: transparent;
	border: 1px solid var(--steam-border);
	border-radius: 6px;
	color: var(--steam-text);
	cursor: pointer;
	margin-bottom: 20px;
	transition: all 0.3s;
}

.faq__back-button:hover {
	background: var(--steam-border);
}

.faq__back-button-icon {
	transform: rotate(90deg);
}

@media (max-width: 1024px) {
	.faq-container {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.faq-navigation {
		position: static;
	}
}

/* My Account Page */
.page-my-account {
	padding: 0;
}

.account-wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.account-profile-card,
.account-balance-card,
.account-transactions-card,
.account-steam-connect-card,
.account-steam-info-card,
.account-actions-card {
	background: var(--steam-border);
	border-radius: 8px;
	padding: 30px;
	margin-bottom: 20px;
}

.account-profile-header {
	display: flex;
	align-items: flex-start;
	gap: 25px;
}

.account-avatar-wrapper {
	position: relative;
	flex-shrink: 0;
}

.account-avatar {
	position: relative;
	border-radius: 50%;
	width: 120px;
	height: 120px;
	overflow: hidden;
	border: 3px solid var(--steam-accent);
}

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

.account-avatar-wrapper .type-badge {
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	font-size: 11px;
	padding: 4px 10px;
	border-radius: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 1;
}

.account-info {
	flex: 1;
}

.account-info h2 {
	margin: 0 0 12px 0;
	color: var(--steam-text);
	font-family: var(--font-display);
	font-size: 1.8rem;
}

.account-email,
.account-steam-name {
	margin: 8px 0;
	color: var(--steam-text-secondary);
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.account-email i,
.account-steam-name i {
	font-size: 16px;
	color: var(--steam-accent);
}

.type-badge {
	display: inline-block;
	padding: 6px 12px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}

.type-badge.type-buyer {
	background: rgba(232, 115, 46, 0.2);
	color: var(--steam-accent);
	border: 1px solid rgba(232, 115, 46, 0.3);
}

.type-badge.type-seller {
	background: rgba(232, 115, 46, 0.2);
	color: var(--steam-accent);
	border: 1px solid rgba(232, 115, 46, 0.3);
}

/* Steam Connect Card */
.account-steam-connect-card {
	background: linear-gradient(135deg, rgba(27, 40, 56, 0.8) 0%, var(--steam-border) 100%);
	border: 1px solid rgba(232, 115, 46, 0.2);
	position: relative;
	overflow: hidden;
}

.account-steam-connect-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--steam-accent) 0%, rgba(232, 115, 46, 0.5) 100%);
}

.steam-connect-header {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 25px;
}

.steam-icon-large {
	width: 64px;
	height: 64px;
	background: rgba(232, 115, 46, 0.15);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.steam-icon-large i {
	font-size: 32px;
	color: var(--steam-accent);
}

.steam-connect-info {
	flex: 1;
}

.steam-connect-info h3 {
	margin: 0 0 8px 0;
	color: var(--steam-text);
	font-family: var(--font-display);
	font-size: 1.5rem;
}

.steam-connect-info p {
	margin: 0;
	color: var(--steam-text-secondary);
	font-size: 14px;
	line-height: 1.6;
}

.steam-connect-action {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.steam-connect-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 14px 24px;
	background: #1b2838;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s;
	cursor: pointer;
	font-family: var(--font-primary);
}

.steam-connect-btn:hover {
	background: #243447;
	border-color: rgba(232, 115, 46, 0.5);
	transform: translateY(-2px);
}

.steam-connect-btn i {
	font-size: 20px;
}

.steam-connect-note {
	margin: 0;
	color: var(--steam-text-secondary);
	font-size: 12px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.steam-connect-note i {
	color: var(--steam-accent);
	font-size: 14px;
}

/* Steam Info Card */
.account-steam-info-card {
	border: 1px solid rgba(232, 115, 46, 0.2);
	position: relative;
}

.account-steam-info-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--steam-accent);
}

.steam-info-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 25px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.steam-status {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--steam-text);
	font-weight: 600;
	font-size: 16px;
}

.steam-status i {
	color: #10b981;
	font-size: 20px;
}

.steam-profile-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	background: rgba(232, 115, 46, 0.1);
	color: var(--steam-accent);
	border: 1px solid rgba(232, 115, 46, 0.3);
	border-radius: 6px;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s;
}

.steam-profile-link:hover {
	background: rgba(232, 115, 46, 0.2);
	border-color: rgba(232, 115, 46, 0.5);
}

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

.steam-detail-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px;
	background: rgba(255, 255, 255, 0.02);
	border-radius: 6px;
}

.steam-detail-label {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--steam-text-secondary);
	font-size: 14px;
}

.steam-detail-label i {
	color: var(--steam-accent);
	font-size: 16px;
}

.steam-detail-value {
	color: var(--steam-text);
	font-size: 14px;
	font-weight: 500;
	font-family: 'Courier New', monospace;
}

.steam-seller-notice {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	background: rgba(232, 115, 46, 0.1);
	border-left: 3px solid var(--steam-accent);
	border-radius: 6px;
	color: var(--steam-text);
	font-size: 14px;
	margin-top: 10px;
}

.steam-seller-notice i {
	color: var(--steam-accent);
	font-size: 18px;
}

/* Account Actions */
.account-actions-card {
	padding: 20px;
	display: flex;
	justify-content: flex-end;
}

.account-logout-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: transparent;
	border: 1px solid var(--steam-border);
	color: var(--steam-text-secondary);
	border-radius: 6px;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s;
	cursor: pointer;
}

.account-logout-btn:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: var(--steam-accent);
	color: var(--steam-accent);
}

@media (max-width: 768px) {
	.page-header h1 {
		font-size: 2rem;
	}
	
	.faq__content {
		padding: 20px;
	}
	
	.faq-container {
		grid-template-columns: 1fr;
	}
	
	.account-profile-card,
	.account-steam-connect-card,
	.account-steam-info-card,
	.account-actions-card {
		padding: 20px;
	}
	
	.account-profile-header {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	
	.account-avatar-wrapper {
		margin-bottom: 15px;
	}
	
	.steam-connect-header {
		flex-direction: column;
		text-align: center;
	}
	
	.steam-icon-large {
		align-self: center;
	}
	
	.steam-info-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}
	
	.steam-detail-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
}

/* Skins Catalog */
.catalog-description {
	margin: 10px 0 0 0;
	color: var(--steam-text-secondary);
	font-size: 14px;
}

.skins-catalog {
	padding: 0;
}

.skins-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

/* Rarity Colors */
.skin-card.rarity-1 {
	border-left: 3px solid #b0c3d9;
}

.skin-card.rarity-2 {
	border-left: 3px solid #5e98d9;
}

.skin-card.rarity-3 {
	border-left: 3px solid #4b69ff;
}

.skin-card.rarity-4 {
	border-left: 3px solid #8847ff;
}

.skin-card.rarity-5 {
	border-left: 3px solid #d32ce6;
}

.skin-card.rarity-6 {
	border-left: 3px solid #eb4b4b;
}

.skin-card {
	background: var(--steam-border);
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.3s, border-color 0.3s;
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-left-width: 3px;
}

.skin-card:hover {
	transform: translateY(-4px);
	border-color: rgba(232, 115, 46, 0.3);
	border-left-color: var(--steam-accent);
}

.skin-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.skin-card-image {
	position: relative;
	width: 100%;
	aspect-ratio: 1;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.3);
}

.skin-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.skin-card:hover .skin-card-image img {
	transform: scale(1.05);
}

.skin-card-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.05);
}

.skin-card-placeholder i {
	font-size: 48px;
	color: var(--steam-text-secondary);
	opacity: 0.5;
}

.skin-exterior {
	position: absolute;
	bottom: 8px;
	left: 8px;
	padding: 4px 8px;
	background: rgba(0, 0, 0, 0.75);
	border-radius: 4px;
	font-size: 11px;
	font-weight: 700;
	color: var(--steam-text);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	pointer-events: none;
}

.skin-steam-icon {
	position: absolute;
	top: 8px;
	right: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: rgba(0, 0, 0, 0.75);
	border-radius: 4px;
	pointer-events: none;
}

.skin-steam-icon i {
	font-size: 16px;
	color: #ffffff;
}

.skin-popularity {
	position: absolute;
	top: 8px;
	left: 8px;
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 4px 8px;
	background: rgba(0, 0, 0, 0.75);
	border-radius: 4px;
	font-size: 11px;
	font-weight: 600;
	color: #adaeaf;
	pointer-events: none;
}

.skin-popularity i {
	font-size: 12px;
}

.skin-card-info {
	padding: 12px;
}

.skin-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
	gap: 8px;
}

.skin-exterior-badge {
	padding: 3px 6px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 3px;
	font-size: 10px;
	font-weight: 700;
	color: var(--steam-text);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.skin-steam-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	background: rgba(232, 115, 46, 0.2);
	border-radius: 3px;
	flex-shrink: 0;
}

.skin-steam-badge i {
	font-size: 12px;
	color: var(--steam-accent);
}

.skin-card-price-block {
	margin-bottom: 8px;
}

.skin-price {
	display: flex;
	align-items: center;
	gap: 8px;
}

.price-amount {
	color: var(--steam-text);
	font-size: 16px;
	font-weight: 700;
	font-family: 'Courier New', monospace;
}

.price-discount {
	color: var(--steam-accent);
	font-size: 12px;
	font-weight: 700;
}

.skin-card-name {
	margin: 0;
	color: var(--steam-text);
	font-size: 13px;
	font-weight: 500;
	font-family: var(--font-display);
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.skins-empty {
	text-align: center;
	padding: 60px 20px;
	color: var(--steam-text-secondary);
}

.skins-empty i {
	font-size: 64px;
	margin-bottom: 20px;
	opacity: 0.5;
}

.skins-empty p {
	margin: 0 0 30px 0;
	font-size: 16px;
}

@media (max-width: 768px) {
	.skins-grid {
		grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
		gap: 15px;
	}
	
	.skin-card-info {
		padding: 10px;
	}
	
	.skin-card-name {
		font-size: 12px;
	}
	
	.price-amount {
		font-size: 14px;
	}
	
	.skin-exterior-badge {
		font-size: 9px;
		padding: 2px 5px;
	}
	
	.skin-card-overlay {
		padding: 6px;
	}
	
	.skin-exterior,
	.skin-popularity {
		font-size: 10px;
		padding: 3px 6px;
	}
}

/* Steam Inventory Section */
.account-inventory-card {
	background: var(--steam-border);
	border-radius: 8px;
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.inventory-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 25px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.inventory-header h3 {
	margin: 0;
	color: var(--steam-text);
	font-family: var(--font-display);
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	gap: 12px;
}

.inventory-header h3 i {
	color: var(--steam-accent);
	font-size: 24px;
}

.inventory-count {
	color: var(--steam-text-secondary);
	font-size: 14px;
	font-weight: 500;
}

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

.inventory-item {
	background: rgba(255, 255, 255, 0.02);
	border-radius: 6px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-left-width: 3px;
	transition: transform 0.3s, border-color 0.3s;
	cursor: pointer;
}

.inventory-item:hover {
	transform: translateY(-2px);
	border-color: rgba(232, 115, 46, 0.3);
	border-left-color: var(--steam-accent);
}

.inventory-item.rarity-1 {
	border-left-color: #b0c3d9;
}

.inventory-item.rarity-2 {
	border-left-color: #5e98d9;
}

.inventory-item.rarity-3 {
	border-left-color: #4b69ff;
}

.inventory-item.rarity-4 {
	border-left-color: #8847ff;
}

.inventory-item.rarity-5 {
	border-left-color: #d32ce6;
}

.inventory-item.rarity-6 {
	border-left-color: #eb4b4b;
}

.inventory-item-image {
	position: relative;
	width: 100%;
	aspect-ratio: 1;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.3);
}

.inventory-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.inventory-item-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.05);
}

.inventory-item-placeholder i {
	font-size: 32px;
	color: var(--steam-text-secondary);
	opacity: 0.5;
}

.inventory-exterior {
	position: absolute;
	bottom: 6px;
	left: 6px;
	padding: 3px 6px;
	background: rgba(0, 0, 0, 0.75);
	border-radius: 3px;
	font-size: 10px;
	font-weight: 700;
	color: var(--steam-text);
	text-transform: uppercase;
}

.inventory-item-info {
	padding: 10px;
}

.inventory-item-name {
	color: var(--steam-text);
	font-size: 12px;
	font-weight: 600;
	font-family: var(--font-display);
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 4px;
}

.inventory-item-type {
	color: var(--steam-text-secondary);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.inventory-error {
	padding: 30px;
	text-align: center;
	color: var(--steam-text-secondary);
}

.inventory-error i {
	font-size: 48px;
	color: var(--steam-accent);
	margin-bottom: 15px;
	opacity: 0.7;
}

.inventory-error p {
	margin: 10px 0;
}

.inventory-error-hint {
	font-size: 13px;
	margin-top: 15px;
}

.inventory-error-hint a {
	color: var(--steam-accent);
	text-decoration: none;
	transition: opacity 0.3s;
}

.inventory-error-hint a:hover {
	opacity: 0.8;
}

.inventory-empty,
.inventory-loading {
	padding: 40px;
	text-align: center;
	color: var(--steam-text-secondary);
}

.inventory-empty i,
.inventory-loading i {
	font-size: 48px;
	margin-bottom: 15px;
	opacity: 0.5;
}

.inventory-more {
	margin-top: 25px;
	padding-top: 25px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	text-align: center;
}

.inventory-more p {
	margin: 0 0 15px 0;
	color: var(--steam-text-secondary);
	font-size: 14px;
}

@media (max-width: 768px) {
	.inventory-grid {
		grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
		gap: 12px;
	}
	
	.account-inventory-card {
		padding: 20px;
	}
	
	.inventory-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	
	.inventory-item-info {
		padding: 8px;
	}
	
	.inventory-item-name {
		font-size: 11px;
	}
}

/* Inventory Item Clickable */
.inventory-item-clickable {
	cursor: pointer;
}

.inventory-item-clickable:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 12px rgba(232, 115, 46, 0.2);
}

.inventory-listed-badge {
	position: absolute;
	top: 6px;
	right: 6px;
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 4px 8px;
	background: rgba(76, 175, 80, 0.9);
	border-radius: 4px;
	font-size: 10px;
	font-weight: 700;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 2;
}

.inventory-listed-badge i {
	font-size: 12px;
}

.inventory-item-price {
	color: var(--steam-accent);
	font-size: 11px;
	font-weight: 700;
	margin-top: 4px;
}

/* Skin Modal */
.skin-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}

.skin-modal.active {
	opacity: 1;
	visibility: visible;
}

.skin-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(4px);
}

.skin-modal-content {
	position: relative;
	width: 90%;
	max-width: 600px;
	max-height: 90vh;
	background: var(--steam-bg);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	overflow: hidden;
	transform: scale(0.9);
	transition: transform 0.3s;
}

.skin-modal.active .skin-modal-content {
	transform: scale(1);
}

.skin-modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	border-radius: 50%;
	color: var(--steam-text);
	cursor: pointer;
	transition: all 0.3s;
	z-index: 10;
}

.skin-modal-close:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: rotate(90deg);
}

.skin-modal-close i {
	font-size: 18px;
}

.skin-modal-body {
	display: flex;
	flex-direction: column;
	max-height: 90vh;
	overflow-y: auto;
}

.skin-modal-image-wrapper {
	width: 100%;
	aspect-ratio: 1;
	background: rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.skin-modal-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.skin-modal-info {
	padding: 25px;
}

.skin-modal-name {
	margin: 0 0 20px 0;
	color: var(--steam-text);
	font-size: 22px;
	font-weight: 700;
	font-family: var(--font-display);
}

.skin-modal-details {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.skin-modal-detail-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.skin-modal-label {
	color: var(--steam-text-secondary);
	font-size: 14px;
}

.skin-modal-value {
	color: var(--steam-text);
	font-size: 14px;
	font-weight: 600;
}

.skin-modal-price {
	color: var(--steam-accent);
	font-size: 18px;
	font-weight: 700;
}

.skin-modal-sale-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

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

.skin-modal-form-group label {
	color: var(--steam-text);
	font-size: 14px;
	font-weight: 600;
}

.skin-modal-price-input {
	padding: 12px 16px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	color: var(--steam-text);
	font-size: 16px;
	font-weight: 600;
	transition: all 0.3s;
}

.skin-modal-price-input:focus {
	outline: none;
	border-color: var(--steam-accent);
	background: rgba(255, 255, 255, 0.08);
}

.skin-modal-actions {
	display: flex;
	gap: 12px;
}

.skin-modal-btn {
	flex: 1;
	padding: 14px 20px;
	border: none;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.skin-modal-btn-primary {
	background: var(--steam-accent);
	color: #ffffff;
}

.skin-modal-btn-primary:hover:not(:disabled) {
	background: #d4772f;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(232, 115, 46, 0.3);
}

.skin-modal-btn-danger {
	background: rgba(239, 83, 80, 0.2);
	color: #ef5350;
	border: 1px solid rgba(239, 83, 80, 0.3);
}

.skin-modal-btn-danger:hover:not(:disabled) {
	background: rgba(239, 83, 80, 0.3);
	border-color: rgba(239, 83, 80, 0.5);
}

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

.skin-modal-message {
	padding: 12px 16px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	display: none;
}

.skin-modal-message.success {
	background: rgba(76, 175, 80, 0.2);
	color: #4caf50;
	border: 1px solid rgba(76, 175, 80, 0.3);
}

.skin-modal-message.error {
	background: rgba(239, 83, 80, 0.2);
	color: #ef5350;
	border: 1px solid rgba(239, 83, 80, 0.3);
}

@media (max-width: 768px) {
	.skin-modal-content {
		width: 95%;
		max-height: 95vh;
	}
	
	.skin-modal-info {
		padding: 20px;
	}
	
	.skin-modal-name {
		font-size: 18px;
	}
	
	.skin-modal-actions {
		flex-direction: column;
	}
	
	.skin-modal-btn {
		width: 100%;
	}
}

/* Skin Purchase Page Styles */
.page-skin-purchase {
	padding: 30px 0;
}

.skin-purchase-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
}

.skin-purchase-left {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.skin-purchase-image-section {
	background: var(--steam-border);
	border-radius: 12px;
	padding: 30px;
	overflow: hidden;
}

.skin-purchase-image-wrapper {
	width: 100%;
	aspect-ratio: 1;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.skin-purchase-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.skin-purchase-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.05);
}

.skin-purchase-placeholder i {
	font-size: 80px;
	color: var(--steam-text-secondary);
	opacity: 0.5;
}

.skin-purchase-description {
	background: var(--steam-border);
	border-radius: 12px;
	padding: 25px;
}

.skin-purchase-description h3 {
	margin: 0 0 15px 0;
	color: var(--steam-text);
	font-size: 18px;
	font-weight: 700;
}

.skin-purchase-description p {
	margin: 0;
	color: var(--steam-text-secondary);
	line-height: 1.6;
}

.skin-purchase-right {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.skin-purchase-info-card {
	background: var(--steam-border);
	border-radius: 12px;
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.skin-purchase-name {
	margin: 0 0 25px 0;
	color: var(--steam-text);
	font-size: 28px;
	font-weight: 700;
	font-family: var(--font-display);
}

.skin-purchase-specs {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.skin-purchase-spec-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.skin-purchase-spec-item:last-child {
	border-bottom: none;
}

.skin-spec-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(232, 115, 46, 0.15);
	border-radius: 8px;
	color: var(--steam-accent);
	font-size: 18px;
	flex-shrink: 0;
}

.skin-spec-content {
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex: 1;
}

.skin-spec-label {
	color: var(--steam-text-secondary);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.skin-spec-value {
	color: var(--steam-text);
	font-size: 16px;
	font-weight: 600;
}

.skin-purchase-payment-card {
	background: var(--steam-border);
	border-radius: 12px;
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: sticky;
	top: 100px;
}

.skin-purchase-price-section {
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.skin-purchase-price-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.skin-price-label {
	color: var(--steam-text-secondary);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.skin-price-display {
	display: flex;
	align-items: baseline;
	gap: 4px;
}

.skin-price-currency {
	color: var(--steam-accent);
	font-size: 24px;
	font-weight: 700;
}

.skin-price-amount {
	color: var(--steam-text);
	font-size: 36px;
	font-weight: 700;
	font-family: var(--font-display);
}

.skin-purchase-balance-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 16px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	margin-bottom: 20px;
}

.balance-label {
	color: var(--steam-text-secondary);
	font-size: 14px;
}

.balance-value {
	color: var(--steam-text);
	font-size: 16px;
	font-weight: 700;
	color: var(--steam-accent);
}

.skin-purchase-btn {
	width: 100%;
	padding: 16px 24px;
	background: var(--steam-accent);
	border: none;
	border-radius: 8px;
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-decoration: none;
}

.skin-purchase-btn:hover:not(:disabled):not(.disabled) {
	background: #d4772f;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(232, 115, 46, 0.3);
}

.skin-purchase-btn:disabled,
.skin-purchase-btn.disabled {
	opacity: 0.6;
	cursor: not-allowed;
	background: var(--steam-text-secondary);
}

.skin-purchase-btn-purchased {
	background: rgba(76, 175, 80, 0.2);
	color: #4caf50;
	border: 1px solid rgba(76, 175, 80, 0.3);
}

.skin-purchase-insufficient-funds {
	padding: 16px;
	background: rgba(239, 83, 80, 0.15);
	border: 1px solid rgba(239, 83, 80, 0.3);
	border-radius: 8px;
	margin-bottom: 20px;
	text-align: center;
}

.skin-purchase-insufficient-funds i {
	font-size: 24px;
	color: #ef5350;
	margin-bottom: 8px;
	display: block;
}

.skin-purchase-insufficient-funds p {
	margin: 0 0 12px 0;
	color: #ef5350;
	font-size: 14px;
	font-weight: 600;
}

.skin-topup-link {
	color: var(--steam-accent);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: opacity 0.3s;
}

.skin-topup-link:hover {
	opacity: 0.8;
}

.skin-purchase-own-item {
	padding: 30px;
	text-align: center;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
}

.skin-purchase-own-item i {
	font-size: 48px;
	color: var(--steam-accent);
	margin-bottom: 15px;
	display: block;
}

.skin-purchase-own-item p {
	margin: 0 0 20px 0;
	color: var(--steam-text);
	font-size: 16px;
	font-weight: 600;
}

.skin-purchase-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: var(--steam-accent);
	border-radius: 6px;
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s;
}

.skin-purchase-link:hover {
	background: #d4772f;
	transform: translateY(-2px);
}

.skin-purchase-login-required {
	text-align: center;
}

.skin-purchase-login-required p {
	margin: 0 0 20px 0;
	color: var(--steam-text);
	font-size: 15px;
}

.skin-purchase-unavailable {
	padding: 30px;
	text-align: center;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
}

.skin-purchase-unavailable i {
	font-size: 48px;
	color: #ef5350;
	margin-bottom: 15px;
	display: block;
}

.skin-purchase-unavailable i.bi-check-circle-fill {
	color: #4caf50;
}

.skin-purchase-unavailable p {
	margin: 0 0 20px 0;
	color: var(--steam-text);
	font-size: 16px;
	font-weight: 600;
}

.purchase-message {
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	margin-top: 15px;
	display: none;
}

.purchase-message.success {
	background: rgba(76, 175, 80, 0.2);
	color: #4caf50;
	border: 1px solid rgba(76, 175, 80, 0.3);
}

.purchase-message.error {
	background: rgba(239, 83, 80, 0.2);
	color: #ef5350;
	border: 1px solid rgba(239, 83, 80, 0.3);
}

/* Account Balance Card Styles */
.account-balance-card {
	border: 1px solid rgba(232, 115, 46, 0.2);
}

.balance-header {
	margin-bottom: 20px;
}

.balance-header h3 {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--steam-text);
	font-size: 20px;
	font-weight: 700;
}

.balance-header h3 i {
	color: var(--steam-accent);
	font-size: 24px;
}

.balance-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.balance-amount {
	display: flex;
	align-items: baseline;
	gap: 4px;
}

.balance-currency {
	color: var(--steam-accent);
	font-size: 28px;
	font-weight: 700;
}

.balance-value {
	color: var(--steam-text);
	font-size: 42px;
	font-weight: 700;
	font-family: var(--font-display);
}

.balance-actions {
	display: flex;
	gap: 12px;
}

.balance-topup-btn {
	padding: 12px 24px;
	background: var(--steam-accent);
	border: none;
	border-radius: 6px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	gap: 8px;
}

.balance-topup-btn:hover {
	background: #d4772f;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(232, 115, 46, 0.3);
}

.balance-message {
	margin-top: 15px;
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 10px;
}

.balance-message-success {
	background: rgba(76, 175, 80, 0.2);
	color: #4caf50;
	border: 1px solid rgba(76, 175, 80, 0.3);
}

.balance-message-error {
	background: rgba(239, 83, 80, 0.2);
	color: #ef5350;
	border: 1px solid rgba(239, 83, 80, 0.3);
}

.balance-message i {
	font-size: 18px;
}

/* Transaction History Styles */
.account-transactions-card {
	max-height: 600px;
	display: flex;
	flex-direction: column;
}

.transactions-header {
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.transactions-header h3 {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--steam-text);
	font-size: 20px;
	font-weight: 700;
}

.transactions-header h3 i {
	color: var(--steam-accent);
	font-size: 22px;
}

.transactions-content {
	flex: 1;
	overflow-y: auto;
	min-height: 0;
	padding-right: 5px;
}

.transactions-content::-webkit-scrollbar {
	width: 6px;
}

.transactions-content::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 3px;
}

.transactions-content::-webkit-scrollbar-thumb {
	background: var(--steam-accent);
	border-radius: 3px;
}

.transactions-content::-webkit-scrollbar-thumb:hover {
	background: #d4772f;
}

.transactions-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.transaction-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 16px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: all 0.3s;
}

.transaction-item:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.1);
	transform: translateX(4px);
}

.transaction-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	flex-shrink: 0;
	font-size: 20px;
}

.transaction-negative .transaction-icon {
	background: rgba(239, 83, 80, 0.15);
	color: #ef5350;
}

.transaction-positive .transaction-icon {
	background: rgba(76, 175, 80, 0.15);
	color: #4caf50;
}

.transaction-neutral .transaction-icon {
	background: rgba(255, 193, 7, 0.15);
	color: #ffc107;
}

.transaction-details {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.transaction-main {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}

.transaction-type {
	color: var(--steam-text);
	font-size: 15px;
	font-weight: 600;
}

.transaction-amount {
	font-size: 16px;
	font-weight: 700;
	font-family: var(--font-display);
}

.transaction-amount.positive {
	color: #4caf50;
}

.transaction-amount.negative {
	color: #ef5350;
}

.transaction-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.transaction-item-name,
.transaction-description {
	color: var(--steam-text-secondary);
	font-size: 13px;
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.transaction-date {
	color: var(--steam-text-secondary);
	font-size: 12px;
	opacity: 0.7;
}

.transaction-balance {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 4px;
	flex-shrink: 0;
	margin-left: auto;
}

.balance-after-label {
	color: var(--steam-text-secondary);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.balance-after-value {
	color: var(--steam-text);
	font-size: 14px;
	font-weight: 600;
}

.transactions-empty {
	padding: 60px 20px;
	text-align: center;
	color: var(--steam-text-secondary);
}

.transactions-empty i {
	font-size: 64px;
	margin-bottom: 16px;
	opacity: 0.3;
	display: block;
}

.transactions-empty p {
	margin: 0 0 8px 0;
	font-size: 16px;
	font-weight: 600;
	color: var(--steam-text);
}

.transactions-empty-hint {
	font-size: 14px;
	opacity: 0.7;
}

@media (max-width: 768px) {
	.transaction-item {
		flex-wrap: wrap;
		padding: 12px;
	}
	
	.transaction-main {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	
	.transaction-balance {
		width: 100%;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding-top: 12px;
		border-top: 1px solid rgba(255, 255, 255, 0.05);
		margin-left: 0;
	}
	
	.transaction-meta {
		font-size: 12px;
	}
	
	.balance-value {
		font-size: 32px;
	}
}

@media (max-width: 968px) {
	.skin-purchase-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.skin-purchase-payment-card {
		position: static;
	}
	
	.skin-purchase-name {
		font-size: 24px;
	}
	
	.skin-price-amount {
		font-size: 28px;
	}
}

/* Top Up Balance Modal Styles */
.topup-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10001;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}

.topup-modal.active {
	opacity: 1;
	visibility: visible;
}

.topup-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(4px);
}

.topup-modal-content {
	position: relative;
	width: 90%;
	max-width: 500px;
	background: var(--steam-bg);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	overflow: hidden;
	transform: scale(0.9);
	transition: transform 0.3s;
}

.topup-modal.active .topup-modal-content {
	transform: scale(1);
}

.topup-modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	border-radius: 50%;
	color: var(--steam-text);
	cursor: pointer;
	transition: all 0.3s;
	z-index: 10;
}

.topup-modal-close:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: rotate(90deg);
}

.topup-modal-close i {
	font-size: 18px;
}

.topup-modal-body {
	padding: 30px;
}

.topup-modal-header {
	margin-bottom: 25px;
	text-align: center;
}

.topup-modal-header h3 {
	margin: 0 0 10px 0;
	color: var(--steam-text);
	font-size: 24px;
	font-weight: 700;
	font-family: var(--font-display);
}

.topup-modal-header p {
	margin: 0;
	color: var(--steam-text-secondary);
	font-size: 14px;
}

.topup-modal-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

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

.topup-form-group label {
	color: var(--steam-text);
	font-size: 14px;
	font-weight: 600;
}

.topup-amount-input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.topup-currency-symbol {
	position: absolute;
	left: 16px;
	color: var(--steam-accent);
	font-size: 20px;
	font-weight: 700;
	z-index: 1;
}

.topup-amount-input {
	width: 100%;
	padding: 14px 16px 14px 40px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	color: var(--steam-text);
	font-size: 18px;
	font-weight: 600;
	transition: all 0.3s;
}

.topup-amount-input:focus {
	outline: none;
	border-color: var(--steam-accent);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 0 3px rgba(232, 115, 46, 0.1);
}

.topup-hint {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	background: rgba(255, 193, 7, 0.15);
	border: 1px solid rgba(255, 193, 7, 0.3);
	border-radius: 6px;
	font-size: 12px;
	color: #ffc107;
}

.topup-hint i {
	font-size: 14px;
}

.topup-actions {
	display: flex;
	gap: 12px;
	margin-top: 10px;
}

.topup-btn {
	flex: 1;
	padding: 14px 20px;
	border: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.topup-btn-primary {
	background: var(--steam-accent);
	color: #ffffff;
}

.topup-btn-primary:hover:not(:disabled) {
	background: #d4772f;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(232, 115, 46, 0.3);
}

.topup-btn-secondary {
	background: rgba(255, 255, 255, 0.1);
	color: var(--steam-text);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.topup-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.15);
}

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

.topup-message {
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	text-align: left;
	display: none;
	white-space: pre-wrap;
	word-wrap: break-word;
	max-height: 300px;
	overflow-y: auto;
	line-height: 1.5;
}

.topup-message.success {
	background: rgba(76, 175, 80, 0.2);
	color: #4caf50;
	border: 1px solid rgba(76, 175, 80, 0.3);
}

.topup-message.error {
	background: rgba(239, 83, 80, 0.2);
	color: #ef5350;
	border: 1px solid rgba(239, 83, 80, 0.3);
}

.topup-balance-display {
	padding: 16px;
	background: rgba(232, 115, 46, 0.1);
	border: 1px solid rgba(232, 115, 46, 0.2);
	border-radius: 8px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.topup-balance-label {
	color: var(--steam-text-secondary);
	font-size: 14px;
	font-weight: 600;
}

.topup-balance-value {
	color: var(--steam-accent);
	font-size: 20px;
	font-weight: 700;
	font-family: var(--font-display);
}

.topup-card-section {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.topup-section-title {
	margin: 0 0 20px 0;
	color: var(--steam-text);
	font-size: 18px;
	font-weight: 700;
	font-family: var(--font-display);
}

.topup-form-row {
	display: flex;
	gap: 12px;
}

.topup-form-group-half {
	flex: 1;
}

.topup-card-input {
	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: var(--steam-text);
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s;
	font-family: 'Courier New', monospace;
}

.topup-card-input:focus {
	outline: none;
	border-color: var(--steam-accent);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 0 3px rgba(232, 115, 46, 0.1);
}

.topup-card-input::placeholder {
	color: var(--steam-text-secondary);
	opacity: 0.5;
}

@media (max-width: 768px) {
	.topup-modal-content {
		width: 95%;
	}
	
	.topup-modal-body {
		padding: 20px;
	}
	
	.topup-modal-header h3 {
		font-size: 20px;
	}
	
	.topup-actions {
		flex-direction: column;
	}
	
	.topup-btn {
		width: 100%;
	}
}

/* ========================================
   WooCommerce Single Product - Skin Page Style
======================================== */

/* Apply skin purchase page layout to WooCommerce products */
.content-area .type-product {
	background: transparent;
	padding: 30px 0;
}

/* Hide entry header (title, date, author, comments) */
.content-area .type-product .entry-header {
	display: none !important;
}

.content-area .type-product .entry-title {
	margin: 0;
	color: var(--steam-text);
	font-size: 32px;
	font-weight: 700;
	font-family: var(--font-display);
}

.content-area .type-product .entry-meta {
	margin-top: 15px;
	color: var(--steam-text-secondary);
	font-size: 14px;
}

.content-area .type-product .entry-meta a {
	color: var(--steam-accent);
	text-decoration: none;
}

.content-area .type-product .entry-meta a:hover {
	opacity: 0.8;
}

/* Hide product tabs (Description and Other Products) */
.content-area .woocommerce-tabs,
.content-area .wc-tabs-wrapper {
	display: none !important;
}

/* Apply skin purchase container layout */
.content-area .single-product {
	max-width: 1200px;
	margin: 0 auto;
}

/* Two column layout for product content */
.content-area .single-product > div[id^="product-"],
.content-area .single-product #product-77 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
}

.content-area .single-product .woocommerce-product-gallery {
	background: var(--steam-border);
	border-radius: 12px;
	padding: 30px;
	overflow: hidden;
	margin-bottom: 0;
	grid-column: 1;
}

.content-area .single-product .woocommerce-product-gallery__image--placeholder {
	width: 100%;
	aspect-ratio: 1;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.content-area .single-product .woocommerce-product-gallery__image--placeholder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Product info layout similar to skin page */
.content-area .single-product .summary {
	background: var(--steam-border);
	border-radius: 12px;
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 0;
	grid-column: 2;
	position: sticky;
	top: 100px;
}

/* Price styling like skin page */
.content-area .single-product .summary .price {
	margin: 0 0 25px 0;
	padding-bottom: 25px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content-area .single-product .summary .price .woocommerce-Price-amount {
	color: var(--steam-text);
	font-size: 36px;
	font-weight: 700;
	font-family: var(--font-display);
}

.content-area .single-product .summary .price .woocommerce-Price-currencySymbol {
	color: var(--steam-accent);
	font-size: 24px;
	font-weight: 700;
	margin-right: 4px;
}

/* Product meta styling */
.content-area .single-product .summary .product_meta {
	margin: 25px 0;
	padding: 0;
}

.content-area .single-product .summary .product_meta .posted_in {
	color: var(--steam-text-secondary);
	font-size: 14px;
}

.content-area .single-product .summary .product_meta .posted_in a {
	color: var(--steam-accent);
	text-decoration: none;
}

.content-area .single-product .summary .product_meta .posted_in a:hover {
	opacity: 0.8;
}

/* Hide add to cart for owner message */
.content-area .woocommerce-info {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 20px;
	color: var(--steam-text);
	margin: 20px 0;
}


/* Hide entry footer */
.content-area .type-product .entry-footer {
	display: none;
}

/* Hide comments on product pages */
.content-area .type-product ~ #respond,
.content-area .type-product ~ .comment-respond {
	display: none;
}

/* Responsive for products */
@media (max-width: 968px) {
	.content-area .single-product > div[id^="product-"],
	.content-area .single-product #product-77 {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.content-area .single-product .woocommerce-product-gallery {
		grid-column: 1;
	}
	
	.content-area .single-product .summary {
		grid-column: 1;
		position: static;
	}
}

