        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            color: #333;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #2c5aa0;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #e63946;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, #2c5aa0, #4a7bc8);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(44, 90, 160, 0.2);
        }
        .btn:hover {
            background: linear-gradient(to right, #e63946, #ff6b6b);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(230, 57, 70, 0.3);
        }
        header {
            background: #1a2b4c;
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #00c6ff, #0072ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .my-logo a {
            color: inherit;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            color: #d1e0ff;
            font-weight: 500;
            padding: 8px 0;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #00c6ff;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background: #e9f0fa;
            padding: 12px 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #2c5aa0;
        }
        .breadcrumb span {
            color: #888;
            margin: 0 8px;
        }
        .hero {
            text-align: center;
            padding: 4rem 1rem;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIwMCIgaGVpZ2h0PSI2MDAiIHZpZXdCb3g9IjAgMCAxMjAwIDYwMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMEgxMjAwVjYwMEgwVjBaIiBmaWxsPSJ1cmwoI3BhaW50MF9saW5lYXJfMTQ5XzE2NikiLz4KPGRlZnM+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQwX2xpbmVhcl8xNDlfMTY2IiB4MT0iNjAwIiB5MT0iMCIgeDI9IjYwMCIgeTI9IjYwMCIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPgo8c3RvcCBzdG9wLWNvbG9yPSIjRjVGN0ZBIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iI0U0RURGNSIvPgo8L2xpbmVhckdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=') center/cover no-repeat;
            border-radius: 0 0 30px 30px;
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: #1a2b4c;
            text-shadow: 1px 1px 3px rgba(255,255,255,0.8);
        }
        .hero p {
            font-size: 1.2rem;
            color: #555;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .search-box {
            max-width: 600px;
            margin: 2rem auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .search-box input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background: #2c5aa0;
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #e63946;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding-bottom: 3rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .content article {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        .content h2 {
            color: #1a2b4c;
            border-left: 5px solid #e63946;
            padding-left: 15px;
            margin: 2.5rem 0 1.5rem;
            font-size: 2.2rem;
        }
        .content h3 {
            color: #2c5aa0;
            margin: 2rem 0 1rem;
            font-size: 1.8rem;
        }
        .content h4 {
            color: #4a7bc8;
            margin: 1.5rem 0 1rem;
            font-size: 1.4rem;
        }
        .content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
            color: #444;
        }
        .content strong {
            color: #1a2b4c;
            font-weight: 700;
        }
        .content em {
            color: #e63946;
            font-style: italic;
        }
        .highlight-box {
            background: #f0f7ff;
            border-left: 5px solid #2c5aa0;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .game-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .game-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .game-card:hover {
            transform: translateY(-10px);
        }
        .game-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .game-card-content {
            padding: 1.5rem;
        }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            color: #1a2b4c;
            margin-bottom: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid #e63946;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .sidebar li::before {
            content: '🎮';
            position: absolute;
            left: 0;
        }
        .rating-widget, .comment-widget {
            background: #f8fafd;
            padding: 1.5rem;
            border-radius: 15px;
            margin-top: 2rem;
        }
        .stars {
            color: #ffc107;
            font-size: 1.5rem;
            margin: 10px 0;
        }
        .rating-widget input, .comment-widget textarea, .comment-widget input {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 8px;
        }
        footer {
            background: #1a2b4c;
            color: #d1e0ff;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin: 10px 0;
            color: #a3c4ff;
        }
        friend-link:hover {
            color: #00c6ff;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2c3e5c;
            font-size: 0.9rem;
            color: #8a9bba;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background: #1a2b4c;
                width: 100%;
                text-align: center;
                padding: 2rem 0;
                transition: right 0.5s ease;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                right: 0;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .content article {
                padding: 1.5rem;
            }
            .content h2 {
                font-size: 1.8rem;
            }
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: #777;
            font-size: 0.9rem;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px dashed #ccc;
        }
