        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-yellow: #FFFF00;
            --primary-blue: #0000FF;
            --primary-pink: #FF69B4;
            --dark-bg: #0a0a2a;
            --light-bg: #f0f8ff;
            --text-dark: #222;
            --text-light: #f1f1f1;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--light-bg);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-blue);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-pink);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to right, var(--dark-bg), #1a1a4a);
            color: var(--text-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            letter-spacing: 2px;
            color: var(--primary-yellow);
            text-shadow: 0 0 10px #ff0, 2px 2px 0 #f00;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            color: var(--text-light);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-links a:hover,
        .nav-links a.active {
            background-color: var(--primary-yellow);
            color: var(--dark-bg);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 5px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:after {
            content: " › ";
            margin: 0 8px;
            color: #999;
        }
        .breadcrumb a:last-child:after {
            content: "";
        }
        .hero {
            background: linear-gradient(rgba(10, 10, 42, 0.85), rgba(10, 10, 42, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: var(--text-light);
            text-align: center;
            padding: 4rem 1rem;
            margin-bottom: 2rem;
            border-radius: 0 0 20px 20px;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--primary-yellow);
            text-shadow: 3px 3px 0 #000;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #ddd;
        }
        .cta-button {
            display: inline-block;
            background: var(--primary-yellow);
            color: var(--dark-bg);
            padding: 1rem 2.5rem;
            font-size: 1.2rem;
            font-weight: bold;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 5px 15px rgba(255, 255, 0, 0.4);
            transition: var(--transition);
        }
        .cta-button:hover {
            background: #ffcc00;
            transform: translateY(-3px);
            text-decoration: none;
            color: #000;
            box-shadow: 0 8px 20px rgba(255, 255, 0, 0.6);
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .content-area {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: var(--primary-blue);
            border-bottom: 3px solid var(--primary-yellow);
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .widget {
            margin-bottom: 2rem;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 0.8rem;
            border: 2px solid #ccc;
            border-right: none;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-box button {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-size: 1.2rem;
        }
        .search-box button:hover {
            background: #0000cc;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            padding: 0.7rem 0;
            border-bottom: 1px dashed #eee;
        }
        .link-list li:last-child {
            border-bottom: none;
        }
        .link-list a {
            color: #333;
            display: flex;
            align-items: center;
        }
        .link-list a:before {
            content: "▶";
            color: var(--primary-yellow);
            margin-right: 10px;
            font-size: 0.8rem;
        }
        .link-list a:hover {
            color: var(--primary-blue);
            padding-left: 5px;
        }
        h1, h2, h3, h4 {
            color: var(--dark-bg);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-blue);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 6px solid var(--primary-yellow);
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #333;
        }
        h4 {
            font-size: 1.4rem;
            color: #555;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        strong {
            color: var(--primary-blue);
            font-weight: 700;
        }
        em {
            color: var(--primary-pink);
            font-style: italic;
        }
        blockquote {
            border-left: 5px solid var(--primary-yellow);
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            background: #fffce6;
            font-style: italic;
            border-radius: 0 10px 10px 0;
        }
        blockquote p {
            margin-bottom: 0;
            font-size: 1.2rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #e6f7ff, #ffe6f2);
            padding: 2rem;
            border-radius: 10px;
            border: 2px dashed var(--primary-blue);
            margin: 2rem 0;
        }
        .game-image {
            margin: 2.5rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            max-width: 800px;
            border: 5px solid var(--primary-yellow);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 0.5rem;
            background: #f9f9f9;
            font-size: 0.95rem;
        }
        .interaction-section {
            background: #f9f9ff;
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            border: 1px solid #ddd;
        }
        .interaction-section h3 {
            color: var(--primary-blue);
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ffcc00;
        }
        .rating-stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-stars i:hover {
            transform: scale(1.2);
            color: #ff9900;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            margin-top: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #444;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 0.9rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--primary-blue);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 0, 255, 0.1);
        }
        button[type="submit"] {
            background: linear-gradient(to right, var(--primary-blue), #4d4dff);
            color: white;
            border: none;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 5px;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        button[type="submit"]:hover {
            background: linear-gradient(to right, #0000cc, #3333ff);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 255, 0.3);
        }
        .comments-display {
            margin-top: 3rem;
        }
        .comment {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border-left: 4px solid var(--primary-yellow);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
            font-size: 0.9rem;
            color: #777;
        }
        .comment-author {
            font-weight: bold;
            color: var(--primary-blue);
        }
        footer {
            background: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 2rem;
            color: var(--primary-yellow);
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: var(--primary-yellow);
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: var(--primary-yellow);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
            border: 1px solid rgba(255,255,0,0.2);
        }
        friend-link h4 {
            color: var(--primary-yellow);
            margin-bottom: 1rem;
        }
        friend-link a {
            color: #88ccff;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        .update-time {
            background: #333;
            color: #ffcc00;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            display: inline-block;
            margin: 1rem 0;
            font-family: monospace;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0;
                margin-top: 1rem;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                width: 100%;
                text-align: center;
            }
            .nav-links a {
                display: block;
                padding: 1rem;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .content-area {
                padding: 1.5rem;
            }
            .sidebar {
                position: static;
            }
        }
