        * {
            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, #0c2461, #1e3799);
            color: #f5f5f5;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #4bcffa;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #18dcff;
            text-shadow: 0 0 8px rgba(24, 220, 255, 0.7);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(12, 36, 97, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #4bcffa, #18dcff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .logo a:hover {
            transform: scale(1.05);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 30px;
        }
        .main-nav a:hover {
            background: rgba(75, 207, 250, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4bcffa;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            background: rgba(255, 255, 255, 0.05);
            margin-top: 10px;
            border-radius: 5px;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #18dcff;
        }
        .hero {
            text-align: center;
            padding: 4rem 0;
            background: radial-gradient(circle, rgba(30, 55, 153, 0.8), rgba(12, 36, 97, 0.9));
            border-bottom: 3px solid #4bcffa;
            margin-bottom: 2rem;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 0 0 15px rgba(75, 207, 250, 0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #ddd;
        }
        .search-box {
            max-width: 600px;
            margin: 2rem auto;
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .search-box h2 {
            margin-bottom: 1rem;
            color: #4bcffa;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.9);
        }
        .search-form button {
            padding: 15px 25px;
            background: linear-gradient(to right, #4bcffa, #18dcff);
            border: none;
            border-radius: 0 30px 30px 0;
            color: #0c2461;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(to right, #18dcff, #4bcffa);
            transform: scale(1.05);
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        .content {
            background: rgba(255, 255, 255, 0.05);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        .content h2 {
            color: #4bcffa;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #4bcffa;
        }
        .content h3 {
            color: #18dcff;
            margin: 1.5rem 0 1rem;
        }
        .content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .content b {
            color: #ffdd59;
        }
        .highlight {
            background: rgba(255, 221, 89, 0.1);
            border-left: 5px solid #ffdd59;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 10px 10px 0;
        }
        .game-img {
            margin: 2rem auto;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s;
        }
        .game-img:hover {
            transform: scale(1.02);
        }
        aside {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 15px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .rating-box, .comment-box {
            margin-bottom: 2rem;
        }
        .rating-box h3, .comment-box h3 {
            color: #4bcffa;
            margin-bottom: 1rem;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 1rem;
        }
        .stars i {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffdd59;
        }
        .rating-form input, .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 1rem;
            border: none;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.9);
        }
        .comment-form textarea {
            height: 150px;
            resize: vertical;
        }
        .rating-form button, .comment-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(to right, #4bcffa, #18dcff);
            border: none;
            border-radius: 8px;
            color: #0c2461;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .rating-form button:hover, .comment-form button:hover {
            background: linear-gradient(to right, #18dcff, #4bcffa);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            padding: 2rem 0;
            border-top: 2px solid #4bcffa;
            border-bottom: 2px solid #4bcffa;
            margin: 3rem 0;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(75, 207, 250, 0.3);
            transform: translateY(-5px);
        }
        footer {
            text-align: center;
            padding: 2rem 0;
            background: rgba(12, 36, 97, 0.9);
            font-size: 0.9rem;
            color: #aaa;
        }
        .copyright {
            margin-top: 1rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(12, 36, 97, 0.98);
                padding: 1rem;
                border-top: 2px solid #4bcffa;
            }
            .main-nav.active ul {
                display: flex;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .content {
                padding: 1.5rem;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input,
            .search-form button {
                border-radius: 30px;
                margin-bottom: 10px;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
