        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #f0f0f0;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4cc9f0;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #f72585;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .site-header {
            background: rgba(22, 33, 62, 0.95);
            padding: 1rem 2rem;
            border-bottom: 3px solid #f72585;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(90deg, #f72585, #4cc9f0, #b5179e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0,0,0,0.3);
            font-family: 'Arial Black', sans-serif;
            letter-spacing: -1px;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-size: 1.1rem;
        }
        .main-nav a:hover {
            background: rgba(76, 201, 240, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
        }
        .breadcrumb {
            background: rgba(255,255,255,0.05);
            padding: 1rem 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            gap: 0.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: #4cc9f0;
        }
        .search-container {
            max-width: 800px;
            margin: 2rem auto;
            padding: 0 2rem;
        }
        .search-form {
            display: flex;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-input {
            flex: 1;
            padding: 1.2rem 2rem;
            border: none;
            font-size: 1.1rem;
            background: rgba(255,255,255,0.1);
            color: white;
            backdrop-filter: blur(5px);
        }
        .search-input::placeholder {
            color: #aaa;
        }
        .search-button {
            background: linear-gradient(90deg, #f72585, #b5179e);
            color: white;
            border: none;
            padding: 0 2.5rem;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        .search-button:hover {
            background: linear-gradient(90deg, #b5179e, #7209b7);
            padding-right: 3rem;
        }
        .main-content {
            flex: 1;
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 1100px) {
            .main-content { grid-template-columns: 1fr; }
        }
        article {
            background: rgba(255,255,255,0.03);
            border-radius: 20px;
            padding: 3rem;
            border: 1px solid rgba(76, 201, 240, 0.2);
            backdrop-filter: blur(10px);
        }
        h1 {
            font-size: 3.5rem;
            background: linear-gradient(90deg, #4cc9f0, #f72585);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: center;
        }
        .article-meta {
            text-align: center;
            color: #aaa;
            margin-bottom: 3rem;
            font-style: italic;
            border-bottom: 1px dashed #444;
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2.5rem;
            color: #4cc9f0;
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #f72585;
        }
        h3 {
            font-size: 2rem;
            color: #b5179e;
            margin: 2.5rem 0 1rem;
        }
        h4 {
            font-size: 1.5rem;
            color: #f72585;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(76,201,240,0.2), rgba(247,37,133,0.2));
            padding: 2rem;
            border-left: 5px solid #4cc9f0;
            border-radius: 0 10px 10px 0;
            margin: 2rem 0;
        }
        .quote {
            font-style: italic;
            font-size: 1.5rem;
            text-align: center;
            padding: 2rem;
            border-top: 2px dashed #4cc9f0;
            border-bottom: 2px dashed #4cc9f0;
            margin: 3rem 0;
            color: #aaa;
        }
        .game-link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .game-link-item {
            background: rgba(76, 201, 240, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid rgba(76, 201, 240, 0.3);
            transition: all 0.3s ease;
        }
        .game-link-item:hover {
            background: rgba(247, 37, 133, 0.15);
            border-color: #f72585;
            transform: translateY(-10px);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: rgba(255,255,255,0.03);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(76, 201, 240, 0.2);
        }
        .widget h3 {
            margin-top: 0;
            font-size: 1.8rem;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        label {
            font-weight: 600;
            color: #4cc9f0;
        }
        input, textarea, select {
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid #444;
            background: rgba(255,255,255,0.08);
            color: white;
            font-size: 1rem;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #f72585, #b5179e);
            color: white;
            border: none;
            padding: 1.2rem;
            border-radius: 8px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #b5179e, #7209b7);
            box-shadow: 0 5px 15px rgba(247, 37, 133, 0.4);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 2rem;
            margin: 1rem 0;
        }
        .star-rating input { display: none; }
        .star-rating label {
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffcc00;
        }
        .site-footer {
            background: rgba(11, 15, 34, 0.98);
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid #4cc9f0;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-widget h3 {
            color: #f72585;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }
        friend-link {
            display: block;
            padding: 0.8rem 0;
            border-bottom: 1px dashed #444;
            transition: padding-left 0.3s ease;
        }
        friend-link:hover {
            padding-left: 1rem;
            border-bottom-color: #f72585;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #333;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container { flex-direction: column; align-items: flex-start; }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
                width: 100%;
                display: none;
                margin-top: 1rem;
            }
            .main-nav.active ul { display: flex; }
            .main-nav a {
                display: block;
                padding: 1rem;
                border-bottom: 1px solid #333;
            }
            .hamburger { display: block; align-self: flex-end; margin-top: -3.5rem; }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            article { padding: 1.5rem; }
            .main-content { padding: 1rem; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, .widget {
            animation: fadeIn 0.8s ease-out;
        }
        .pulse {
            display: inline-block;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
