        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #121212;
            color: #e0e0e0;
            line-height: 1.8;
            overflow-x: hidden;
            max-width: 100%;
        }
        a {
            color: #8bc34a;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #c5e1a5;
            transform: translateY(-1px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section, article, header, footer {
            padding: 40px 0;
        }
        h1, h2, h3, h4 {
            color: #8bc34a;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-left: 5px solid #ff9800;
            padding-left: 15px;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 40px;
            border-bottom: 2px solid #333;
            padding-bottom: 10px;
        }
        h3 {
            font-size: 1.8rem;
            color: #ffcc80;
        }
        h4 {
            font-size: 1.4rem;
            color: #b3e5fc;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: #bdbdbd;
            margin-bottom: 30px;
        }
        .highlight {
            background: linear-gradient(90deg, #1b5e20, #2e7d32);
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 5px solid #ff9800;
        }
        .quote {
            font-style: italic;
            border-left: 4px solid #8bc34a;
            padding-left: 20px;
            margin: 30px 0;
            color: #bdbdbd;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #8bc34a, #689f38);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(139, 195, 74, 0.2);
        }
        .btn:hover {
            background: linear-gradient(135deg, #689f38, #33691e);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(139, 195, 74, 0.4);
        }
        header {
            background: #1a1a1a;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #8bc34a, #ff9800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .logo a:hover {
            text-shadow: 0 4px 8px rgba(0,0,0,0.5);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1rem;
            padding: 8px 0;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ff9800;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #8bc34a;
        }
        .breadcrumb {
            background: #1e1e1e;
            padding: 15px 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin: 0 10px;
            color: #777;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #8bc34a;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 30px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: #1a1a1a;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .sidebar {
            background: #1e1e1e;
            padding: 25px;
            border-radius: 15px;
            align-self: start;
            position: sticky;
            top: 120px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }
        .sidebar h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #333;
        }
        .widget {
            margin-bottom: 30px;
        }
        .search-box {
            display: flex;
            margin-bottom: 20px;
        }
        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #444;
            background: #252525;
            color: white;
            border-radius: 50px 0 0 50px;
            outline: none;
        }
        .search-box button {
            background: #8bc34a;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #689f38;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            margin: 15px 0;
            color: #ffcc00;
        }
        .stars i {
            cursor: pointer;
            margin: 0 3px;
            transition: transform 0.2s, color 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
            color: #ffdb4d;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            background: #252525;
            border: 1px solid #444;
            color: white;
            border-radius: 10px;
            margin-bottom: 15px;
            min-height: 120px;
            resize: vertical;
            outline: none;
        }
        .comment-form button {
            width: 100%;
        }
        .featured-img {
            margin: 30px 0;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.7);
        }
        .featured-img img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-img:hover img {
            transform: scale(1.03);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .game-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .game-card {
            background: #252525;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #333;
        }
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(139, 195, 74, 0.2);
            border-color: #8bc34a;
        }
        .game-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .game-card-content {
            padding: 20px;
        }
        .game-card h4 {
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        .game-meta {
            font-size: 0.9rem;
            color: #aaa;
            margin-bottom: 15px;
        }
        .footer-links {
            background: #1a1a1a;
            padding: 40px 0;
            border-top: 2px solid #2e7d32;
            border-bottom: 1px solid #333;
        }
        .web-link {
            display: inline-block;
            background: #252525;
            padding: 12px 20px;
            margin: 8px;
            border-radius: 30px;
            transition: all 0.3s ease;
            border: 1px solid #444;
        }
        .web-link:hover {
            background: #2e7d32;
            border-color: #8bc34a;
            transform: translateY(-3px);
        }
        footer {
            text-align: center;
            padding: 30px 0;
            color: #777;
            font-size: 0.9rem;
        }
        .footer-links-container {
            text-align: center;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background: #1a1a1a;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transition: left 0.5s ease;
                box-shadow: 0 10px 15px rgba(0,0,0,0.5);
                z-index: 999;
            }
            .nav-links.active {
                left: 0;
            }
            .nav-links li {
                margin: 15px 0;
            }
            .hamburger {
                display: block;
            }
            .main-content {
                gap: 30px;
            }
            article, .sidebar {
                padding: 25px;
            }
            .game-list {
                grid-template-columns: 1fr;
            }
        }
