/* --------------------------------------------------------------
   GLOBAL RESET
-------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0b0c10;
    color: #e5e5e5;
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

/* Links */
a {
    color: #4fc3f7;
    text-decoration: none;
    transition: all 0.3s ease;
}
a:hover {
    color: #81d4fa;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
    margin: 0 0 15px;
    line-height: 1.3;
    font-weight: 600;
}

/* Buttons */
button,
input[type="submit"],
.gr-button,
.gr-button-small {
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

/* Accessibility */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* --------------------------------------------------------------
   HEADER
-------------------------------------------------------------- */
.gr-site-header {
    background: #11141b;
    border-bottom: 2px solid #222;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.gr-header-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.gr-logo {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}
.gr-logo a {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #4fc3f7, #81d4fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gr-logo-tagline {
    font-size: 0.75rem;
    color: #9aa0a6;
    margin-top: 2px;
}

/* Navigation */
.gr-main-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gr-main-nav .gr-menu {
    list-style: none;
    display: flex;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.gr-main-nav .gr-menu li {
    position: relative;
}

.gr-main-nav .gr-menu li a {
    color: #e5e5e5;
    font-size: 1rem;
    padding: 10px 16px;
    border-radius: 6px;
    display: block;
    font-weight: 500;
}
.gr-main-nav .gr-menu li a:hover {
    background: #1e222d;
    color: #4fc3f7;
}

/* Dropdown Menu */
.gr-main-nav .gr-menu .menu-item-has-children > a::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 5px;
    display: inline-block;
}

.gr-main-nav .gr-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e222d;
    min-width: 200px;
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid #333;
}

.gr-main-nav .gr-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gr-main-nav .gr-menu .sub-menu li {
    display: block;
}

.gr-main-nav .gr-menu .sub-menu a {
    padding: 8px 20px;
    white-space: nowrap;
}

/* Mobile Menu Toggle */
.gr-mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.gr-hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    position: relative;
    transition: 0.3s;
}

.gr-hamburger::before,
.gr-hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

.gr-hamburger::before {
    top: -8px;
}

.gr-hamburger::after {
    bottom: -8px;
}

/* Search */
.gr-header-search {
    flex-shrink: 0;
}

.gr-header-search form {
    display: flex;
    min-width: 250px;
}

.gr-header-search input[type="search"] {
    padding: 10px 15px;
    border-radius: 30px 0 0 30px;
    border: 1px solid #333;
    background: #0b0c10;
    color: #e5e5e5;
    font-size: 0.95rem;
    width: 100%;
    transition: 0.3s;
}

.gr-header-search input[type="search"]:focus {
    border-color: #4fc3f7;
    outline: none;
}

.gr-header-search input[type="submit"] {
    padding: 10px 20px;
    border-radius: 0 30px 30px 0;
    background: #4fc3f7;
    color: #000;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.gr-header-search input[type="submit"]:hover {
    background: #81d4fa;
}

/* --------------------------------------------------------------
   BREADCRUMBS
-------------------------------------------------------------- */
.gr-breadcrumbs-wrapper {
    background: #0f1117;
    padding: 15px 0;
    border-bottom: 1px solid #222;
}

.gr-breadcrumbs {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 0.9rem;
    color: #9aa0a6;
}

.gr-breadcrumbs a {
    color: #cfd8dc;
}

.gr-breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.gr-breadcrumbs li {
    display: flex;
    align-items: center;
}

.gr-breadcrumb-separator {
    margin: 0 8px;
    color: #555;
}

/* --------------------------------------------------------------
   MAIN LAYOUT
-------------------------------------------------------------- */
.gr-site-wrapper {
    max-width: 1300px;
    margin: 30px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
    gap: 30px;
}

.gr-main-content {
    min-width: 0;
}

.gr-sidebar {
    min-width: 0;
}

/* --------------------------------------------------------------
   ENHANCED SIDEBAR / WIDGETS
-------------------------------------------------------------- */
.gr-widget-area {
    background: #151821;
    border: 1px solid #2a2f3a;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.widget {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #2a2f3a;
}

.widget:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #4fc3f7;
    border-radius: 2px;
}

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

.widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid #2a2f3a;
    transition: 0.2s;
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: #cfd8dc;
    display: inline-block;
    transition: 0.2s;
}

.widget ul li a:hover {
    color: #4fc3f7;
    transform: translateX(5px);
}

/* Popular Posts Widget */
.gr-popular-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gr-popular-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #2a2f3a;
}

.gr-popular-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.gr-popular-link {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: 0.3s;
}

.gr-popular-link:hover {
    transform: translateX(5px);
}

.gr-popular-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
}

.gr-popular-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.gr-popular-link:hover .gr-popular-thumb img {
    transform: scale(1.1);
}

.gr-popular-info {
    flex: 1;
    min-width: 0;
}

.gr-popular-title {
    display: block;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.gr-popular-size {
    display: inline-block;
    font-size: 0.8rem;
    color: #9aa0a6;
    background: #1e222d;
    padding: 2px 8px;
    border-radius: 12px;
}

/* Category Widget */
.gr-cat-count {
    color: #9aa0a6;
    font-size: 0.85rem;
    margin-left: 5px;
}

/* Stats Widget */
.gr-stats-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.gr-stat-label {
    color: #9aa0a6;
    font-size: 0.95rem;
}

.gr-stat-value {
    color: #4fc3f7;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Tag Cloud */
.gr-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gr-tag-link {
    background: #1e222d;
    color: #cfd8dc;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem !important;
    transition: 0.3s;
    border: 1px solid #333;
}

.gr-tag-link:hover {
    background: #4fc3f7;
    color: #000;
    border-color: #4fc3f7;
    transform: translateY(-2px);
}

/* Post Date in Recent Widget */
.gr-post-date {
    display: block;
    font-size: 0.8rem;
    color: #9aa0a6;
    margin-top: 2px;
}

/* --------------------------------------------------------------
   POST GRID
-------------------------------------------------------------- */
.gr-post-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.gr-post-card {
    background: #151821;
    border: 1px solid #2a2f3a;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    height: 100%;
}

.gr-post-card:hover {
    transform: translateY(-6px);
    border-color: #4fc3f7;
    box-shadow: 0 10px 25px rgba(79, 195, 247, 0.1);
}

.gr-post-thumb-link {
    overflow: hidden;
    aspect-ratio: 16/9;
    display: block;
}

.gr-post-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.gr-post-card:hover .gr-post-thumb {
    transform: scale(1.05);
}

.gr-post-thumb--placeholder {
    background: linear-gradient(135deg, #1e222d, #2a2f3a);
    min-height: 200px;
}

.gr-post-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.gr-post-title {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.4;
}

.gr-post-title a {
    color: #fff;
    transition: 0.2s;
}

.gr-post-title a:hover {
    color: #4fc3f7;
}

.gr-post-meta {
    font-size: 0.85rem;
    color: #9aa0a6;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 5px;
}

.gr-post-excerpt {
    color: #b0b7c0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 5px 0;
}

.gr-button-small {
    background: #4fc3f7;
    color: #000;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    align-self: flex-start;
    margin-top: 5px;
}

.gr-button-small:hover {
    background: #81d4fa;
    color: #000;
}

/* --------------------------------------------------------------
   SINGLE POST
-------------------------------------------------------------- */
.gr-game-single {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: #151821;
    border-radius: 16px;
    border: 1px solid #2a2f3a;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.gr-game-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff, #4fc3f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gr-game-meta {
    font-size: 0.95rem;
    color: #9aa0a6;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.gr-game-thumb {
    margin-bottom: 30px;
}

.gr-game-thumb img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Game Details */
.gr-game-details,
.gr-game-info {
    background: #1b1f29;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #4fc3f7;
    margin-bottom: 30px;
}

.gr-details-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gr-details-list dt {
    color: #9aa0a6;
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.gr-details-list dd {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

/* Content */
.gr-game-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d7d7d7;
    margin-bottom: 40px;
}

.gr-game-content p {
    margin-bottom: 20px;
}

/* Download Section */
.gr-download-section {
    background: #11141b;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 1px solid #2a2f3a;
}

.gr-section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #fff;
}

.gr-download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.gr-download-button {
    background: linear-gradient(135deg, #00c853, #00e676);
    color: #000;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
}

.gr-download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,200,83,0.3);
    color: #000;
}

.gr-download-label {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.gr-download-info {
    display: flex;
    gap: 10px;
    font-size: 0.85rem;
    opacity: 0.9;
}

.gr-download-size {
    background: rgba(0,0,0,0.2);
    padding: 2px 8px;
    border-radius: 12px;
}

.gr-download-free {
    background: #ffd600;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.gr-download-notice {
    text-align: center;
    font-size: 0.9rem;
    color: #9aa0a6;
    margin-top: 20px;
    padding: 15px;
    background: #1b1f29;
    border-radius: 8px;
}

/* Tags */
.gr-game-tags {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #2a2f3a;
    border-bottom: 1px solid #2a2f3a;
}

.gr-tags-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.gr-tag-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gr-tag-list li {
    margin: 0;
}

.gr-tag-list a {
    background: #1e222d;
    color: #cfd8dc;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: 0.3s;
    border: 1px solid #333;
    display: inline-block;
}

.gr-tag-list a:hover {
    background: #4fc3f7;
    color: #000;
}

/* Post Navigation */
.gr-post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid #2a2f3a;
    border-bottom: 1px solid #2a2f3a;
}

.gr-nav-previous,
.gr-nav-next {
    display: flex;
    flex-direction: column;
}

.gr-nav-next {
    text-align: right;
}

.gr-nav-label {
    font-size: 0.85rem;
    color: #9aa0a6;
    margin-bottom: 5px;
}

.gr-nav-title {
    color: #fff;
    font-weight: 600;
    transition: 0.2s;
}

a:hover .gr-nav-title {
    color: #4fc3f7;
}

/* Related Posts */
.gr-related-posts {
    margin: 40px 0;
}

.gr-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gr-related-item {
    background: #1b1f29;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.gr-related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(79,195,247,0.2);
}

.gr-related-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.gr-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.gr-related-item:hover .gr-related-thumb img {
    transform: scale(1.1);
}

.gr-related-title {
    font-size: 1rem;
    padding: 15px;
    margin: 0;
}

.gr-related-title a {
    color: #fff;
}

/* Comments */
.gr-comments-area {
    margin-top: 50px;
}

/* --------------------------------------------------------------
   PAGINATION
-------------------------------------------------------------- */
.gr-pagination {
    text-align: center;
    margin: 40px 0 20px;
}

.gr-pagination ul {
    list-style: none;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.gr-pagination li a,
.gr-pagination li span {
    display: inline-block;
    padding: 10px 16px;
    background: #151821;
    border-radius: 8px;
    color: #e5e5e5;
    border: 1px solid #2a2f3a;
    font-weight: 500;
    transition: 0.3s;
    min-width: 45px;
}

.gr-pagination li a:hover {
    background: #1e222d;
    border-color: #4fc3f7;
    color: #4fc3f7;
}

.gr-pagination li span.current {
    background: #4fc3f7;
    color: #000;
    border-color: #4fc3f7;
}

/* --------------------------------------------------------------
   404 PAGE
-------------------------------------------------------------- */
.gr-404 {
    max-width: 600px;
    margin: 50px auto;
    text-align: center;
    padding: 40px;
    background: #151821;
    border-radius: 16px;
    border: 1px solid #2a2f3a;
}

.gr-404 h1 {
    font-size: 6rem;
    margin: 0;
    color: #4fc3f7;
    line-height: 1;
}

.gr-404 h2 {
    font-size: 2rem;
    margin: 20px 0;
}

.gr-404-suggestions {
    margin: 30px 0;
    text-align: left;
}

.gr-404-suggestions ul {
    list-style: none;
    padding: 0;
}

.gr-404-suggestions li {
    margin: 10px 0;
}

.gr-404-suggestions a {
    color: #4fc3f7;
}

.gr-404-recent {
    margin-top: 30px;
    text-align: left;
}

/* --------------------------------------------------------------
   SEARCH
-------------------------------------------------------------- */
.gr-search-term {
    color: #4fc3f7;
    font-weight: 600;
}

.gr-search-count {
    color: #9aa0a6;
    font-size: 1.1rem;
    margin-top: 10px;
}

.gr-no-results {
    text-align: center;
    padding: 40px;
    background: #151821;
    border-radius: 16px;
}

.gr-search-suggestions {
    margin: 30px 0;
    text-align: left;
}

/* --------------------------------------------------------------
   FOOTER
-------------------------------------------------------------- */
.gr-site-footer {
    background: #11141b;
    padding: 30px 20px;
    border-top: 2px solid #222;
    margin-top: 60px;
}

.gr-footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.gr-footer-left p {
    margin: 5px 0;
    color: #9aa0a6;
}

.gr-footer-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.gr-footer-menu a {
    color: #cfd8dc;
    font-size: 0.95rem;
}

.gr-footer-menu a:hover {
    color: #4fc3f7;
}

.gr-footer-credit {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #2a2f3a;
    color: #9aa0a6;
    font-size: 0.9rem;
}

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

/* Large Desktop (1200px+) */
@media (min-width: 1400px) {
    .gr-site-wrapper {
        max-width: 1400px;
    }
}

/* Desktop (992px - 1199px) */
@media (max-width: 1199px) {
    .gr-site-wrapper {
        padding: 0 20px;
    }
    
    .gr-game-title {
        font-size: 2.2rem;
    }
    
    .gr-post-list {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

/* Tablet Landscape (768px - 991px) */
@media (max-width: 991px) {
    .gr-site-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gr-sidebar {
        order: 2;
    }
    
    .gr-header-inner {
        flex-wrap: wrap;
    }
    
    .gr-main-nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
    }
    
    .gr-main-nav .gr-menu {
        flex-wrap: wrap;
    }
    
    .gr-header-search {
        margin-left: auto;
    }
    
    .gr-footer-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .gr-footer-menu {
        justify-content: center;
    }
    
    .gr-game-title {
        font-size: 2rem;
    }
    
    .gr-download-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

/* Tablet Portrait (576px - 767px) */
@media (max-width: 767px) {
    .gr-header-inner {
        gap: 15px;
    }
    
    .gr-logo a {
        font-size: 1.5rem;
    }
    
    .gr-logo-tagline {
        font-size: 0.7rem;
    }
    
    .gr-mobile-menu-toggle {
        display: block;
        order: 2;
    }
    
    .gr-main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #11141b;
        padding: 20px;
        border-top: 1px solid #222;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }
    
    .gr-main-nav.active {
        display: block;
    }
    
    .gr-main-nav .gr-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .gr-main-nav .gr-menu li a {
        padding: 15px 20px;
        border-bottom: 1px solid #2a2f3a;
    }
    
    .gr-main-nav .gr-menu li:last-child a {
        border-bottom: none;
    }
    
    .gr-main-nav .gr-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #0b0c10;
        margin-left: 20px;
        border: none;
    }
    
    .gr-header-search {
        order: 1;
        width: 100%;
    }
    
    .gr-header-search form {
        width: 100%;
    }
    
    .gr-game-title {
        font-size: 1.8rem;
    }
    
    .gr-post-list {
        grid-template-columns: 1fr;
    }
    
    .gr-game-single {
        padding: 20px;
    }
    
    .gr-details-list {
        grid-template-columns: 1fr;
    }
    
    .gr-post-navigation {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gr-nav-next {
        text-align: left;
    }
    
    .gr-popular-link {
        flex-direction: row;
    }
    
    .gr-popular-thumb {
        width: 60px;
        height: 60px;
    }
}

/* Mobile (320px - 575px) */
@media (max-width: 575px) {
    body {
        font-size: 14px;
    }
    
    .gr-site-wrapper {
        padding: 0 15px;
        margin: 20px auto;
    }
    
    .gr-game-single {
        padding: 15px;
    }
    
    .gr-game-title {
        font-size: 1.5rem;
    }
    
    .gr-game-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .gr-download-grid {
        grid-template-columns: 1fr;
    }
    
    .gr-download-button {
        width: 100%;
    }
    
    .gr-section-title {
        font-size: 1.5rem;
    }
    
    .gr-widget-area {
        padding: 15px;
    }
    
    .gr-popular-thumb {
        width: 50px;
        height: 50px;
    }
    
    .gr-tag-cloud {
        gap: 5px;
    }
    
    .gr-tag-link {
        padding: 3px 10px;
        font-size: 0.8rem !important;
    }
    
    .gr-404 {
        padding: 30px 20px;
        margin: 30px 15px;
    }
    
    .gr-404 h1 {
        font-size: 4rem;
    }
    
    .gr-404 h2 {
        font-size: 1.5rem;
    }
    
    .gr-footer-menu {
        flex-direction: column;
        gap: 10px;
    }
}

/* Small Mobile (under 320px) */
@media (max-width: 319px) {
    .gr-header-inner {
        padding: 10px 0;
    }
    
    .gr-logo a {
        font-size: 1.2rem;
    }
    
    .gr-post-card-body {
        padding: 15px;
    }
    
    .gr-post-title {
        font-size: 1rem;
    }
    
    .gr-game-title {
        font-size: 1.3rem;
    }
}

/* Print Styles */
@media print {
    .gr-site-header,
    .gr-sidebar,
    .gr-footer,
    .gr-download-section,
    .gr-comments-area {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
}