/* ========================================
   8UUU.com - Global Styles
   ======================================== */

:root {
    --primary: #e6b422;
    --primary-dark: #c99a1d;
    --primary-light: #f5d76e;
    --secondary: #1a1a2e;
    --secondary-light: #16213e;
    --accent: #0f3460;
    --bg-dark: #0a0a1a;
    --bg-card: #141428;
    --bg-card-hover: #1c1c3a;
    --text-white: #ffffff;
    --text-light: #b8b8d0;
    --text-muted: #7a7a9a;
    --success: #00c853;
    --danger: #ff1744;
    --border: rgba(230, 180, 34, 0.15);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: var(--primary-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-white);
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    background: var(--secondary);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1100;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}
.logo img {
    width: 140px;
    height: auto;
}

.main-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 6px;
}
.main-nav .nav-list li a {
    display: block;
    padding: 8px 16px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.main-nav .nav-list li a:hover,
.main-nav .nav-list li a.active {
    color: var(--primary);
    background: rgba(230, 180, 34, 0.1);
}

.header-actions {
    display: flex;
    gap: 10px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--secondary);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 180, 34, 0.4);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--secondary);
}
.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: var(--text-white);
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    color: var(--text-white);
}
.btn-large {
    padding: 14px 36px;
    font-size: 1.1rem;
}

/* Mobile Menu Toggle (hamburger) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Full-screen mobile overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s ease;
}
.mobile-menu-close:hover {
    color: var(--primary);
}
.mobile-menu-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}
.mobile-nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}
.mobile-nav ul li a {
    display: block;
    padding: 16px 40px;
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.2s ease;
}
.mobile-nav ul li a:hover,
.mobile-nav ul li a:active {
    color: var(--primary);
}
.mobile-actions {
    display: flex;
    gap: 12px;
    padding: 24px 20px 40px;
    justify-content: center;
    flex-shrink: 0;
}
.mobile-actions .btn {
    min-width: 130px;
    text-align: center;
}
.mobile-actions .btn {
    flex: 1;
    text-align: center;
}

/* ========================================
   BREADCRUMB
   ======================================== */
.breadcrumb {
    background: var(--secondary-light);
    padding: 12px 0;
}
.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 8px;
    font-size: 0.9rem;
}
.breadcrumb-list li:not(:last-child)::after {
    content: '›';
    margin-left: 8px;
    color: var(--text-muted);
}
.breadcrumb-list a {
    color: var(--text-muted);
}
.breadcrumb-list a:hover {
    color: var(--primary);
}
.breadcrumb-list .current {
    color: var(--primary);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--bg-dark) 50%, var(--accent) 100%);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 180, 34, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero-text h1 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}
.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}
.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(230, 180, 34, 0.08);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--text-white);
}
.hero-features .feature .icon {
    font-size: 1.4rem;
}
.hero-actions {
    display: flex;
    gap: 16px;
}
.hero-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Page Hero (Subpages) */
.page-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    padding: 50px 0 60px;
    text-align: center;
}
.page-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: var(--primary);
}
.page-hero .subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 30px;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}
.stat-item {
    text-align: center;
}
.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
    padding: 70px 0;
    background: var(--secondary);
}
.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--text-white);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    transition: var(--transition);
}
.feature-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(230, 180, 34, 0.1);
}
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--primary);
}
.feature-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========================================
   GAMES SECTION
   ======================================== */
.popular-games {
    padding: 70px 0;
}
.popular-games h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(230, 180, 34, 0.15);
    border-color: var(--primary);
}
.game-card .game-image {
    position: relative;
    overflow: hidden;
}
.game-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: var(--transition);
}
.game-card:hover img {
    transform: scale(1.05);
}
.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 10px;
}
.game-overlay .popularity {
    background: rgba(0,0,0,0.6);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-white);
}
.game-overlay .live-indicator {
    background: rgba(255,23,68,0.8);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #fff;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.game-info {
    padding: 20px;
}
.game-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.game-info p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}
.game-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.game-stats span {
    font-size: 0.78rem;
    background: rgba(230, 180, 34, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    color: var(--primary);
}
.game-card .btn {
    width: 100%;
    text-align: center;
    display: block;
}

.games-cta {
    text-align: center;
    margin-top: 40px;
}

/* ========================================
   PROMOTIONS
   ======================================== */
.promotions {
    padding: 70px 0;
    background: var(--secondary);
}
.promotions h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}
.promotions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.promo-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}
.promo-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(230, 180, 34, 0.1), var(--bg-card));
}
.promo-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--danger);
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.promo-card h3 {
    font-size: 1.15rem;
    margin-bottom: 16px;
}
.promo-amount {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 12px;
}
.promo-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.92rem;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    padding: 70px 0;
}
.testimonials h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 24px;
    transition: var(--transition);
}
.testimonial-card:hover {
    border-color: var(--primary);
}
.testimonial-card .stars {
    margin-bottom: 16px;
    font-size: 1.1rem;
}
.testimonial-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 16px;
}
.testimonial-card .author {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
}
.testimonial-card .tip-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}
.testimonial-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

/* ========================================
   CATEGORIES
   ======================================== */
.slots-categories {
    padding: 70px 0;
    background: var(--secondary);
}
.slots-categories h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}
.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}
.category-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}
.category-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.category-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.game-count {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
    padding: 70px 0;
    background: var(--secondary);
}
.faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: var(--transition);
}
.faq-item:hover {
    border-color: var(--primary);
}
.faq-item h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item h3::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--primary);
    transition: var(--transition);
}
.faq-item.active h3::after {
    transform: rotate(45deg);
}
.faq-item p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ========================================
   ARTICLE / CONTENT PAGE
   ======================================== */
.article-content {
    padding: 50px 0;
}
.article-body {
    max-width: 800px;
    margin: 0 auto;
}
.article-body h2 {
    font-size: 1.6rem;
    margin: 36px 0 16px;
    color: var(--primary);
    text-align: left;
}
.article-body h3 {
    font-size: 1.25rem;
    margin: 28px 0 12px;
    color: var(--text-white);
}
.article-body p {
    margin-bottom: 18px;
    line-height: 1.9;
    color: var(--text-light);
}
.article-body ul, .article-body ol {
    margin: 12px 0 24px 24px;
    color: var(--text-light);
}
.article-body li {
    margin-bottom: 8px;
    line-height: 1.7;
}
.article-body strong {
    color: var(--text-white);
}
.article-body blockquote {
    border-left: 4px solid var(--primary);
    padding: 16px 24px;
    margin: 24px 0;
    background: rgba(230, 180, 34, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text-light);
}

.article-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}
.sidebar {
    position: sticky;
    top: 80px;
    align-self: start;
}
.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
}
.sidebar-widget h4 {
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: var(--primary);
}
.sidebar-widget ul {
    list-style: none;
}
.sidebar-widget li {
    margin-bottom: 10px;
}
.sidebar-widget li a {
    color: var(--text-light);
    font-size: 0.92rem;
    display: block;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.sidebar-widget li a:hover {
    background: rgba(230, 180, 34, 0.1);
    color: var(--primary);
}
.sidebar-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
}
.sidebar-cta h4 {
    color: var(--secondary) !important;
    font-size: 1.1rem;
    margin-bottom: 12px;
}
.sidebar-cta p {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
    opacity: 0.8;
}
.sidebar-cta .btn {
    background: var(--secondary);
    color: var(--primary);
}

/* Game Info Table */
.game-info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
}
.game-info-table th,
.game-info-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.game-info-table th {
    background: rgba(230, 180, 34, 0.1);
    color: var(--primary);
    font-weight: 600;
    width: 40%;
}
.game-info-table td {
    color: var(--text-light);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--secondary);
    border-top: 1px solid var(--border);
    padding: 50px 0 0;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo {
    margin-bottom: 16px;
}
.footer-logo img {
    width: 140px;
}
.footer-section > p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.footer-section h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 600;
}
.footer-section ul {
    list-style: none;
}
.footer-section ul li {
    margin-bottom: 10px;
}
.footer-section ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-section ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 14px;
    margin-top: 16px;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(230, 180, 34, 0.1);
    border: 1px solid var(--border);
    color: var(--primary);
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--primary);
    color: var(--secondary);
}
.social-links a svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-disclaimer p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.footer-payments {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-payments span {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.payment-icons {
    display: flex;
    gap: 8px;
}
.payment-icons img {
    width: 40px;
    height: 25px;
    object-fit: contain;
    filter: grayscale(0.5);
    transition: var(--transition);
}
.payment-icons img:hover {
    filter: grayscale(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    .hero-image {
        display: none;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .promotions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .article-sidebar {
        grid-template-columns: 1fr;
    }
    .sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .main-nav, .header-actions {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .hero-text h1 {
        font-size: 1.8rem;
    }
    .hero-features {
        grid-template-columns: 1fr;
    }
    .hero-actions {
        flex-direction: column;
    }
    .page-hero h1 {
        font-size: 1.6rem;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .features-grid,
    .promotions-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
    .games-grid {
        grid-template-columns: 1fr;
    }
}
