* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #F97316;
    --secondary-color: #10B981;
    --accent-color: #3B82F6;
    --dark-color: #1F2937;
    --light-color: #F3F4F6;
    --gray-color: #6B7280;
    --white-color: #FFFFFF;
    --border-color: #E5E7EB;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.7;
    color: var(--dark-color);
    background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 2.75rem;
}

h2 {
    font-size: 2.25rem;
}

h4 {
    font-size: 1.25rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar {
    background: var(--dark-color);
    color: var(--white-color);
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span {
    margin-right: 1.5rem;
}

.top-info i {
    margin-right: 0.375rem;
    color: var(--primary-color);
}

.top-social a {
    color: var(--white-color);
    margin-left: 1rem;
    font-size: 1rem;
}

.top-social a:hover {
    color: var(--primary-color);
}

.main-nav {
    background: var(--white-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.site-logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: 'Roboto', sans-serif;
}

.site-logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-menu > li > a {
    padding: 0.75rem 1.25rem;
    color: var(--dark-color);
    font-weight: 600;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    background: var(--primary-color);
    color: var(--white-color);
}

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white-color);
    box-shadow: var(--shadow-lg);
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    border-radius: 0.375rem;
    margin-top: 0.5rem;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    padding: 0.75rem 1.25rem;
    display: block;
    color: var(--dark-color);
}

.dropdown li a:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 2px;
    transition: var(--transition);
}

.hero-banner {
    background: linear-gradient(135deg, #FFF7ED 0%, #ECFDF5 100%);
    padding: 4rem 0;
    border-bottom: 3px solid var(--primary-color);
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 1.25rem;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: #EA580C;
    border-color: #EA580C;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background: #059669;
    border-color: #059669;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.main-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    padding: 3rem 0;
}

.content-area {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--gray-color);
    font-size: 1.125rem;
}

.welcome-section {
    margin-bottom: 3rem;
}

.welcome-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.welcome-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 0.5rem;
    transition: var(--transition);
}

.welcome-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.welcome-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.welcome-item h4 {
    margin-bottom: 0.75rem;
}

.welcome-item p {
    color: var(--gray-color);
    font-size: 0.9375rem;
}

.games-showcase {
    margin-bottom: 3rem;
}

.games-showcase-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.game-showcase-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1.5rem;
    background: var(--light-color);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: var(--transition);
}

.game-showcase-card:hover {
    box-shadow: var(--shadow-lg);
}

.game-showcase-img {
    position: relative;
    height: 200px;
}

.game-showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 0.375rem 0.875rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.game-showcase-body {
    padding: 1.5rem 1.5rem 1.5rem 0;
}

.game-showcase-body h3 {
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.game-showcase-body p {
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.game-features {
    list-style: none;
    margin-bottom: 1.25rem;
}

.game-features li {
    padding: 0.375rem 0;
    color: var(--gray-color);
    font-size: 0.9375rem;
}

.game-features i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.game-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.game-link:hover {
    gap: 0.75rem;
}

.text-center {
    text-align: center;
}

.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #EA580C 100%);
    padding: 2.5rem;
    border-radius: 0.5rem;
    color: var(--white-color);
    text-align: center;
}

.stats-section h2 {
    color: var(--white-color);
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-box {
    text-align: center;
}

.stat-box i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.widget {
    background: var(--white-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.widget-title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.quick-links {
    list-style: none;
}

.quick-links li {
    margin-bottom: 0.75rem;
}

.quick-links a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--light-color);
    border-radius: 0.375rem;
    color: var(--dark-color);
    transition: var(--transition);
}

.quick-links a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.quick-links i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.quick-links a:hover i {
    color: var(--white-color);
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mini-post {
    display: flex;
    gap: 1rem;
}

.mini-post-img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 0.375rem;
    overflow: hidden;
}

.mini-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-post-content h5 {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.mini-post-content h5 a {
    color: var(--dark-color);
}

.mini-post-content h5 a:hover {
    color: var(--primary-color);
}

.mini-post-date {
    font-size: 0.8125rem;
    color: var(--gray-color);
}

.mini-post-date i {
    margin-right: 0.375rem;
}

.widget-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #059669 100%);
    color: var(--white-color);
}

.widget-cta .widget-title {
    color: var(--white-color);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.widget-cta p {
    margin-bottom: 1rem;
}

.newsletter-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 0.375rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.newsletter-info i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.newsletter-info p {
    margin: 0;
    font-size: 0.9375rem;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 0.75rem;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem;
    color: var(--dark-color);
    background: var(--light-color);
    border-radius: 0.375rem;
    transition: var(--transition);
}

.category-list a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.category-list span {
    background: var(--white-color);
    color: var(--dark-color);
    padding: 0.25rem 0.625rem;
    border-radius: 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
}

.site-footer {
    background: var(--dark-color);
    color: var(--white-color);
    margin-top: 3rem;
}

.footer-main {
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-widget h4 {
    color: var(--white-color);
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
}

.footer-widget p {
    color: #9CA3AF;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    color: #9CA3AF;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    background: #111827;
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    color: #9CA3AF;
    font-size: 0.9375rem;
}

@media (max-width: 1024px) {
    .main-container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .game-showcase-card {
        grid-template-columns: 1fr;
    }

    .game-showcase-img {
        height: 250px;
    }

    .game-showcase-body {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 0.75rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white-color);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0.5rem;
        display: none;
    }

    .has-dropdown.active .dropdown {
        display: block;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .welcome-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sidebar {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.game-detail-page {
    margin: 3rem 0;
}

.game-header {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.game-title-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.game-title-section h1 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    margin: 0;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.game-rating i {
    color: #F59E0B;
    font-size: 1.125rem;
}

.game-rating span {
    margin-left: 0.5rem;
    color: var(--gray-color);
    font-weight: 600;
}

.game-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--gray-color);
    font-size: 0.9375rem;
}

.game-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.game-meta i {
    color: var(--primary-color);
}

.game-content-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
}

.game-main-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.game-description,
.game-features,
.game-how-to-play,
.game-tips,
.game-levels,
.vehicles-section,
.tracks-section,
.benefits-section {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.game-description h2,
.game-features h2,
.game-how-to-play h2,
.game-tips h2,
.game-levels h2,
.vehicles-section h2,
.tracks-section h2,
.benefits-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.game-description p {
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--light-color);
    border-radius: 0.5rem;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--gray-color);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 0.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--gray-color);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.tips-list li {
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: var(--light-color);
    border-radius: 0.375rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray-color);
    line-height: 1.7;
}

.tips-list i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.level-card {
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
}

.level-card.easy {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
}

.level-card.medium {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
}

.level-card.hard {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
}

.level-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.level-card.easy i {
    color: #059669;
}

.level-card.medium i {
    color: #F59E0B;
}

.level-card.hard i {
    color: #DC2626;
}

.level-card h4 {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.level-card p {
    color: var(--gray-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.level-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.level-card li {
    padding: 0.375rem 0;
    color: var(--gray-color);
    font-size: 0.9375rem;
}

.game-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: var(--white-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.sidebar-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.game-info-list {
    list-style: none;
    padding: 0;
}

.game-info-list li {
    padding: 0.75rem 0;
    color: var(--gray-color);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
}

.game-info-list li:last-child {
    border-bottom: none;
}

.game-info-list strong {
    color: var(--dark-color);
}

.related-games {
    list-style: none;
    padding: 0;
}

.related-games li {
    margin-bottom: 0.75rem;
}

.related-games a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--light-color);
    border-radius: 0.375rem;
    color: var(--dark-color);
    transition: var(--transition);
}

.related-games a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.related-games i {
    color: var(--primary-color);
    font-size: 1.125rem;
}

.related-games a:hover i {
    color: var(--white-color);
}

.stats-card .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.stats-card .stat-item:last-child {
    border-bottom: none;
}

.stats-card .stat-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.stats-card .stat-item div {
    flex: 1;
}

.stats-card .stat-item strong {
    display: block;
    color: var(--dark-color);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.stats-card .stat-item span {
    color: var(--gray-color);
    font-size: 0.875rem;
}

.page-header {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    margin: 2rem 0;
    text-align: center;
}

.page-header h1 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.page-header p {
    color: var(--gray-color);
    font-size: 1.125rem;
}

.btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 0.375rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-detail:hover {
    background: #EA580C;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.info-section {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    margin: 2rem 0;
}

.info-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.info-section p {
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.game-category-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.game-category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #EA580C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.category-icon i {
    font-size: 2.5rem;
    color: var(--white-color);
}

.game-category-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.game-category-card p {
    color: var(--gray-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
    .game-content-layout {
        grid-template-columns: 1fr;
    }

    .game-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .game-header {
        padding: 1.5rem;
    }

    .game-title-section h1 {
        font-size: 1.75rem;
    }

    .game-meta {
        gap: 1rem;
    }

    .features-grid,
    .steps-container,
    .levels-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 1.5rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }
}

