        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #74c0fc;
            text-shadow: 0 0 8px rgba(116, 192, 252, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .highlight {
            background: linear-gradient(90deg, transparent, rgba(77, 171, 247, 0.15), transparent);
            padding: 0.2rem 0.5rem;
            border-left: 3px solid #4dabf7;
        }
        .site-header {
            background: linear-gradient(135deg, #1a2230 0%, #0f1419 100%);
            padding: 1rem 0;
            border-bottom: 1px solid #2a3441;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff6b6b, #4dabf7, #69db7c);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            letter-spacing: -0.5px;
        }
        .my-logo:hover {
            animation: logoGlow 1.5s ease infinite;
        }
        @keyframes logoGlow {
            0%, 100% { filter: drop-shadow(0 0 5px rgba(77, 171, 247, 0.7)); }
            50% { filter: drop-shadow(0 0 15px rgba(77, 171, 247, 0.9)); }
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #ccd6f6;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #4dabf7;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ccd6f6;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background: #1a2230;
                transition: right 0.4s ease;
                padding: 2rem;
                border-left: 1px solid #2a3441;
                overflow-y: auto;
            }
            .main-nav.active { right: 0; }
            .main-nav ul {
                flex-direction: column;
                gap: 1.5rem;
            }
        }
        .breadcrumb {
            background-color: #1a2230;
            padding: 1rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #2a3441;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #666;
        }
        .hero {
            background: radial-gradient(circle at top right, rgba(41, 98, 255, 0.1), transparent 60%),
                        radial-gradient(circle at bottom left, rgba(233, 30, 99, 0.1), transparent 60%),
                        #0f1419;
            padding: 4rem 0;
            text-align: center;
            border-bottom: 1px solid #2a3441;
        }
        .hero h1 {
            font-size: 3.5rem;
            background: linear-gradient(90deg, #ff6b6b, #4dabf7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #b0b7c3;
        }
        .search-box {
            max-width: 600px;
            margin: 2rem auto;
            position: relative;
        }
        .search-box input {
            width: 100%;
            padding: 1rem 1.5rem;
            border-radius: 50px;
            border: 2px solid #2a3441;
            background: #1a2230;
            color: #e0e0e0;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .search-box input:focus {
            border-color: #4dabf7;
            box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.2);
        }
        .search-box button {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: #4dabf7;
            color: white;
            border: none;
            border-radius: 50%;
            width: 44px;
            height: 44px;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
        }
        .search-box button:hover {
            background: #339af0;
            transform: translateY(-50%) scale(1.05);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 3rem 0;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: #1a2230;
            border-radius: 12px;
            padding: 2.5rem;
            border: 1px solid #2a3441;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        article h2, article h3, article h4 {
            color: #f8f9fa;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        article h2 {
            font-size: 2.2rem;
            color: #4dabf7;
            border-bottom: 2px solid #2a3441;
            padding-bottom: 0.5rem;
        }
        article h3 {
            font-size: 1.8rem;
            color: #69db7c;
        }
        article h4 {
            font-size: 1.4rem;
            color: #ffa94d;
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #ccd6f6;
        }
        article blockquote {
            border-left: 4px solid #ff6b6b;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #b0b7c3;
            background: rgba(255, 107, 107, 0.05);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #888;
            font-size: 0.9rem;
            border-bottom: 1px solid #2a3441;
            padding-bottom: 1rem;
            margin-bottom: 2rem;
        }
        .featured-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            margin: 2rem 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }
        .sidebar-widget {
            background: #1a2230;
            border: 1px solid #2a3441;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            color: #ffa94d;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #2a3441;
        }
        .game-list {
            list-style: none;
        }
        .game-list li {
            padding: 0.8rem 0;
            border-bottom: 1px dashed #2a3441;
        }
        .game-list li:last-child { border-bottom: none; }
        .interaction-forms {
            background: #1a2230;
            border-radius: 12px;
            padding: 2rem;
            margin-top: 3rem;
            border: 1px solid #2a3441;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #f8f9fa;
            font-weight: 500;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem 1rem;
            border-radius: 8px;
            border: 1px solid #2a3441;
            background: #0f1419;
            color: #e0e0e0;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #4dabf7;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            cursor: pointer;
            color: #444;
            margin-bottom: 1rem;
        }
        .star-rating .star {
            transition: color 0.2s ease, transform 0.2s ease;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #ffd43b;
            transform: scale(1.1);
        }
        .submit-btn {
            background: linear-gradient(90deg, #339af0, #4dabf7);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(51, 154, 240, 0.4);
        }
        .site-footer {
            background: #0a0d12;
            color: #b0b7c3;
            padding: 3rem 0 1.5rem;
            border-top: 1px solid #2a3441;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: #f8f9fa;
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
            color: #74c0fc;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2a3441;
            font-size: 0.9rem;
            color: #888;
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.1rem; }
            article { padding: 1.5rem; }
            .content-grid { gap: 2rem; }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 2rem; }
            article h2 { font-size: 1.8rem; }
            article h3 { font-size: 1.5rem; }
        }
