/*
 * Neon Tokyo Theme - Claymorphism Style
 * Generated for Nova Alpha Games - Free Social Entertainment
 * Version: 1.0
 * Copyright: © 2026 Nova Alpha Games Interactive
 */

/* --- GLOBAL STYLES & RESET --- */
* {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scroll on all screens */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

body {
    font-family: 'Tahoma', 'Geneva', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #ffe8f8; /* Text color */
    background-color: #06020e; /* Dark BG */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 100vw;
    overflow-x: hidden;
}

main {
    flex: 1;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

a {
    color: #00ffff; /* Accent color */
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ffff00; /* Secondary accent color */
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    color: #ffff00; /* Secondary accent color for headings */
    margin-bottom: 16px;
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(2rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
}

h4 {
    font-size: clamp(1.1rem, 2vw, 1.6rem);
}

p {
    margin-bottom: 16px;
    font-size: max(15px, 1rem); /* Minimum 15px */
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img, canvas, iframe, video, svg {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    box-sizing: border-box;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInHero {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes cardEnter {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 0 8px rgba(255, 255, 255, 0.2); }
    50% { box-shadow: 0 0 22px rgba(255, 255, 255, 0.5); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Apply animations to main content and hero */
main {
    animation: fadeInUp 0.65s ease-out both;
}

/* --- CONTAINER & LAYOUT UTILITIES --- */
.coku0c-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* --- HEADER STYLES --- */
.coku0c-header {
    padding: 20px 20px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); /* For Safari */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
}

.coku0c-header .coku0c-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coku0c-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff0080; /* Primary color */
    text-decoration: none;
}

.coku0c-logo span {
    color: #ffe8f8;
}

.coku0c-desktop-nav ul {
    display: flex;
    gap: 28px; /* Increased spacing */
    align-items: center;
    justify-content: center;
}

.coku0c-desktop-nav a {
    font-size: max(14px, 0.875rem);
    font-weight: 500;
    position: relative;
    padding-bottom: 4px; /* Space for underline */
}

.coku0c-desktop-nav a::after {
    content: '';
    display: block;
    height: 2px;
    background: #00ffff; /* Accent color */
    transform: scaleX(0);
    transition: transform 0.25s ease;
    transform-origin: left;
    margin-top: 2px; /* Adjust if needed */
}

.coku0c-desktop-nav a:hover::after {
    transform: scaleX(1);
}

.coku0c-header-right {
    display: flex;
    align-items: center;
}

.coku0c-age-flag {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.coku0c-age-flag span {
    font-weight: 600;
    color: #ffff00; /* Secondary accent */
}

.coku0c-hamburger {
    display: none; /* Hidden by default, shown on mobile */
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid #00ffff; /* Accent color */
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 1.6rem;
    cursor: pointer;
    color: #00ffff; /* Accent color */
    transition: all 0.3s ease;
}

.coku0c-hamburger:hover {
    background-color: rgba(0, 255, 255, 0.2);
    border-color: #ffff00; /* Secondary accent */
    color: #ffff00;
}

/* Mobile Menu */
.coku0c-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.coku0c-mobile-menu ul {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.coku0c-mobile-menu a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.coku0c-mobile-menu a:hover {
    color: #ff0080; /* Primary color */
}

.coku0c-close-menu {
    position: absolute;
    top: 20px;
    right: 24px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
}

.coku0c-close-menu:hover {
    color: #ff0080; /* Primary color */
    transform: rotate(180deg);
}

/* --- DISCLOSURE BAR --- */
#coku0c-disclosure-bar {
    background: #1c1400; /* Deep, dark orange-brown */
    color: #ffe082; /* Light amber text */
    text-align: center;
    padding: 9px 20px;
    font-size: 0.82em;
    font-weight: 700;
    letter-spacing: 0.3px;
    border-bottom: 2px solid #f57f17; /* Bright orange border */
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

#coku0c-disclosure-bar span {
    border: 1px solid #ffa000;
    padding: 1px 7px;
    border-radius: 3px;
    font-size: 0.88em;
    background-color: rgba(255, 160, 0, 0.1);
}

/* --- HERO SECTION --- */
.coku0c-hero {
    display: flex;
    flex-wrap: wrap-reverse; /* Image first, then text */
    justify-content: center;
    align-items: center; /* Center vertically */
    padding: 120px 5% 60px; /* Increased vertical padding */
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    text-align: left;
    gap: 50px; /* Space between text and image */
    min-height: 60vh; /* Ensure minimum height */
    background: linear-gradient(135deg, #ff0080 0%, #00ffff 50%, #06020e 100%); /* Vibrant gradient */
    background-size: 200% 200%; /* For animation */
    animation: gradientShift 10s ease infinite; /* Background gradient animation */
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.coku0c-hero-image-wrapper { /* Wrapper for image control */
    flex: 1;
    min-width: 350px;
    max-width: 550px; /* Adjusted max width */
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coku0c-hero img {
    width: 100%;
    aspect-ratio: 1/1; /* Square image */
    object-fit: cover;
    border-radius: 50%; /* Circular image */
    border: 18px solid #06020e; /* Dark border to frame it */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4); /* Deep shadow */
    animation: slideInHero 0.7s 0.1s ease-out both;
}

.coku0c-hero-text {
    flex: 1.5; /* Takes more space than image */
    min-width: 350px;
    padding-left: 40px; /* Space from image */
    z-index: 2;
    text-align: left;
    animation: slideInHero 0.7s 0.25s ease-out both;
}

.coku0c-hero h1 {
    font-size: clamp(2.2rem, 6vw, 4.5rem); /* Larger hero title */
    margin-bottom: 20px;
    color: #fff; /* White for primary headline */
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6); /* Neon glow */
}

.coku0c-hero p {
    font-size: max(16px, 1.1rem); /* Slightly larger paragraph */
    margin-bottom: 30px;
    opacity: 0.95;
}

.coku0c-hero .coku0c-btn {
    font-size: 1rem; /* Larger button text */
    padding: 16px 32px;
    background: linear-gradient(90deg, #ff0080, #00ffff); /* Primary gradient */
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.5), 0 0 25px rgba(0, 255, 255, 0.4);
    border: none;
    animation: btnGlow 2.5s ease-in-out infinite;
}

.coku0c-hero .coku0c-btn:hover {
    background: linear-gradient(90deg, #00ffff, #ff0080); /* Reverse gradient on hover */
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.7), 0 0 35px rgba(0, 255, 255, 0.6);
}

.coku0c-trust-badges {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.coku0c-trust-badge {
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffff00; /* Secondary accent */
    border: 1px solid rgba(255, 255, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden; /* For shimmer */
}

.coku0c-trust-badge::before { /* Shimmer effect */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 0, 0.3), transparent);
    background-size: 200% center;
    animation: shimmer 4s linear infinite;
}

.coku0c-trust-badge i {
    color: #ff0080; /* Primary accent */
    font-size: 1.1rem;
}

/* --- GAME GRID STYLES --- */
.coku0c-game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px; /* Larger gap */
    max-width: 1300px;
    margin: 80px auto; /* Increased margin */
    padding: 0 20px;
}

.coku0c-game-grid h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.coku0c-game-card {
    background: linear-gradient(135deg, rgba(255,0,128, 0.1), rgba(0,255,255, 0.1)); /* Subtle gradient background */
    border-radius: 24px; /* More rounded */
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 4px solid rgba(255,255,255,0.1); /* Subtle border */
    display: flex; /* For content alignment */
    flex-direction: column;
}

.coku0c-game-card:hover {
    transform: translateY(-10px) scale(1.03); /* More pronounced lift */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4); /* Deeper shadow on hover */
}

.coku0c-game-card img {
    width: 100%;
    height: 240px; /* Fixed height for consistency */
    object-fit: cover;
    border-bottom: 4px solid rgba(0, 255, 255, 0.2); /* Accent color border */
}

.coku0c-game-card-content {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes button to bottom */
}

.coku0c-game-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #ffff00; /* Secondary accent for card title */
}

.coku0c-game-card p {
    font-size: max(14px, 0.9rem);
    opacity: 0.9;
    flex-grow: 1; /* Allows description to take available space */
    margin-bottom: 16px;
}

.coku0c-game-card .coku0c-btn {
    width: 100%; /* Full width button */
    max-width: 200px; /* Constrained width */
    margin: 0 auto; /* Center button */
    background: linear-gradient(90deg, #00ffff, #ffff00); /* Accent gradient */
    color: #06020e; /* Dark text for contrast */
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 20px;
    border-radius: 40px;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.4), 0 0 20px rgba(255, 255, 0, 0.3);
}

.coku0c-game-card .coku0c-btn:hover {
    background: linear-gradient(90deg, #ffff00, #00ffff); /* Reverse gradient */
    color: #06020e;
    box-shadow: 0 0 18px rgba(0, 255, 255, 0.6), 0 0 28px rgba(255, 255, 0, 0.5);
}

/* --- CONTENT SECTION STYLES --- */
.coku0c-content-section {
    padding: 80px 20px;
    line-height: 1.8;
    font-size: 1.05rem;
    background-color: rgba(0,0,0,0.1); /* Slightly darker than body BG */
    border-left: 6px solid #ff0080; /* Primary color accent border */
    margin-bottom: 60px; /* Spacing below section */
}

.coku0c-content-section h2 {
    text-align: left;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    margin-bottom: 24px;
    color: #00ffff; /* Accent color for section titles */
}

.coku0c-content-section p {
    font-size: max(15px, 1rem);
    margin-bottom: 18px;
    opacity: 0.92;
}

.coku0c-content-section strong {
    color: #ffff00; /* Secondary accent for emphasis */
}

/* --- FOOTER STYLES --- */
.coku0c-footer {
    padding: 50px 20px;
    background: rgba(0, 0, 0, 0.2); /* Darker footer background */
    margin-top: auto; /* Pushes footer to the bottom */
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.coku0c-footer .coku0c-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.coku0c-footer ul {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.coku0c-footer a {
    font-size: max(14px, 0.875rem);
    font-weight: 500;
    opacity: 0.9;
    color: #ffe8f8; /* Default footer link color */
}

.coku0c-footer a:hover {
    color: #00ffff; /* Accent color on hover */
    text-decoration: underline;
}

.coku0c-footer-contact p {
    font-size: max(14px, 0.9rem);
    margin-bottom: 10px;
}

.coku0c-footer-contact p strong {
    color: #ffff00; /* Secondary accent for labels */
}

.coku0c-footer-contact a {
    color: #00ffff;
}

.coku0c-footer-contact a:hover {
    color: #ffff00;
}

.coku0c-footer > div > div:nth-of-type(2) { /* Specific styles for the 18+ warning block */
    border-top: 2px dashed rgba(255, 255, 255, 0.15);
    padding-top: 25px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.coku0c-footer h4 {
    margin: 0 0 10px 0;
    color: #ffcc00; /* Bright yellow for section heading */
    font-size: 1.3rem;
}

.coku0c-footer p {
    margin: 0;
    opacity: 0.9;
    font-size: 1em;
    text-align: justify; /* Justify legal text */
}

.coku0c-footer p:not(:last-child) {
    margin-bottom: 15px;
}

.coku0c-footer a[rel="nofollow"] {
    color: #ffff00; /* Yellow for external links */
    font-weight: 600;
}

.coku0c-footer a[rel="nofollow"]:hover {
    color: #ff0080; /* Primary color on hover */
}

.coku0c-footer .coku0c-copyright {
    margin-top: 20px;
    text-align: center;
    font-size: 0.8em;
    opacity: 0.7;
}

.coku0c-footer .coku0c-copyright a {
    color: inherit;
    text-decoration: underline;
}

.coku0c-footer .coku0c-copyright a:hover {
    color: #00ffff;
}

/* Regulatory Info styling */
.coku0c-footer div[style*="border-top:1px solid rgba(255,255,255,0.1);"] {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
    margin-top: 12px;
    font-size: 0.78em;
    opacity: 0.75;
    line-height: 1.55;
    text-align: left;
}

.coku0c-footer div[style*="border-top:1px solid rgba(255,255,255,0.1);"] strong {
    display: block;
    margin-bottom: 4px;
    opacity: 0.9;
    color: #ffff00;
}

/* --- BUTTON STYLES (GENERAL) --- */
.coku0c-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    background: linear-gradient(90deg, #00ffff, #ffff00); /* Default accent gradient */
    color: #06020e; /* Dark text for contrast */
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4), 0 0 25px rgba(255, 255, 0, 0.3);
}

.coku0c-btn:hover {
    background: linear-gradient(90deg, #ffff00, #00ffff); /* Reverse gradient on hover */
    color: #06020e;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6), 0 0 35px rgba(255, 255, 0, 0.5);
    animation: btnGlow 2.5s ease-in-out infinite; /* Re-apply glow on hover */
}

/* --- RESPONSIVE DESIGN --- */

/* === TABLET (≤1024px) === */
@media (max-width: 1024px) {
    .coku0c-hero {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
        padding: 80px 5% 60px !important;
        gap: 40px !important;
        text-align: center !important;
        min-height: unset !important; /* Allow height to adjust */
    }
    .coku0c-hero-image-wrapper {
        max-width: 400px; /* Slightly smaller on tablet */
    }
    .coku0c-hero h1 {
        font-size: clamp(1.8rem, 5vw, 3rem) !important;
    }
    .coku0c-hero-text {
        padding-left: 0 !important;
        text-align: center !important;
    }
    .coku0c-hero-image-wrapper,
    .coku0c-hero img {
        margin: 0 auto; /* Center image */
    }
    .coku0c-hero-image {
        display: block !important; /* Keep image visible */
    }
    .coku0c-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important; /* Adjust for smaller screens */
        gap: 24px !important;
    }
    .coku0c-game-card img {
        height: 200px !important;
    }
    .coku0c-content-section {
        padding: 50px 20px !important;
    }
}

/* === MOBILE (≤768px) === */
@media (max-width: 768px) {
    html, body {
        font-size: 16px; /* Base font size for mobile */
        overflow-x: hidden;
    }
    p, li, td, span, .coku0c-game-card p {
        font-size: max(15px, 1rem) !important;
    }
    small, .small, figcaption, sub, sup, .legal, .disclaimer-text, .coku0c-footer-contact p, .coku0c-footer p {
        font-size: max(13px, 0.82rem) !important;
    }
    .coku0c-header {
        padding: 12px 16px !important;
        position: sticky;
        top: 0;
        z-index: 100;
    }
    .coku0c-desktop-nav {
        display: none !important;
    }
    .coku0c-hamburger {
        display: flex !important; /* Show hamburger */
    }
    .coku0c-hero {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
        padding: 60px 16px 40px !important;
        text-align: center !important;
        gap: 24px !important;
        min-height: unset !important;
    }
    .coku0c-hero h1, .coku0c-hero-text h1 {
        font-size: clamp(1.6rem, 7vw, 2.4rem) !important;
        line-height: 1.2 !important;
        margin-bottom: 16px !important;
    }
    .coku0c-hero p {
        font-size: max(15px, 1rem) !important;
    }
    .coku0c-hero-image-wrapper {
        max-width: 300px; /* Smaller image on mobile */
    }
    .coku0c-hero img {
        border-width: 10px !important;
    }
    .coku0c-hero-text {
        padding-left: 0 !important;
    }
    .coku0c-trust-badges {
        justify-content: center;
    }
    .coku0c-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important; /* Two columns */
        gap: 16px !important;
        padding: 0 12px !important;
        margin: 50px auto;
    }
    .coku0c-game-card {
        border-radius: 16px !important;
    }
    .coku0c-game-card img {
        height: 160px !important; /* Smaller card image */
    }
    .coku0c-game-card-content {
        padding: 16px !important;
    }
    .coku0c-game-card h3 {
        font-size: 1.2rem !important;
    }
    .coku0c-btn {
        padding: 12px 24px !important;
        font-size: max(14px, 0.875rem) !important;
    }
    .coku0c-content-section {
        padding: 40px 16px !important;
        font-size: max(15px, 1rem) !important;
        border-left-width: 4px !important;
    }
    .coku0c-content-section h2 {
        font-size: clamp(1.5rem, 4vw, 2.2rem) !important;
    }
    .coku0c-footer {
        padding: 30px 16px !important;
        font-size: max(14px, 0.875rem) !important;
    }
    .coku0c-footer ul {
        flex-direction: column !important;
        gap: 10px !important;
    }
    .coku0c-footer h4 {
        font-size: 1.2rem !important;
    }
    .coku0c-footer > div > div:nth-of-type(2) {
        padding-top: 15px !important;
        margin-top: 15px !important;
        margin-bottom: 15px !important;
    }
    .coku0c-copyright {
        font-size: 0.75em !important;
    }
}

/* === SMALL MOBILE (≤480px) === */
@media (max-width: 480px) {
    .coku0c-hero h1, .coku0c-hero-text h1 {
        font-size: clamp(1.4rem, 8vw, 2rem) !important;
    }
    .coku0c-hero p {
        font-size: max(14px, 0.95rem) !important;
    }
    .coku0c-hero-image-wrapper {
        max-width: 250px;
    }
    .coku0c-game-grid {
        grid-template-columns: 1fr !important; /* Single column */
    }
    .coku0c-game-card img {
        height: 180px !important; /* Slightly larger than tablet */
    }
    .coku0c-btn {
        font-size: 0.85rem !important;
        padding: 10px 20px !important;
    }
    .coku0c-trust-badge {
        font-size: 0.75rem !important;
        padding: 6px 12px !important;
    }
}

/* === DESKTOP ONLY: Hide hamburger, show desktop nav === */
@media (min-width: 769px) {
    .coku0c-hamburger {
        display: none !important;
    }
    .coku0c-desktop-nav {
        display: flex !important;
    }
    .coku0c-logo {
        margin-right: 20px; /* Space between logo and nav */
    }
}

/* === VERY SMALL SCREENS - ENSURE NO HORIZONTAL SCROLL === */
@media (max-width: 360px) {
    .coku0c-container {
        padding-left: 10px;
        padding-right: 10px;
    }
    .coku0c-hero {
        padding-left: 5%;
        padding-right: 5%;
    }
    .coku0c-game-grid {
        padding-left: 10px;
        padding-right: 10px;
    }
}