        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #0c1e3e 0%, #1a3a5f 100%);
            background-attachment: fixed;
            max-width: 1400px;
            margin: 0 auto;
            box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
        }
        h1, h2, h3, h4 {
            font-family: 'Arial Black', Gadget, sans-serif;
            color: #FFCC00;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }
        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            border-bottom: 5px solid #FFCC00;
            padding-bottom: 1rem;
            text-align: center;
            background: linear-gradient(90deg, #FFCC00, #FF6600);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-top: 2rem;
        }
        h2 {
            font-size: 2.5rem;
            color: #00CCFF;
            border-left: 5px solid #00CCFF;
            padding-left: 15px;
            margin-top: 3rem;
        }
        h3 {
            font-size: 2rem;
            color: #FF66CC;
            margin-top: 2.5rem;
        }
        h4 {
            font-size: 1.5rem;
            color: #66FF99;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.2rem;
            text-align: justify;
        }
        .site-header {
            background: rgba(12, 30, 62, 0.95);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 3px solid #FFCC00;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1300px;
            margin: 0 auto;
        }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.8rem;
            text-decoration: none;
            background: linear-gradient(45deg, #FFCC00, #FF6600);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 900;
            letter-spacing: 2px;
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .my-logo i {
            color: #FFCC00;
            margin-right: 15px;
            font-size: 3rem;
        }
        .nav-desktop {
            display: flex;
            gap: 2.5rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-link {
            color: #00CCFF;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            padding: 0.8rem 1.2rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .nav-link:hover {
            background: rgba(0, 204, 255, 0.15);
            border-color: #00CCFF;
            transform: translateY(-3px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #FFCC00;
            font-size: 2rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            background: rgba(12, 30, 62, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 2rem;
            border-top: 2px solid #FFCC00;
        }
        .mobile-nav.active {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            animation: slideDown 0.3s ease;
        }
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .breadcrumb {
            background: rgba(255, 204, 0, 0.1);
            padding: 1rem 2rem;
            border-radius: 0 0 15px 15px;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #00CCFF;
            text-decoration: none;
            transition: color 0.3s;
        }
        .breadcrumb a:hover {
            color: #FFCC00;
            text-decoration: underline;
        }
        .main-container {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 3rem;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            margin: 2rem;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
            }
        }
        article {
            padding-right: 2rem;
            border-right: 2px dashed #FFCC00;
        }
        @media (max-width: 1024px) {
            article {
                padding-right: 0;
                border-right: none;
            }
        }
        .highlight {
            background: linear-gradient(120deg, rgba(255, 204, 0, 0.2) 0%, rgba(255, 102, 0, 0.2) 100%);
            padding: 2rem;
            border-radius: 15px;
            border-left: 5px solid #FF6600;
            margin: 2.5rem 0;
        }
        .highlight p {
            font-size: 1.4rem;
            color: #1a3a5f;
            font-weight: bold;
        }
        .content-link {
            color: #FF6600;
            text-decoration: none;
            font-weight: bold;
            border-bottom: 2px dotted #FF6600;
            transition: all 0.3s;
        }
        .content-link:hover {
            color: #00CCFF;
            border-bottom-style: solid;
            background: rgba(0, 204, 255, 0.1);
            padding: 2px 5px;
            border-radius: 3px;
        }
        .game-image {
            width: 100%;
            height: auto;
            border-radius: 15px;
            margin: 2rem 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            transition: transform 0.5s ease;
            border: 5px solid #FFCC00;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .sidebar {
            background: rgba(12, 30, 62, 0.05);
            padding: 2rem;
            border-radius: 15px;
            border: 2px solid #00CCFF;
        }
        .widget {
            margin-bottom: 3rem;
        }
        .widget-title {
            color: #FF6600;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        input, textarea, select {
            padding: 1rem;
            border: 2px solid #00CCFF;
            border-radius: 10px;
            font-size: 1.1rem;
            background: rgba(255, 255, 255, 0.9);
            transition: all 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #FF6600;
            box-shadow: 0 0 15px rgba(255, 102, 0, 0.3);
        }
        button {
            background: linear-gradient(45deg, #FF6600, #FFCC00);
            color: #0c1e3e;
            border: none;
            padding: 1.2rem 2rem;
            border-radius: 10px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 102, 0, 0.4);
            background: linear-gradient(45deg, #FFCC00, #FF6600);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.8rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 2.5rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star.active {
            color: #FFCC00;
        }
        .site-footer {
            background: rgba(12, 30, 62, 0.98);
            color: #00CCFF;
            padding: 3rem 2rem;
            margin-top: 3rem;
            border-top: 5px solid #FFCC00;
            border-radius: 30px 30px 0 0;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            max-width: 1300px;
            margin: 0 auto;
        }
        friend-link {
            display: block;
            background: rgba(0, 204, 255, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1rem 0;
            border: 2px solid transparent;
            transition: all 0.3s;
        }
        friend-link:hover {
            border-color: #FFCC00;
            background: rgba(255, 204, 0, 0.1);
            transform: translateX(10px);
        }
        friend-link a {
            color: #FFCC00;
            text-decoration: none;
            font-size: 1.3rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 204, 0, 0.3);
            color: #FFCC00;
            font-size: 1.1rem;
        }
        .last-updated {
            background: rgba(0, 204, 255, 0.1);
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
            margin: 2rem 0;
            color: #00CCFF;
            font-weight: bold;
            border: 2px dashed #00CCFF;
        }
        .emoji {
            font-size: 1.5em;
            margin: 0 5px;
            vertical-align: middle;
        }
        .keyword {
            background: rgba(255, 204, 0, 0.2);
            padding: 2px 8px;
            border-radius: 5px;
            font-weight: bold;
            color: #FF6600;
        }
        @media (max-width: 768px) {
            .main-container {
                margin: 1rem;
                padding: 1rem;
            }
            .site-header, .breadcrumb {
                padding: 1rem;
            }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.7rem; }
            h4 { font-size: 1.3rem; }
            .my-logo {
                font-size: 2rem;
            }
            .my-logo i {
                font-size: 2rem;
            }
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        ::-webkit-scrollbar {
            width: 12px;
        }
        ::-webkit-scrollbar-track {
            background: #1a3a5f;
        }
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(#FFCC00, #FF6600);
            border-radius: 6px;
        }
