        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #f0f0f0;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            min-height: 100vh;
            padding: 0;
            margin: 0;
        }
        a {
            color: #4cc9f0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #f72585;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
        }
        header {
            background: rgba(10, 10, 10, 0.95);
            padding: 1.5rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #4cc9f0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(90deg, #f72585, #4cc9f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Arial Black', sans-serif;
        }
        .my-logo:hover {
            transform: scale(1.05);
            transition: transform 0.3s ease;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }
        nav a {
            font-size: 1.2rem;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        nav a:hover {
            background: rgba(76, 201, 240, 0.2);
            text-decoration: none;
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background: rgba(30, 30, 46, 0.9);
            font-size: 0.95rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .breadcrumb a {
            color: #b8b8d1;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            background: none;
            border: none;
            color: #4cc9f0;
            cursor: pointer;
        }
        main {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        article {
            background: rgba(22, 33, 62, 0.85);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid #4cc9f0;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 3.5rem;
            color: #4cc9f0;
            margin-bottom: 1.5rem;
            text-align: center;
            text-shadow: 0 4px 10px rgba(76, 201, 240, 0.5);
        }
        h2 {
            font-size: 2.5rem;
            color: #f72585;
            margin: 3rem 0 1.5rem;
            border-left: 5px solid #f72585;
            padding-left: 1rem;
        }
        h3 {
            font-size: 2rem;
            color: #b5179e;
            margin: 2.5rem 0 1rem;
        }
        h4 {
            font-size: 1.6rem;
            color: #7209b7;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.2rem;
            text-align: justify;
            hyphens: auto;
        }
        .highlight {
            background: rgba(247, 37, 133, 0.15);
            padding: 1.5rem;
            border-left: 4px solid #f72585;
            border-radius: 8px;
            margin: 2rem 0;
            font-weight: bold;
            color: #ffb8e2;
        }
        .emoji {
            font-size: 1.4rem;
            margin-right: 0.5rem;
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: #888;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px dashed #444;
        }
        aside {
            background: rgba(10, 10, 10, 0.9);
            padding: 2rem;
            border-radius: 15px;
            align-self: start;
            position: sticky;
            top: 150px;
        }
        .sidebar-section {
            margin-bottom: 2.5rem;
        }
        .sidebar-section h3 {
            font-size: 1.5rem;
            color: #4cc9f0;
            margin-bottom: 1rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #4cc9f0;
            border-radius: 8px;
            background: rgba(30, 30, 46, 0.8);
            color: #fff;
            font-size: 1rem;
        }
        button {
            padding: 0.8rem 1.5rem;
            background: linear-gradient(90deg, #f72585, #b5179e);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s ease;
        }
        button:hover {
            transform: translateY(-3px);
            background: linear-gradient(90deg, #b5179e, #f72585);
        }
        .rating-stars {
            display: flex;
            justify-content: space-around;
            font-size: 2rem;
            color: gold;
            margin: 1rem 0;
        }
        footer {
            background: #0a0a0a;
            padding: 3rem 2rem;
            margin-top: 4rem;
            border-top: 2px solid #4cc9f0;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-section h3 {
            color: #4cc9f0;
            margin-bottom: 1.5rem;
        }
        friend-link {
            display: block;
            padding: 0.8rem;
            background: rgba(76, 201, 240, 0.1);
            border-radius: 8px;
            margin-bottom: 1rem;
            border: 1px solid #4cc9f0;
            font-weight: bold;
        }
        friend-link a {
            color: #b8b8d1;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            main {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            nav ul {
                flex-direction: column;
                gap: 1rem;
                display: none;
                width: 100%;
                margin-top: 1.5rem;
                background: rgba(10, 10, 10, 0.98);
                padding: 1.5rem;
                border-radius: 10px;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 2rem;
                right: 2rem;
            }
            h1 {
                font-size: 2.8rem;
            }
            h2 {
                font-size: 2.2rem;
            }
            article {
                padding: 2rem;
            }
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
        .text-center { text-align: center; }
        .bold { font-weight: bold; color: #ffb8e2; }
        .spacing { margin: 2.5rem 0; }
