
        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background: #0a0a0a;
            color: #fff;
            font-family: Arial, sans-serif;
            line-height: 1.6;
        }
        
        .hitmag-wrapper {
            min-height: 100vh;
        }
        
        /* Header Styles */
        .site-header {
            background: #1a1a1a;
            position: relative;
        }
        
        .header-main-area {
          background: #222 url('./images/index_files-banner.jpg') center/cover no-repeat;

            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hm-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            width: 100%;
        }
        
        .site-branding {
            text-align: center;
        }
        
        .logo-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .logo-placeholder img {
            max-width: 400px;
            height: auto;
            margin-bottom: 10px;
        }
        
        .site-description {
            color: #fff;
            font-size: 1.2rem;
            font-weight: bold;
        }
        
        /* Navigation */
        .hm-nav-container {
            background: #000;
            border-top: 2px solid #ff0c0c;
            position: relative;
            z-index: 1000;
        }
        
        .menu {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .menu-item {
            position: relative;
        }
        
        .menu-item > a {
            display: block;
            padding: 15px 20px;
            color: #fff;
            text-decoration: none;
            transition: background-color 0.3s;
            white-space: nowrap;
        }
        
        .menu-item > a:hover,
        .current-menu-item > a {
            background: #ff0c0c;
        }
        
        .sub-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: #111;
            min-width: 250px;
            display: none;
            z-index: 1001;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }
        
        .menu-item:hover .sub-menu {
            display: block;
        }
        
        .sub-menu a {
            padding: 12px 15px;
            border-bottom: 1px solid #333;
            display: block;
        }
        
        .sub-menu a:hover {
            background: #ff0c0c;
        }

        /* Main Content Styles */
        .site-content {
            padding: 50px 0;
            background: #0a0a0a;
        }

        .content-area {
            display: block;
        }
        
        /* SEO Content Section */
        .seo-content {
            background: #1a1a1a;
            padding: 40px;
            border-radius: 8px;
            margin-bottom: 50px;
            border: 1px solid #333;
        }
        
        .seo-content h1 {
            color: #fff;
            font-size: 2.5rem;
            margin-bottom: 40px;
            text-align: center;
            color: #ff0c0c;
        }

        /* Search Widget */
        .search-widget-center {
            background: #222;
            padding: 30px;
            border-radius: 8px;
            margin-bottom: 40px;
            text-align: center;
            border: 1px solid #333;
        }

        .search-widget-center h2 {
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 20px;
            border-bottom: 2px solid #ff0c0c;
            padding-bottom: 10px;
            display: inline-block;
        }

        .search-widget-center form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            gap: 0;
        }

        .search-widget-center input {
            flex: 1;
            padding: 14px 18px;
            border: 1px solid #333;
            background: #111;
            color: #fff;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .search-widget-center input:focus {
            outline: none;
            border-color: #ff0c0c;
        }

        .search-widget-center button {
            background: #ff0c0c;
            color: #fff;
            border: none;
            padding: 14px 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: background 0.3s ease;
        }

        .search-widget-center button:hover {
            background: #cc0909;
        }

        /* SEO Text Content */
        .seo-grid p {
            margin-bottom: 20px;
            font-size: 1rem;
            line-height: 1.7;
            color: #ccc;
            text-align: justify;
        }

        .seo-section {
            background: #222;
            padding: 25px;
            border-radius: 8px;
            margin-bottom: 25px;
            border-left: 4px solid #ff0c0c;
        }

        .seo-section h2 {
            color: #fff;
            font-size: 1.4rem;
            margin-bottom: 15px;
            border-bottom: 1px solid #333;
            padding-bottom: 8px;
        }

        .seo-section h3 {
            color: #fff;
            font-size: 1.2rem;
            margin: 20px 0 12px 0;
            padding-left: 12px;
            border-left: 3px solid #ff0c0c;
        }

        .seo-section ul {
            color: #ccc;
            line-height: 1.6;
            list-style: none;
            padding-left: 0;
        }

        .seo-section li {
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }

        .seo-section li::before {
            content: 'â–¶';
            position: absolute;
            left: 0;
            top: 0;
            color: #ff0c0c;
            font-size: 0.8rem;
        }

        .seo-section ol {
            color: #ccc;
            line-height: 1.6;
            padding-left: 20px;
        }

        .seo-section ol li {
            padding-left: 8px;
            margin-bottom: 8px;
        }

        .seo-section ol li::before {
            display: none;
        }

        /* Latest Games Section */
        .site-main h2 {
            color: #fff;
            font-size: 22px;
            margin-bottom: 20px;
        }

        /* Game Posts */
        .posts-wrap {
            display: grid;
            gap: 25px;
        }
        
        .hitmag-post {
            display: flex;
            background: #1a1a1a;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s ease;
            border: 1px solid #333;
        }

        .hitmag-post:hover {
            transform: translateY(-5px);
            border-color: #ff0c0c;
        }
        
        .archive-thumb {
            flex: 0 0 290px;
            position: relative;
            overflow: hidden;
        }
        
        .game-thumb {
            width: 290px;
            height: 220px;
            background: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ccc;
            font-size: 1rem;
            text-align: center;
            font-weight: 600;
        }
        
        .archive-content {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .cat-links {
            margin-bottom: 10px;
        }
        
        .cat-links a {
            color: #ff0c0c;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .cat-links a:hover {
            text-decoration: underline;
        }
        
        .entry-title {
            margin-bottom: 10px;
        }
        
        .entry-title a {
            color: #fff;
            text-decoration: none;
            font-size: 1.3rem;
            font-weight: 700;
            line-height: 1.3;
        }
        
        .entry-title a:hover {
            color: #ff0c0c;
        }
        
        .entry-meta {
            color: #888;
            font-size: 0.85rem;
            margin-bottom: 12px;
        }
        
        .entry-summary {
            color: #ccc;
            margin-bottom: 15px;
            line-height: 1.5;
            flex-grow: 1;
        }
        
        .th-readmore {
            display: inline-block;
            background: #ff0c0c;
            color: #fff;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: background 0.3s ease;
            align-self: flex-start;
        }
        
        .th-readmore:hover {
            background: #cc0909;
        }

        /* Pagination */
        .pagination {
            text-align: center;
            margin: 40px 0;
        }
        
        .nav-links {
            display: inline-flex;
            gap: 5px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .page-numbers {
            display: inline-block;
            padding: 10px 15px;
            background: #222;
            color: #fff;
            text-decoration: none;
            border-radius: 4px;
            border: 1px solid #333;
            font-weight: 500;
        }
        
        .page-numbers:hover,
        .page-numbers.current {
            background: #ff0c0c;
            border-color: #ff0c0c;
        }
        
        .dots {
            padding: 10px 8px;
            color: #888;
        }
        
        /* Footer */
        .site-footer {
            background: #111;
            padding: 40px 0 20px;
            border-top: 2px solid #ff0c0c;
        }
        
        .site-info {
            text-align: center;
            color: #ccc;
            padding: 20px 0;
            border-top: 1px solid #333;
        }
        
        .site-info a {
            color: #ff0c0c;
            text-decoration: none;
        }
        
        .site-info a:hover {
            text-decoration: underline;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .seo-content {
                padding: 25px;
            }

            .seo-content h1 {
                font-size: 2rem;
            }

            .search-widget-center {
                padding: 20px;
            }

            .search-widget-center form {
                flex-direction: column;
                gap: 10px;
            }

            .search-widget-center input,
            .search-widget-center button {
                border-radius: 4px;
            }
            
            .hitmag-post {
                flex-direction: column;
            }
            
            .archive-thumb {
                flex: none;
            }
            
            .game-thumb {
                width: 100%;
                height: 200px;
            }
            
            .menu {
                flex-direction: column;
            }
            
            .menu-item > a {
                padding: 12px 15px;
            }
            
            .sub-menu {
                position: static;
                display: block;
                background: #222;
                box-shadow: none;
            }
            
            .header-main-area {
                height: 140px;
            }
            
            .logo-placeholder img {
                max-width: 300px;
            }
            
            .site-description {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .hm-container {
                padding: 0 10px;
            }
            
            .seo-content {
                padding: 20px;
            }
            
            .seo-content h1 {
                font-size: 1.6rem;
            }
            
            .archive-content {
                padding: 15px;
            }

            .seo-section {
                padding: 15px;
            }
        }
