:root {
    --red: #DC2626;
    --red-dark: #991B1B;
    --red-light: #FEE2E2;
    --black: #0A0A0A;
    --black-light: #1A1A1A;
    --black-mid: #2D2D2D;
    --white: #FFFFFF;
    --gray: #9CA3AF;
    --gray-light: #F3F4F6;
    --gold: #FFD700;
    --gold-dark: #D4A800;
    --font: 'Prompt', sans-serif;
    --shadow: 0 4px 20px rgba(0,0,0,0.3);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background: var(--black);
    color: var(--white);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: var(--red);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #EF4444, var(--red));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--red);
}

.btn-outline:hover {
    background: var(--red);
    color: var(--white);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    color: var(--black);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--black);
    border-bottom: 1px solid rgba(220, 38, 38, 0.3);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
}

.logo:hover {
    color: var(--white);
}

.logo-icon {
    color: var(--red);
    font-size: 1.8rem;
}

/* Desktop Nav */
.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.desktop-nav .nav-list a {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.desktop-nav .nav-list a:hover,
.desktop-nav .nav-list a.active {
    color: var(--red);
    background: rgba(220, 38, 38, 0.1);
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.98);
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1050;
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-nav .nav-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 4px;
    text-align: center;
}

.mobile-nav .nav-list a {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    display: block;
}

.mobile-nav .nav-list a:hover,
.mobile-nav .nav-list a.active {
    color: var(--red);
}

.mobile-nav .dropdown-menu {
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    min-width: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--black-light);
    border: 1px solid var(--black-mid);
    border-radius: var(--radius-sm);
    min-width: 200px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 100;
}

.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    font-size: 0.85rem;
    border-radius: 0;
}

.dropdown-menu li:first-child a {
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.dropdown-menu li:last-child a {
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1100;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    margin-top: 70px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    padding: 20px;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content h1 strong {
    color: var(--red);
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.page-section {
    padding: 80px 0;
}

.section-dark {
    background: var(--black-light);
}

.section-red {
    background: linear-gradient(135deg, var(--red-dark), var(--red));
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-title strong {
    color: var(--red);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--black-mid);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--red);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Game Cards */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.game-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--red);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.3);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 20px 15px 15px;
}

.game-card-overlay h3 {
    font-size: 0.95rem;
    font-weight: 600;
}

/* Articles List */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.article-card {
    background: var(--black-mid);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}

.article-card:hover {
    transform: translateY(-3px);
    border-color: var(--red);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.2);
}

.article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-card-body {
    padding: 20px;
}

.article-card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-card-body h3 a {
    color: var(--white);
}

.article-card-body h3 a:hover {
    color: var(--red);
}

.article-card-body p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.article-card-body .read-more {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Article Content */
.article-header {
    position: relative;
    height: 400px;
    margin-top: 70px;
    overflow: hidden;
}

.article-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 20%, rgba(0,0,0,0.85));
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.article-header-overlay h1 {
    font-size: 2.5rem;
    font-weight: 900;
    max-width: 900px;
    line-height: 1.3;
}

.article-header-overlay h1 strong {
    color: var(--red);
}

.breadcrumb {
    padding: 15px 0;
    font-size: 0.85rem;
    color: var(--gray);
}

.breadcrumb a {
    color: var(--gray);
}

.breadcrumb a:hover {
    color: var(--red);
}

.breadcrumb span {
    margin: 0 8px;
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.article-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 50px 0 20px;
    color: var(--white);
    border-left: 4px solid var(--red);
    padding-left: 16px;
}

.article-content h2 strong {
    color: var(--red);
}

.article-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 35px 0 15px;
    color: var(--white);
}

.article-content h3 strong {
    color: var(--red);
}

.article-content p {
    margin-bottom: 20px;
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 2;
}

.article-content strong {
    color: var(--gold);
    font-weight: 600;
}

.article-content ul, .article-content ol {
    margin: 20px 0;
    padding-left: 24px;
}

.article-content li {
    margin-bottom: 8px;
    color: rgba(255,255,255,0.85);
}

.article-content img {
    border-radius: var(--radius);
    margin: 30px 0;
    box-shadow: var(--shadow);
}

.article-content .cta-box {
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    margin: 40px 0;
}

.article-content .cta-box h3 {
    color: var(--white);
    margin: 0 0 10px;
}

.article-content .cta-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.article-content .info-box {
    background: var(--black-mid);
    border: 1px solid var(--red);
    border-radius: var(--radius);
    padding: 24px;
    margin: 30px 0;
}

.article-content .info-box h4 {
    color: var(--red);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.95rem;
}

.article-content table th {
    background: var(--red-dark);
    color: var(--white);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
}

.article-content table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--black-mid);
    color: rgba(255,255,255,0.85);
}

.article-content table tr:nth-child(even) td {
    background: rgba(255,255,255,0.03);
}

.article-sidebar-link {
    display: block;
    background: var(--black-mid);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 12px;
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
}

.article-sidebar-link:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateX(5px);
}

/* Reviews */
.reviews-section {
    background: var(--black-light);
    padding: 80px 0;
}

.reviews-section h2 {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
}

.reviews-section h2 strong {
    color: var(--red);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.review-card {
    background: var(--black-mid);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--gold);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.review-name {
    font-weight: 600;
    font-size: 1rem;
}

.review-stars {
    color: var(--gold);
    font-size: 0.9rem;
}

.stars {
    color: var(--gold);
}

.review-text {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Forms */
.form-section {
    margin-top: 70px;
    padding: 80px 0;
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    background: var(--black-light);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--black-mid);
    box-shadow: var(--shadow);
}

.form-container h1 {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
}

.form-container h1 strong {
    color: var(--red);
}

.form-container .form-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--black);
    border: 1px solid var(--black-mid);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-actions {
    margin-top: 24px;
}

.form-actions .btn {
    width: 100%;
}

.form-link {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--gray);
}

/* Promo Cards */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.promo-card {
    background: var(--black-mid);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.promo-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.15);
}

.promo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.promo-card-body {
    padding: 24px;
}

.promo-card-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gold);
}

.promo-card-body p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.promo-badge {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info-card {
    background: var(--black-mid);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-info-card .contact-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.contact-info-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Partner Links */
.partner-section {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid var(--black-mid);
    margin-top: 30px;
}

.partner-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray);
}

.partner-links {
    font-size: 0.9rem;
}

.partner-links a {
    color: var(--gray);
    margin: 0 4px;
}

.partner-links a:hover {
    color: var(--red);
}

/* Footer */
.site-footer {
    background: var(--black-light);
    border-top: 2px solid var(--red);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    color: var(--red);
    font-size: 1.8rem;
}

.footer-desc {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-col h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-col h3 strong {
    color: var(--red);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--gray);
}

.footer-links a {
    color: var(--gray);
}

.footer-links a:hover {
    color: var(--red);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid var(--black-mid);
    font-size: 0.85rem;
    color: var(--gray);
}

.footer-bottom strong {
    color: var(--red);
}

/* Banner Section */
.banner-section {
    padding: 40px 0;
}

.banner-slider {
    overflow: hidden;
    border-radius: var(--radius);
}

.banner-slider img {
    width: 100%;
    border-radius: var(--radius);
}

/* Stats */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--red);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Animation - content visible by default, animated only when JS loads */
.js-ready .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-ready .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Internal Link Style */
.internal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
}

.internal-links a {
    display: inline-block;
    background: var(--black-mid);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.internal-links a:hover {
    border-color: var(--red);
    color: var(--red);
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-nav {
        display: flex;
    }

    .header-actions .btn {
        display: none;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-section {
        height: 60vh;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .article-header {
        height: 250px;
    }

    .article-header-overlay h1 {
        font-size: 1.5rem;
    }

    .article-content h2 {
        font-size: 1.4rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .promo-grid {
        grid-template-columns: 1fr;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }
}
