<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800&amp;family=Inter:wght@300;400;500;600;700&amp;display=swap');

:root {
/* Primary color palette - dark blues */
--dark-blue-900: #0A1128;
--dark-blue-800: #0F1C3F;
--dark-blue-700: #162955;
--dark-blue-600: #1E3A8A;

/* Secondary blues */
--blue-500: #1E40AF;
--blue-400: #2563EB;
--blue-300: #3B82F6;

/* Accent yellow */
--yellow-500: #F59E0B;
--yellow-400: #FBBF24;
--yellow-300: #FCD34D;

/* UI colors */
--bg-primary: var(--dark-blue-900);
--bg-secondary: var(--dark-blue-800);
--bg-card: var(--dark-blue-700);
--bg-card-hover: var(--dark-blue-600);

/* Text colors */
--text-primary: #F8FAFC;
--text-secondary: #CBD5E1;
--text-muted: #94A3B8;

/* Status colors */
--status-online: #10B981;
--status-offline: #EF4444;
--status-updating: #F59E0B;

/* Spacing */
--space-xs: 0.25rem;
--space-sm: 0.5rem;
--space-md: 1rem;
--space-lg: 1.5rem;
--space-xl: 2rem;
--space-2xl: 3rem;

/* Border radius */
--radius-sm: 0.25rem;
--radius-md: 0.5rem;
--radius-lg: 0.75rem;
--radius-xl: 1rem;
--radius-full: 9999px;
}

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

html {
font-size: 16px;
scroll-behavior: smooth;
}

body {
background-color: var(--bg-primary);
background-image: 
radial-gradient(circle at 15% 15%, rgba(30, 64, 175, 0.08) 0%, transparent 40%),
radial-gradient(circle at 85% 85%, rgba(30, 58, 138, 0.08) 0%, transparent 40%);
color: var(--text-primary);
font-family: 'Inter', sans-serif;
line-height: 1.6;
min-height: 100vh;
overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Orbitron', sans-serif;
font-weight: 700;
line-height: 1.2;
margin-bottom: var(--space-md);
color: var(--text-primary);
}

h1 {
font-size: 2.5rem;
}

h2 {
font-size: 2rem;
}

h3 {
font-size: 1.5rem;
}

p {
margin-bottom: var(--space-md);
}

a {
color: var(--blue-300);
text-decoration: none;
transition: all 0.2s ease;
}

a:hover {
color: var(--yellow-400);
}

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

/* Container */
.container {
width: 100%;
max-width: 1280px;
margin: 0 auto;
padding: 0 var(--space-md);
}

/* Header */
.header {
background-color: rgba(10, 17, 40, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(59, 130, 246, 0.2);
position: sticky;
top: 0;
z-index: 100;
padding: var(--space-md) 0;
}

.header-container {
display: flex;
flex-direction: column;
}

.header-top {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: var(--space-md);
}

.logo-container {
display: flex;
align-items: center;
}

.logo-img {
height: 80px;
margin-right: var(--space-sm);
}

/* Online indicator */
.online-indicator {
display: flex;
align-items: center;
gap: var(--space-xs);
}

.online-dot {
width: 8px;
height: 8px;
background-color: var(--status-online);
border-radius: 50%;
animation: pulse 2s infinite;
}

.online-count {
font-weight: 700;
color: var(--status-online);
}

.online-text {
font-size: 0.75rem;
color: var(--text-muted);
}

/* Header actions */
.header-actions {
display: flex;
align-items: center;
gap: var(--space-md);
}

.discord-button {
display: flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
background-color: #5865F2;
color: white;
border-radius: var(--radius-md);
transition: all 0.2s ease;
}

.discord-button:hover {
background-color: #4752C4;
transform: translateY(-2px);
color: white;
}

.mobile-menu-button {
display: none;
background: none;
border: none;
color: var(--text-primary);
font-size: 1.5rem;
cursor: pointer;
}

/* Navigation */
.nav {
width: 100%;
}

.nav-list {
display: flex;
list-style: none;
gap: var(--space-md);
}

.nav-item {
flex: 1;
}

.nav-link {
display: flex;
align-items: center;
justify-content: center;
gap: var(--space-sm);
padding: var(--space-md);
color: var(--text-secondary);
font-weight: 500;
border-radius: var(--radius-md);
transition: all 0.2s ease;
text-align: center;
}

.nav-link:hover {
color: var(--text-primary);
background-color: rgba(59, 130, 246, 0.1);
}

.nav-link.active {
color: var(--yellow-400);
background-color: rgba(59, 130, 246, 0.15);
}

.nav-link i {
font-size: 1rem;
}

/* Mobile menu */
.mobile-menu {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: var(--bg-primary);
z-index: 200;
padding-top: 80px;
transform: translateX(100%);
transition: transform 0.3s ease;
}

.mobile-menu.active {
transform: translateX(0);
display: block;
}

.mobile-nav-list {
list-style: none;
}

.mobile-nav-item {
border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.mobile-nav-link {
display: flex;
align-items: center;
padding: var(--space-lg) var(--space-xl);
color: var(--text-secondary);
font-weight: 500;
transition: all 0.2s ease;
}

.mobile-nav-link:hover {
background-color: rgba(59, 130, 246, 0.1);
color: var(--yellow-400);
}

.mobile-nav-link.active {
color: var(--yellow-400);
background-color: rgba(59, 130, 246, 0.15);
}

.mobile-nav-link i {
margin-right: var(--space-md);
width: 20px;
text-align: center;
}

.btn {
display: inline-block;
padding: var(--space-md) var(--space-xl);
font-weight: 600;
border-radius: var(--radius-md);
transition: all 0.3s ease;
cursor: pointer;
text-align: center;
border: none;
font-family: 'Inter', sans-serif;
}

.btn-sm {
padding: var(--space-xs) var(--space-md);
font-size: 0.875rem;
}

.btn-lg {
padding: var(--space-md) var(--space-xl);
font-size: 1.125rem;
}

.btn-primary {
background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
color: var(--text-primary);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
transform: translateY(-2px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
color: var(--text-primary);
}

.btn-secondary {
background-color: transparent;
color: var(--blue-300);
border: 1px solid var(--blue-500);
}

.btn-secondary:hover {
background-color: rgba(59, 130, 246, 0.1);
color: var(--yellow-400);
border-color: var(--yellow-400);
}

.btn-accent {
background: linear-gradient(135deg, var(--yellow-500), var(--yellow-400));
color: var(--dark-blue-900);
font-weight: 700;
}

.btn-accent:hover {
background: linear-gradient(135deg, var(--yellow-400), var(--yellow-500));
transform: translateY(-2px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
color: var(--dark-blue-900);
}

.w-full {
width: 100%;
}

/* Hero section */
.hero {
position: relative;
padding: var(--space-2xl) 0;
background: linear-gradient(135deg, var(--dark-blue-800), var(--dark-blue-900));
overflow: hidden;
text-align: center;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: url('https://bettercheats.com/images/hero-pattern.png');
background-size: cover;
opacity: 0.1;
z-index: 0;
}

.hero-content {
position: relative;
z-index: 1;
max-width: 800px;
margin: 0 auto;
}

.hero-title {
font-size: 3rem;
margin-bottom: var(--space-lg);
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-description {
font-size: 1.25rem;
color: var(--text-secondary);
margin-bottom: var(--space-xl);
}

.highlight {
color: var(--yellow-400);
font-weight: 700;
}

/* Section */
.section {
padding: var(--space-2xl) 0;
}

.section-title {
display: flex;
align-items: center;
gap: var(--space-sm);
margin-bottom: var(--space-xl);
font-size: 1.75rem;
}

.section-title i {
color: var(--yellow-400);
}

/* Grid */
.grid {
display: grid;
gap: var(--space-xl);
}

.grid-3 {
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.grid-4 {
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

/* Card */
.card {
background: linear-gradient(135deg, var(--bg-card), var(--dark-blue-800));
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
border: 1px solid rgba(59, 130, 246, 0.1);
height: 100%;
display: flex;
flex-direction: column;
}

.card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
border-color: rgba(59, 130, 246, 0.3);
}

/* Status table */
.status-table {
width: 100%;
border-collapse: collapse;
margin-bottom: var(--space-2xl);
}

.status-table th,
.status-table td {
padding: var(--space-lg);
text-align: left;
border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.status-table th {
background-color: var(--bg-secondary);
font-family: 'Orbitron', sans-serif;
font-weight: 600;
color: var(--text-primary);
}

.status-table tr:hover {
background-color: rgba(59, 130, 246, 0.05);
}

.status-table td:first-child {
font-weight: 500;
}

.status-indicator {
display: flex;
align-items: center;
gap: var(--space-sm);
}

.status-dot {
width: 10px;
height: 10px;
border-radius: var(--radius-full);
}

.status-online {
background-color: var(--status-online);
}

.status-offline {
background-color: var(--status-offline);
}

.status-updating {
background-color: var(--status-updating);
}

.status-text-online {
color: var(--status-online);
}

.status-text-offline {
color: var(--status-offline);
}

.status-text-updating {
color: var(--status-updating);
}

/* Status card */
.status-card {
background: linear-gradient(135deg, var(--bg-card), var(--dark-blue-800));
border-radius: var(--radius-lg);
padding: var(--space-xl);
margin-bottom: var(--space-xl);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
border: 1px solid rgba(59, 130, 246, 0.1);
}

.status-card-title {
display: flex;
align-items: center;
gap: var(--space-sm);
margin-bottom: var(--space-md);
}

.status-card-title i {
color: var(--yellow-400);
}

.status-card-content {
color: var(--text-secondary);
}

/* Product card */
.product-card {
background: linear-gradient(135deg, var(--bg-card), var(--dark-blue-800));
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
border: 1px solid rgba(59, 130, 246, 0.1);
height: 100%;
display: flex;
flex-direction: column;
}

.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
border-color: rgba(59, 130, 246, 0.3);
}

.product-image {
position: relative;
height: 200px;
overflow: hidden;
}

.product-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

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

.product-badge {
position: absolute;
top: var(--space-md);
right: var(--space-md);
background-color: var(--yellow-400);
color: var(--dark-blue-900);
font-weight: 700;
font-size: 0.75rem;
padding: var(--space-xs) var(--space-md);
border-radius: var(--radius-full);
z-index: 1;
}

.product-content {
padding: var(--space-lg);
flex: 1;
display: flex;
flex-direction: column;
}

.product-title {
font-size: 1.25rem;
margin-bottom: var(--space-md);
}

.product-description {
color: var(--text-secondary);
margin-bottom: var(--space-lg);
flex: 1;
}

.product-meta {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: var(--space-md);
}

.product-status {
display: flex;
align-items: center;
font-size: 0.875rem;
}

.product-price {
font-weight: 700;
color: var(--yellow-400);
}

.product-features {
margin-bottom: var(--space-md);
}

.product-feature {
display: flex;
align-items: center;
gap: var(--space-sm);
margin-bottom: var(--space-xs);
color: var(--text-secondary);
font-size: 0.875rem;
}

.product-feature i {
color: var(--yellow-400);
font-size: 0.75rem;
}

/* Category filter */
.category-filter {
display: flex;
flex-wrap: wrap;
gap: var(--space-sm);
margin-bottom: var(--space-xl);
}

.category-button {
padding: var(--space-sm) var(--space-lg);
background-color: var(--bg-secondary);
border: 1px solid rgba(59, 130, 246, 0.2);
border-radius: var(--radius-full);
color: var(--text-secondary);
font-weight: 500;
cursor: pointer;
transition: all 0.2s ease;
}

.category-button:hover {
background-color: rgba(59, 130, 246, 0.1);
color: var(--text-primary);
}

.category-button.active {
background-color: var(--blue-500);
color: var(--text-primary);
border-color: var(--blue-500);
}

/* Review card */
.review-card {
background: linear-gradient(135deg, var(--bg-card), var(--dark-blue-800));
border-radius: var(--radius-lg);
padding: var(--space-xl);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
border: 1px solid rgba(59, 130, 246, 0.1);
height: 100%;
}

.review-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
border-color: rgba(59, 130, 246, 0.3);
}

.review-content {
position: relative;
margin-bottom: var(--space-lg);
color: var(--text-secondary);
}

.review-content::before {
content: '"';
position: absolute;
top: -20px;
left: -10px;
font-size: 4rem;
color: rgba(59, 130, 246, 0.2);
font-family: 'Georgia', serif;
}

.review-author {
display: flex;
align-items: center;
gap: var(--space-md);
}

.review-avatar {
width: 50px;
height: 50px;
border-radius: var(--radius-full);
overflow: hidden;
}

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

.review-info {
flex: 1;
}

.review-name {
font-weight: 600;
color: var(--text-primary);
}

.review-date {
font-size: 0.875rem;
color: var(--text-muted);
}

.review-rating {
display: flex;
gap: var(--space-xs);
color: var(--yellow-400);
}

.review-verified {
display: inline-flex;
align-items: center;
gap: var(--space-xs);
font-size: 0.75rem;
color: var(--status-online);
margin-top: var(--space-xs);
}

.review-verified i {
font-size: 0.875rem;
}

/* Game section */
.game-section {
margin-bottom: var(--space-2xl);
}

.game-header {
display: flex;
align-items: center;
gap: var(--space-md);
margin-bottom: var(--space-lg);
padding-bottom: var(--space-md);
border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.game-icon {
width: 60px;
height: 60px;
border-radius: var(--radius-md);
background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
display: flex;
align-items: center;
justify-content: center;
}

.game-icon i {
font-size: 1.75rem;
color: var(--yellow-400);
}

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

/* Reviews grid */
.reviews-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: var(--space-xl);
}

/* Game navigation */
.game-nav {
position: sticky;
top: 80px;
background-color: rgba(10, 17, 40, 0.95);
backdrop-filter: blur(10px);
padding: var(--space-md) 0;
margin-bottom: var(--space-xl);
z-index: 90;
border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.game-nav-list {
display: flex;
list-style: none;
gap: var(--space-md);
overflow-x: auto;
padding-bottom: var(--space-sm);
}

.game-nav-item {
flex: 0 0 auto;
}

.game-nav-link {
display: flex;
align-items: center;
gap: var(--space-sm);
padding: var(--space-sm) var(--space-md);
color: var(--text-secondary);
font-weight: 500;
border-radius: var(--radius-md);
transition: all 0.2s ease;
white-space: nowrap;
}

.game-nav-link:hover {
color: var(--text-primary);
background-color: rgba(59, 130, 246, 0.1);
}

.game-nav-link.active {
color: var(--yellow-400);
background-color: rgba(59, 130, 246, 0.15);
}

.game-nav-link i {
font-size: 1rem;
}

/* CTA Section */
.cta-section {
background: linear-gradient(135deg, var(--dark-blue-800), var(--dark-blue-900));
border-radius: var(--radius-lg);
padding: var(--space-2xl);
text-align: center;
margin: var(--space-2xl) 0;
position: relative;
overflow: hidden;
border: 1px solid rgba(59, 130, 246, 0.2);
}

.cta-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: url('https://bettercheats.com/images/cta-pattern.png');
background-size: cover;
opacity: 0.05;
z-index: 0;
}

.cta-title {
font-size: 2rem;
margin-bottom: var(--space-md);
position: relative;
z-index: 1;
}

.cta-description {
color: var(--text-secondary);
max-width: 700px;
margin: 0 auto var(--space-xl);
position: relative;
z-index: 1;
}

.cta-buttons {
display: flex;
justify-content: center;
gap: var(--space-md);
margin-bottom: var(--space-lg);
position: relative;
z-index: 1;
flex-wrap: wrap;
}

/* Footer */
.footer {
background-color: var(--bg-secondary);
border-top: 1px solid rgba(59, 130, 246, 0.2);
padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: var(--space-xl);
margin-bottom: var(--space-xl);
}

.footer-logo {
display: flex;
align-items: center;
margin-bottom: var(--space-md);
}

.footer-description {
color: var(--text-secondary);
margin-bottom: var(--space-lg);
}

.footer-contact-label {
font-size: 0.875rem;
color: var(--text-muted);
margin-bottom: var(--space-xs);
text-transform: uppercase;
letter-spacing: 1px;
}

.footer-contact-link {
color: var(--text-primary);
transition: all 0.2s ease;
}

.footer-contact-link:hover {
color: var(--yellow-400);
}

.footer-heading {
font-size: 1.25rem;
margin-bottom: var(--space-lg);
position: relative;
}

.footer-heading::after {
content: '';
position: absolute;
bottom: -8px;
left: 0;
width: 40px;
height: 3px;
background: linear-gradient(90deg, var(--blue-500), var(--yellow-400));
border-radius: var(--radius-full);
}

.footer-links {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: var(--space-sm) var(--space-lg);
}

.footer-link {
color: var(--text-secondary);
transition: all 0.2s ease;
display: flex;
align-items: center;
}

.footer-link:hover {
color: var(--yellow-400);
transform: translateX(3px);
}

.footer-link-dot {
display: inline-block;
width: 6px;
height: 6px;
background-color: var(--blue-500);
border-radius: var(--radius-full);
margin-right: var(--space-sm);
}

.payment-icons {
display: flex;
flex-wrap: wrap;
gap: var(--space-md);
}

.payment-icon {
width: 60px;
height: 40px;
background-color: rgba(255, 255, 255, 0.05);
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s ease;
}

.payment-icon:hover {
background-color: rgba(255, 255, 255, 0.1);
transform: translateY(-2px);
}

.footer-bottom {
text-align: center;
padding-top: var(--space-lg);
border-top: 1px solid rgba(59, 130, 246, 0.1);
color: var(--text-muted);
font-size: 0.875rem;
}

.footer-social {
display: flex;
justify-content: center;
gap: var(--space-md);
margin-top: var(--space-md);
}

.footer-social-link {
width: 36px;
height: 36px;
border-radius: var(--radius-full);
background-color: rgba(59, 130, 246, 0.1);
display: flex;
align-items: center;
justify-content: center;
color: var(--text-secondary);
transition: all 0.3s ease;
}

.footer-social-link:hover {
background-color: var(--blue-500);
color: var(--text-primary);
transform: translateY(-3px);
}

/* Animations */
@keyframes pulse {
0% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(1.1);
opacity: 0.8;
}
100% {
transform: scale(1);
opacity: 1;
}
}

/* Responsive styles */
@media (max-width: 768px) {
.nav {
display: none;
}

.mobile-menu-button {
display: block;
}

.hero-title {
font-size: 2rem;
}

.hero-description {
font-size: 1rem;
}

.hero-image {
display: none;
}

.hero-content {
max-width: 100%;
}

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

.grid-3, .grid-4 {
grid-template-columns: 1fr;
}

.category-filter {
justify-content: center;
}

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

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

.game-nav-list {
flex-wrap: nowrap;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
padding-bottom: var(--space-sm);
}

.game-nav-item {
flex: 0 0 auto;
}

.status-table th,
.status-table td {
padding: var(--space-md);
}

.status-table th:nth-child(3),
.status-table td:nth-child(3) {
display: none;
}

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

.footer-links {
grid-template-columns: 1fr;
}
}

@media (max-width: 480px) {
.hero-title {
font-size: 1.75rem;
}

.section-title {
font-size: 1.5rem;
}

.card-image {
height: 160px;
}

.product-image {
height: 160px;
}

.game-title {
font-size: 1.5rem;
}

.game-icon {
width: 50px;
height: 50px;
}

.game-icon i {
font-size: 1.25rem;
}

.status-table th,
.status-table td {
padding: var(--space-sm);
font-size: 0.875rem;
}
}</pre></body></html>