:root {
            --primary: #FF6B8B;
            --secondary: #4ECDC4;
            --accent: #FFD166;
            --dark: #2A2D43;
            --light: #F7F9FC;
            --gray: #8A8D9B;
            --shadow: 0 6px 15px rgba(42, 45, 67, 0.1);
            --radius: 16px;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.7;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        .my-logo {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary);
            text-shadow: 3px 3px 0 var(--accent);
        }
        .my-logo span {
            color: var(--secondary);
        }
        .search-form {
            display: flex;
            flex-grow: 1;
            max-width: 400px;
            margin: 0 30px;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 20px;
            border: 2px solid #eee;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-form input:focus {
            outline: none;
            border-color: var(--secondary);
        }
        .search-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: var(--secondary);
        }
        .desktop-nav {
            display: flex;
            gap: 25px;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: width 0.3s;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--dark);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #f8f9fa;
            margin-bottom: 30px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: var(--gray);
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        article {
            background: white;
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow);
        }
        .article-header {
            margin-bottom: 40px;
            border-bottom: 3px solid var(--accent);
            padding-bottom: 25px;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .meta {
            display: flex;
            justify-content: space-between;
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 20px;
        }
        .featured-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: var(--radius);
            margin: 30px 0;
            border: 5px solid white;
            box-shadow: var(--shadow);
        }
        h2 {
            font-size: 2rem;
            color: var(--primary);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed var(--secondary);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--secondary);
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--dark);
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
        }
        strong {
            color: var(--primary);
        }
        .highlight {
            background: linear-gradient(120deg, var(--accent) 0%, var(--accent) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            font-weight: 700;
        }
        blockquote {
            border-left: 5px solid var(--secondary);
            padding-left: 25px;
            margin: 30px 0;
            font-style: italic;
            color: var(--gray);
            background-color: #f9f9f9;
            padding: 25px;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .link-list {
            background: #f0f7ff;
            padding: 25px;
            border-radius: var(--radius);
            margin: 30px 0;
        }
        .link-list ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 12px;
            list-style: none;
        }
        .link-list li:before {
            content: '🎮';
            margin-right: 10px;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: white;
            border-radius: var(--radius);
            padding: 25px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            margin-top: 0;
            font-size: 1.4rem;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #FFD166;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars span {
            transition: var(--transition);
        }
        .stars span:hover,
        .stars span.active {
            color: #FFB347;
            transform: scale(1.2);
        }
        .comment-form textarea,
        .score-form select {
            width: 100%;
            padding: 15px;
            border: 2px solid #eee;
            border-radius: var(--radius);
            margin-bottom: 15px;
            font-family: inherit;
            transition: var(--transition);
        }
        .comment-form textarea:focus,
        .score-form select:focus {
            outline: none;
            border-color: var(--secondary);
        }
        .btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            display: inline-block;
        }
        .btn:hover {
            background: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(78, 205, 196, 0.3);
        }
        .btn-block {
            width: 100%;
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
            padding: 10px;
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            transition: var(--transition);
        }
        friend-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: var(--gray);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.3rem;
            }
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .mobile-nav {
                display: none;
                flex-direction: column;
                background: white;
                padding: 20px;
                box-shadow: var(--shadow);
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
            }
            .mobile-nav.active {
                display: flex;
            }
            .search-form {
                max-width: 100%;
                margin: 20px 0;
            }
            .header-top {
                flex-wrap: wrap;
            }
        }
        @media (max-width: 768px) {
            article {
                padding: 25px;
            }
            .featured-img {
                height: 250px;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, .sidebar-widget {
            animation: fadeIn 0.6s ease-out;
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 107, 139, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(255, 107, 139, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 107, 139, 0); }
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 5px;
        }
