* {
	padding: 0;
	margin: 0;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	background: radial-gradient(circle at top left, #320000, #0a0000);
}

body,
nav a,
.back-arrow,
.search-box input,
.plan-badge,
.plan-button,
.acc .form-group input,
.cart .quantity-control button,
.cart .promo-code input,
.cart .promo-code button,
.cart .checkout-btn,
.cart .continue-shopping {
	color: white;
}

header {
	align-items: center;
	justify-content: space-between;
	padding: 20px 60px;
}

header,
.main,
.buttons,
.games,
.all-games,
.pricing-cards,
.cta-buttons,
.acc .profile-image,
.acc .order-card,
.cart .quantity-control,
.cart .summary-row {
	display: flex;
}

.logo img,
.dicor img,
.socials img {
	width: 50px;
}

nav a {
	margin:15px;
	text-decoration: none;
}

nav a:hover {
	color: #ff4d00;
}

.main {
  justify-content: space-between;
  align-items: center;
  padding: 80px 60px;
}

.main .text {
  width: 50%;
}

.main h1 {
  font-size: 45px;
  margin-bottom: 20px;
}

.main .text p {
  margin-bottom: 30px;
  color: rgb(199, 197, 197);
  line-height: 1.6;
}

.main .text p,
.pricing-header p,
.plan-price span,
.about-features li::before,
.about-cta p,
.acc .account-header p,
.cart .cart-header p,
.cart .cart-item-details h3 {
	font-size: 20px;
}

.buttons {
  gap: 15px;
  margin-bottom: 30px;
}

.buttons button {
  padding: 10px 25px;
  border-radius: 8px;
  font-size: medium;

}

.buttons button:hover,
.games img:hover,
.all-games img:hover,
.plan-button:hover,
.stat-card:hover {
  transform: scale(1.05);
}

.first,
.second {
  background: transparent;
  color: #fff;
  border: 2px solid white;
}

.first:hover,
.second:hover {
  background: #ff4d00;
}

.second:hover {
  border-color: #ff4d00;
}

.controller img {
  width: 600px;
  filter: drop-shadow(0 0 20px #ff4d00);
}

.recommended {
  padding: 50px 60px;
}

.recommended,
.search-box,
.page h1,
.pricing-header,
.pricing-card,
.about-hero,
.about-values h2,
.about-stats,
.about-cta,
.acc .account-header,
.acc .profile-name,
.acc .profile-email,
.cart .cart-header,
.cart .quantity-control span,
.cart .empty-cart {
	text-align: center;
}

.recommended h2 {
  font-size:larger;
  margin-bottom: 25px;
}

.games {
  justify-content: center;
  gap: 20px;
}

.games img {
  width: 250px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
}

.back-arrow {
	text-decoration: none;
	display: inline-block;
	margin-bottom: 10px;
	margin-top: 5px;
}

.back-arrow,
.about-subtitle,
.value-card h3,
.acc .profile-name,
.acc .subsection-title,
.cart .cart-item-price,
.cart .summary-row.total {
	font-size: 24px;
}

.back-arrow:hover {
	color: black;
}

.search-box {
	margin-bottom: 50px;
}

.search-box input {
	width: 100%;
	max-width: 600px;
	padding: 15px 20px;
	border-radius: 8px;
	border: 2px solid white;
	background: transparent;
	font-size: 18px;
	outline: none;
}

.page h1,
.pricing-header h1,
.plan-price,
.about-hero h1,
.stat-card h3,
.acc .account-header h1,
.acc .profile-image,
.cart .cart-header h1 {
	font-size: 48px;
}

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

.all-games {
	flex-wrap: wrap;
	justify-content: center;
	gap: 25px;
}

.game-card {
	flex: 0 0 calc(50% - 12.5px);
}

/* Pricing Page Styles */
.pricing-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 50px 60px;
}

.pricing-header {
	margin-bottom: 60px;
}

.pricing-header h1 {
	margin-bottom: 15px;
}

.pricing-header p {
	color: rgb(199, 197, 197);
}

.pricing-cards {
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.pricing-card {
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 16px;
	padding: 40px 30px;
	width: 320px;
	transition: all 0.3s ease;
}

.pricing-card:hover {
	transform: translateY(-10px);
	border-color: #ff4d00;
	box-shadow: 0 10px 30px rgba(255, 77, 0, 0.3);
}

.pricing-card.featured {
	border-color: #ff4d00;
	background: rgba(255, 77, 0, 0.1);
}

.plan-badge {
	background: #ff4d00;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 14px;
	display: inline-block;
	margin-bottom: 15px;
}

.plan-name {
	font-size: 32px;
	margin-bottom: 15px;
}

.plan-price {
	font-weight: bold;
	margin-bottom: 10px;
}

.plan-price span {
	color: rgb(199, 197, 197);
}

.plan-duration {
	color: rgb(199, 197, 197);
	margin-bottom: 30px;
}

.plan-features {
	list-style: none;
	margin-bottom: 30px;
	text-align: left;
}

.plan-features li {
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	color: rgb(199, 197, 197);
}

.plan-features li:last-child {
	border-bottom: none;
}

.plan-features li::before {
	content: "✓ ";
	color: #ff4d00;
	font-weight: bold;
	margin-right: 10px;
}

.plan-button {
	width: 100%;
	padding: 15px 25px;
	border-radius: 8px;
	font-size: 18px;
	background: transparent;
	border: 2px solid white;
	cursor: pointer;
	transition: all 0.3s ease;
}

.plan-button:hover {
	background: #ff4d00;
	border-color: #ff4d00;
}

.featured .plan-button {
	background: #ff4d00;
	border-color: #ff4d00;
}

.featured .plan-button:hover {
	background: #ff6a00;
}

/* About Page Styles */
.about-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 50px 60px;
}

.about-hero {
	margin-bottom: 60px;
}

.about-hero h1 {
	margin-bottom: 15px;
}

.about-subtitle {
	color: rgb(199, 197, 197);
}

.about-content {
	max-width: 1000px;
	margin: 0 auto;
}

.about-section {
	margin-bottom: 50px;
}

.about-section h2 {
	font-size: 32px;
	margin-bottom: 20px;
	color: #ff4d00;
}

.about-section p {
	font-size: 18px;
	line-height: 1.8;
	color: rgb(199, 197, 197);
	margin-bottom: 15px;
}

.about-values {
	margin-bottom: 50px;
}

.about-values h2 {
	font-size: 32px;
	margin-bottom: 30px;
	color: #ff4d00;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
	margin-top: 30px;
}

.value-card {
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	padding: 30px;
	transition: all 0.3s ease;
}

.value-card:hover {
	transform: translateY(-5px);
	border-color: #ff4d00;
	box-shadow: 0 5px 20px rgba(255, 77, 0, 0.3);
}

.value-card h3 {
	margin-bottom: 15px;
}

.value-card p {
	font-size: 16px;
	line-height: 1.6;
	color: rgb(199, 197, 197);
}

.about-features {
	list-style: none;
	padding: 0;
}

.about-features li {
	padding: 15px 0;
	font-size: 18px;
	color: rgb(199, 197, 197);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-features li:last-child {
	border-bottom: none;
}

.about-features li::before {
	content: "✓ ";
	color: #ff4d00;
	font-weight: bold;
	margin-right: 15px;
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	margin: 50px 0;
}

.stat-card {
	background: rgba(255, 77, 0, 0.1);
	border: 2px solid #ff4d00;
	border-radius: 12px;
	padding: 30px;
	transition: all 0.3s ease;
}

.stat-card:hover {
	box-shadow: 0 5px 20px rgba(255, 77, 0, 0.4);
}

.stat-card h3 {
	color: #ff4d00;
	margin-bottom: 10px;
}

.stat-card p {
	font-size: 18px;
	color: rgb(199, 197, 197);
}

.about-cta {
	margin-top: 60px;
	padding: 50px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	border: 2px solid rgba(255, 255, 255, 0.2);
}

.about-cta h2 {
	font-size: 36px;
	margin-bottom: 15px;
	color: #ff4d00;
}

.about-cta p {
	color: rgb(199, 197, 197);
	margin-bottom: 30px;
}

.cta-buttons {
	gap: 15px;
	justify-content: center;
}

.cta-buttons button {
	padding: 15px 30px;
	border-radius: 8px;
	font-size: 18px;
	cursor: pointer;
}


/* Account Page Styles */
.acc .account-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 50px 60px;
}

.acc .account-header {
	margin-bottom: 50px;
}

.acc .account-header h1 {
	margin-bottom: 15px;
}

.acc .account-header p {
	color: rgb(199, 197, 197);
}

.acc .account-content {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 40px;
}

.acc .account-sidebar {
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 16px;
	padding: 30px;
	height: fit-content;
}

.acc .profile-image {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: rgba(255, 77, 0, 0.2);
	border: 3px solid #ff4d00;
	margin: 0 auto 20px;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.acc .profile-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.acc .profile-name {
	margin-bottom: 10px;
}

.acc .profile-email {
	color: rgb(199, 197, 197);
	margin-bottom: 30px;
}

.acc .sidebar-menu {
	list-style: none;
}

.acc .sidebar-menu li {
	padding: 15px;
	margin-bottom: 10px;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.acc .sidebar-menu li:hover {
	background: rgba(255, 77, 0, 0.2);
}

.acc .sidebar-menu li.active {
	background: rgba(255, 77, 0, 0.3);
	border-left: 4px solid #ff4d00;
}

.acc .account-main {
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 16px;
	padding: 40px;
}

.acc .section-title {
	font-size: 32px;
	margin-bottom: 30px;
	color: #ff4d00;
}

.acc .subsection-title {
	margin-bottom: 20px;
}

.acc .form-group {
	margin-bottom: 25px;
}

.acc .form-group label {
	display: block;
	margin-bottom: 8px;
	font-size: 16px;
	color: rgb(199, 197, 197);
}

.acc .form-group input {
	width: 90%;
	padding: 12px 15px;
	border-radius: 8px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.05);
	font-size: 16px;
	outline: none;
	transition: all 0.3s ease;
}

.acc .form-group input:focus {
	border-color: #ff4d00;
}

.acc .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.acc .stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}

.acc .recent-orders {
	margin-top: 40px;
}

.acc .order-card {
	background: rgba(255, 255, 255, 0.03);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 15px;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
}

.acc .order-card:hover {
	border-color: #ff4d00;
}

.acc .order-info h4 {
	font-size: 18px;
	margin-bottom: 5px;
}

.acc .order-info p {
	color: rgb(199, 197, 197);
	font-size: 14px;
}

.acc .order-status {
	background: rgba(0, 255, 0, 0.2);
	color: #00ff00;
	padding: 8px 15px;
	border-radius: 20px;
	font-size: 14px;
}

.acc .primary-button {
	background: #ff4d00 !important;
	border-color: #ff4d00 !important;
}

/* Cart page */
.cart .cart-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 50px 60px;
}

.cart .cart-header {
	margin-bottom: 50px;
}

.cart .cart-header h1 {
	margin-bottom: 15px;
}

.cart .cart-header p {
	color: rgb(199, 197, 197);
}

.cart .cart-content {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 40px;
}

.cart .cart-items {
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 16px;
	padding: 40px;
}

.cart .cart-item {
	background: rgba(255, 255, 255, 0.03);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 20px;
	display: grid;
	grid-template-columns: 120px 1fr auto;
	gap: 20px;
	align-items: center;
	transition: all 0.3s ease;
}

.cart .cart-item:hover {
	border-color: #ff4d00;
}

.cart .cart-item-image {
	width: 120px;
	height: 120px;
	border-radius: 8px;
	overflow: hidden;
}

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

.cart .cart-item-details h3 {
	margin-bottom: 8px;
}

.cart .cart-item-details p {
	color: rgb(199, 197, 197);
	font-size: 14px;
	margin-bottom: 5px;
}

.cart .cart-item-price {
	color: #ff4d00;
	font-weight: bold;
}

.cart .cart-item-actions {
	text-align: right;
}

.cart .quantity-control {
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
	justify-content: flex-end;
}

.cart .quantity-control button {
	width: 30px;
	height: 30px;
	border-radius: 4px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.05);
	cursor: pointer;
	transition: all 0.3s ease;
}

.cart .quantity-control button:hover {
	background: #ff4d00;
	border-color: #ff4d00;
}

.cart .quantity-control span {
	min-width: 30px;
}

.cart .remove-btn {
	background: transparent;
	border: 2px solid rgba(255, 77, 0, 0.5);
	color: #ff4d00;
	padding: 8px 15px;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.cart .remove-btn:hover {
	background: rgba(255, 77, 0, 0.2);
	border-color: #ff4d00;
}

.cart .cart-summary {
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 16px;
	padding: 40px;
	height: fit-content;
}

.cart .cart-summary h2 {
	font-size: 28px;
	margin-bottom: 25px;
	color: #ff4d00;
}

.cart .summary-row {
	justify-content: space-between;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart .summary-row span:first-child {
	color: rgb(199, 197, 197);
}

.cart .summary-row.total {
	border-bottom: none;
	font-weight: bold;
	margin-top: 10px;
	padding-top: 15px;
	border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.cart .summary-row.total span:last-child {
	color: #ff4d00;
}

.cart .promo-code {
	margin: 25px 0;
}

.cart .promo-code input {
	width: 100%;
	padding: 12px 15px;
	border-radius: 8px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.05);
	font-size: 16px;
	outline: none;
	margin-bottom: 10px;
	transition: all 0.3s ease;
}

.cart .promo-code input:focus {
	border-color: #ff4d00;
}

.cart .promo-code button {
	width: 100%;
	padding: 12px 25px;
	border-radius: 8px;
	font-size: 16px;
	background: transparent;
	border: 2px solid white;
	cursor: pointer;
	transition: all 0.3s ease;
}

.cart .promo-code button:hover {
	background: #ff4d00;
	border-color: #ff4d00;
	transform: scale(1.02);
}

.cart .checkout-btn {
	width: 100%;
	padding: 15px 25px;
	border-radius: 8px;
	font-size: 18px;
	background: #ff4d00;
	border: 2px solid #ff4d00;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 20px;
}

.cart .checkout-btn:hover {
	background: #ff6a00;
	transform: scale(1.02);
}

.cart .continue-shopping {
	width: 100%;
	padding: 12px 25px;
	border-radius: 8px;
	font-size: 16px;
	background: transparent;
	border: 2px solid white;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 15px;
}

.cart .continue-shopping:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: scale(1.02);
}

.cart .empty-cart {
	padding: 60px 20px;
}

.cart .empty-cart-icon {
	font-size: 80px;
	margin-bottom: 20px;
	opacity: 0.5;
}

.cart .empty-cart h3 {
	font-size: 28px;
	margin-bottom: 15px;
}

.cart .empty-cart p {
	color: rgb(199, 197, 197);
	font-size: 18px;
	margin-bottom: 30px;
}

@media screen and (max-width: 1024px) {
	header {
		padding: 20px 40px;
	}

	.main {
		padding: 60px 40px;
		flex-direction: column;
		text-align: center;
	}

	.main .text {
		width: 100%;
		margin-bottom: 40px;
	}

	.main h1 {
		font-size: 36px;
	}

	.main .text p {
		font-size: 18px;
	}

	.buttons {
		justify-content: center;
	}

	.socials {
		flex-direction: column;
		align-items: center;
	}

	.socials,
	.cart .cart-item-actions {
		display: flex;
	}

	.controller img {
		width: 450px;
	}

	.recommended {
		padding: 40px 40px;
	}

	.games {
		flex-wrap: wrap;
	}

	.games img {
		width: 200px;
	}

	/* Games page */
	.container {
		padding: 20px 40px;
	}

	.all-games {
		gap: 20px;
	}

	.game-card {
		flex: 0 0 calc(50% - 10px);
	}

	/* Pricing page */
	.pricing-container {
		padding: 40px 40px;
	}

	.pricing-header h1 {
		font-size: 40px;
	}

	.pricing-cards {
		gap: 25px;
	}

	/* About page */
	.about-container {
		padding: 40px 40px;
	}

	.about-hero h1 {
		font-size: 40px;
	}

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

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

	/* Account page */
	.acc .account-container {
		padding: 40px 40px;
	}

	.acc .account-content {
		grid-template-columns: 250px 1fr;
		gap: 30px;
	}

	.acc .account-sidebar {
		display: block;
		padding: 25px;
	}

	.acc .profile-image {
		width: 100px;
		height: 100px;
		font-size: 40px;
	}

	.acc .profile-name {
		font-size: 20px;
	}

	.acc .sidebar-menu li {
		padding: 12px;
		font-size: 15px;
	}

	.acc .account-main {
		padding: 30px;
	}

	.acc .section-title {
		font-size: 28px;
	}

	.acc .stats-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 15px;
	}

	.acc .form-row {
		grid-template-columns: 1fr;
	}

	.acc .account-header h1 {
		font-size: 36px;
	}

	/* Cart page */
	.cart .cart-container {
		padding: 40px 40px;
	}

	.cart .cart-content {
		grid-template-columns: 1fr;
	}

	.cart .cart-header h1 {
		font-size: 36px;
	}

	.cart .cart-item {
		grid-template-columns: 80px 1fr;
		gap: 15px;
	}

	.cart .cart-item-image {
		width: 80px;
		height: 80px;
	}

	.cart .cart-item-actions {
		grid-column: 1 / -1;
		justify-content: space-between;
		align-items: center;
		margin-top: 10px;
	}

	.cart .quantity-control {
		margin-bottom: 0;
	}
}

@media screen and (max-width: 768px) {
	header {
		padding: 15px 20px;
		flex-wrap: wrap;
	}

	.logo img {
		width: 40px;
	}

	nav {
		order: 3;
		width: 100%;
		text-align: center;
		margin-top: 15px;
	}

	nav a {
		margin: 10px;
		font-size: 14px;
	}

	.dicor img {
		width: 40px;
	}

	.main {
		padding: 40px 20px;
	}

	.main h1 {
		font-size: 28px;
	}

	.main .text p {
		font-size: 16px;
	}

	.buttons {
		flex-direction: column;
	}

	.buttons button {
		width: 100%;
	}

	.socials img {
		width: 40px;
	}

	.social-icons {
		display: flex;
		gap: 10px;
	}

	.controller img {
		width: 100%;
		max-width: 350px;
	}

	.recommended {
		padding: 30px 20px;
	}

	.recommended h2 {
		font-size: 24px;
	}

	.games {
		flex-direction: column;
		align-items: center;
	}

	.games img {
		width: 100%;
		max-width: 300px;
	}

	/* Games page */
	.container {
		padding: 20px;
	}

	.search-box input {
		width: 90%;
		font-size: 16px;
		padding: 12px 15px;
	}

	.page h1 {
		font-size: 32px;
	}

	.all-games {
		gap: 15px;
	}

	.game-card {
		flex: 0 0 100%;
	}

	/* Pricing page */
	.pricing-container {
		padding: 30px 20px;
	}

	.pricing-header h1 {
		font-size: 32px;
	}

	.pricing-header p {
		font-size: 18px;
	}

	.pricing-cards {
		flex-direction: column;
		align-items: center;
	}

	.pricing-card {
		width: 100%;
		max-width: 400px;
	}

	.plan-name {
		font-size: 28px;
	}

	.plan-price {
		font-size: 40px;
	}

	/* About page */
	.about-container {
		padding: 30px 20px;
	}

	.about-hero h1 {
		font-size: 32px;
	}

	.about-subtitle {
		font-size: 18px;
	}

	.about-section h2 {
		font-size: 26px;
	}

	.about-section p {
		font-size: 16px;
	}

	.values-grid {
		grid-template-columns: 1fr;
	}

	.value-card h3 {
		font-size: 20px;
	}

	.about-features li {
		font-size: 16px;
	}

	.about-stats {
		grid-template-columns: 1fr;
	}

	.stat-card h3 {
		font-size: 40px;
	}

	.about-cta {
		padding: 30px 20px;
	}

	.about-cta h2 {
		font-size: 28px;
	}

	.about-cta p {
		font-size: 18px;
	}

	.cta-buttons {
		flex-direction: column;
	}

	.cta-buttons button {
		width: 100%;
	}
}

@media screen and (max-width: 480px) {
	header,
	.container {
		padding: 15px;
	}

	.logo img,
	.dicor img,
	.socials img {
		width: 35px;
	}

	nav a {
		margin: 8px;
		font-size: 13px;
	}

	.main {
		padding: 30px 15px;
	}

	.main h1,
	.plan-name,
	.about-section h2,
	.about-cta h2 {
		font-size: 24px;
	}

	.main .text p,
	.buttons button,
	.search-box input,
	.plan-features li,
	.about-section p,
	.value-card p,
	.about-features li {
		font-size: 14px;
	}

	.buttons button {
		padding: 12px 20px;
	}

	.controller img {
		width: 100%;
		max-width: 280px;
	}

	.recommended,
	.pricing-container,
	.about-container,
	.about-cta {
		padding: 25px 15px;
	}

	.recommended h2,
	.back-arrow {
		font-size: 20px;
	}

	/* Games page */
	.search-box input {
		padding: 10px 12px;
	}

	.page h1 {
		font-size: 28px;
	}

	/* Pricing page */
	.pricing-header h1 {
		font-size: 28px;
	}

	.pricing-header p,
	.about-subtitle,
	.stat-card p,
	.about-cta p,
	.cta-buttons button {
		font-size: 16px;
	}

	.pricing-card {
		padding: 30px 20px;
	}

	.plan-price {
		font-size: 36px;
	}

	.plan-features li {
		padding: 10px 0;
	}

	/* About page */
	.about-hero h1 {
		font-size: 28px;
	}

	.value-card {
		padding: 20px;
	}

	.value-card h3 {
		font-size: 18px;
	}

	.about-features li {
		padding: 12px 0;
	}

	.stat-card {
		padding: 25px;
	}

	.stat-card h3 {
		font-size: 36px;
	}

	.cta-buttons button {
		padding: 12px 20px;
	}
}
