        * {
            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, #0c0c1d 0%, #1a1a2e 50%, #16213e 100%);
            color: #e0e0ff;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #6c8cff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #a3b8ff;
            text-shadow: 0 0 8px rgba(108, 140, 255, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-padding {
            padding: 60px 0;
        }
        .text-center {
            text-align: center;
        }
        .hidden {
            display: none !important;
        }
        .site-header {
            background: rgba(12, 12, 29, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #2a2a4a;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #6c8cff, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
        }
        .logo a:hover {
            background: linear-gradient(90deg, #a855f7, #6c8cff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .main-nav a:hover {
            background: rgba(108, 140, 255, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #6c8cff;
        }
        .breadcrumb {
            background: rgba(26, 26, 46, 0.8);
            padding: 12px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #2a2a4a;
        }
        .breadcrumb a {
            opacity: 0.9;
        }
        .breadcrumb span {
            color: #a3b8ff;
            margin: 0 8px;
        }
        .hero {
            padding: 80px 0 40px;
            text-align: center;
            background: radial-gradient(circle at 50% 0%, rgba(108, 140, 255, 0.15) 0%, transparent 50%);
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #6c8cff, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #c5c5f0;
        }
        .search-container {
            max-width: 600px;
            margin: 40px auto;
            padding: 0 20px;
        }
        .search-form {
            display: flex;
            background: rgba(26, 26, 46, 0.8);
            border: 1px solid #3a3a6a;
            border-radius: 50px;
            overflow: hidden;
            transition: all 0.3s;
        }
        .search-form:focus-within {
            border-color: #6c8cff;
            box-shadow: 0 0 20px rgba(108, 140, 255, 0.3);
        }
        .search-input {
            flex-grow: 1;
            padding: 18px 25px;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1rem;
            outline: none;
        }
        .search-button {
            background: linear-gradient(90deg, #6c8cff, #7b68ee);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }
        .search-button:hover {
            background: linear-gradient(90deg, #7b68ee, #6c8cff);
            padding: 0 35px;
        }
        .main-content {
            flex: 1;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background: rgba(18, 18, 34, 0.7);
            border-radius: 15px;
            padding: 40px;
            border: 1px solid #2a2a4a;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            color: #8a8ac4;
            font-size: 0.9rem;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid #2a2a4a;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            color: #ffffff;
        }
        h2 {
            font-size: 2.2rem;
            margin: 50px 0 20px;
            color: #a3b8ff;
            padding-bottom: 10px;
            border-bottom: 2px solid #3a3a6a;
        }
        h3 {
            font-size: 1.7rem;
            margin: 35px 0 15px;
            color: #b8c5ff;
        }
        h4 {
            font-size: 1.3rem;
            margin: 25px 0 10px;
            color: #d0d8ff;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            color: #d0d0f0;
        }
        .highlight {
            background: rgba(108, 140, 255, 0.1);
            border-left: 4px solid #6c8cff;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .game-image {
            margin: 30px 0;
            text-align: center;
        }
        .game-image img {
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            border: 2px solid #3a3a6a;
            transition: transform 0.5s;
        }
        .game-image img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: #8a8ac4;
            font-size: 0.95rem;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 25px;
        }
        li {
            margin-bottom: 10px;
            color: #d0d0f0;
        }
        strong {
            color: #ffffff;
            font-weight: 700;
        }
        em {
            color: #b8c5ff;
        }
        .link-in-article {
            font-weight: 600;
            border-bottom: 1px dashed #6c8cff;
        }
        .sidebar {
            position: sticky;
            top: 120px;
            height: fit-content;
        }
        .sidebar-widget {
            background: rgba(18, 18, 34, 0.7);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            border: 1px solid #2a2a4a;
        }
        .widget-title {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #a3b8ff;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget-title i {
            color: #6c8cff;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #ffd700;
            margin: 15px 0;
            letter-spacing: 5px;
        }
        .rate-button {
            background: linear-gradient(90deg, #6c8cff, #7b68ee);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s;
        }
        .rate-button:hover {
            background: linear-gradient(90deg, #7b68ee, #6c8cff);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(108, 140, 255, 0.3);
        }
        .quick-links ul {
            list-style: none;
            margin-left: 0;
        }
        .quick-links li {
            margin-bottom: 12px;
        }
        .quick-links a {
            display: block;
            padding: 10px 15px;
            background: rgba(42, 42, 74, 0.5);
            border-radius: 8px;
            transition: all 0.3s;
        }
        .quick-links a:hover {
            background: rgba(108, 140, 255, 0.2);
            transform: translateX(5px);
        }
        .comments-section {
            margin-top: 60px;
        }
        .comment-form {
            background: rgba(18, 18, 34, 0.7);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 40px;
            border: 1px solid #2a2a4a;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #b8c5ff;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 15px;
            background: rgba(26, 26, 46, 0.8);
            border: 1px solid #3a3a6a;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: #6c8cff;
            box-shadow: 0 0 0 3px rgba(108, 140, 255, 0.2);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #6c8cff, #7b68ee);
            color: white;
            border: none;
            padding: 15px 35px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #7b68ee, #6c8cff);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(108, 140, 255, 0.3);
        }
        .comment-list {
            margin-top: 40px;
        }
        .comment {
            background: rgba(26, 26, 46, 0.7);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            border-left: 4px solid #3a3a6a;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            color: #8a8ac4;
            font-size: 0.9rem;
        }
        .comment-author {
            color: #a3b8ff;
            font-weight: 600;
        }
        .site-footer {
            background: #0c0c1d;
            border-top: 1px solid #2a2a4a;
            margin-top: 80px;
            padding: 50px 0 30px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #6c8cff, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }
        .footer-links h4 {
            color: #a3b8ff;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
            margin-left: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        friend-link {
            display: inline-block;
            background: rgba(42, 42, 74, 0.5);
            padding: 8px 15px;
            border-radius: 6px;
            margin: 5px;
            font-size: 0.9rem;
        }
        friend-link a {
            color: #b8c5ff;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2a2a4a;
            color: #8a8ac4;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(12, 12, 29, 0.98);
                backdrop-filter: blur(10px);
                padding: 20px;
                border-top: 1px solid #2a2a4a;
                border-bottom: 1px solid #2a2a4a;
                transform: translateY(-150%);
                transition: transform 0.4s ease;
                z-index: 999;
            }
            .main-nav.active {
                transform: translateY(0);
            }
            .main-nav ul {
                flex-direction: column;
                gap: 15px;
            }
            .hero h1 {
                font-size: 2.3rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            article {
                padding: 25px;
            }
        }
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.9rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .section-padding {
                padding: 40px 0;
            }
        }
