        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            color: #e0e0e0;
            min-height: 100vh;
        }
        a {
            color: #00a8ff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ffdd00;
            text-shadow: 0 0 8px rgba(255, 221, 0, 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;
        }
        .site-header {
            background: rgba(10, 10, 15, 0.95);
            border-bottom: 3px solid #ffdd00;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffdd00;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 15px rgba(255, 221, 0, 0.7);
        }
        .my-logo span {
            color: #00a8ff;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: #fff;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .main-nav a:hover, .main-nav a.active {
            background: #00a8ff;
            color: #000;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #ffdd00;
            cursor: pointer;
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
            background: rgba(0,0,0,0.3);
            margin-bottom: 30px;
        }
        .breadcrumb a { color: #ffdd00; }
        .search-container {
            margin: 30px 0;
            padding: 20px;
            background: rgba(30, 30, 46, 0.8);
            border-radius: 12px;
            border: 1px solid #444;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #00a8ff;
            border-radius: 50px 0 0 50px;
            background: #111;
            color: white;
            font-size: 1rem;
        }
        .search-btn {
            padding: 0 30px;
            background: linear-gradient(90deg, #00a8ff, #0097e6);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        .search-btn:hover {
            background: linear-gradient(90deg, #0097e6, #00a8ff);
            box-shadow: 0 0 15px #00a8ff;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        @media (max-width: 992px) {
            main { grid-template-columns: 1fr; }
        }
        article {
            background: rgba(20, 20, 35, 0.85);
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #333;
        }
        .hero-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            margin: 30px 0;
            border: 3px solid #ffdd00;
        }
        h1 {
            font-size: 3rem;
            color: #ffdd00;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(255, 221, 0, 0.4);
        }
        h2 {
            font-size: 2.2rem;
            color: #00a8ff;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #444;
        }
        h3 {
            font-size: 1.8rem;
            color: #ff6b6b;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #a29bfe;
            margin: 25px 0 12px;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 221, 0, 0.1);
            border-left: 5px solid #ffdd00;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji { font-size: 1.2em; }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: #aaa;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px dashed #555;
        }
        aside {
            background: rgba(25, 25, 40, 0.9);
            padding: 25px;
            border-radius: 12px;
            border: 1px solid #444;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget-title {
            color: #ffdd00;
            font-size: 1.3rem;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #444;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }
        .link-list li:before {
            content: '▸';
            color: #00a8ff;
            position: absolute;
            left: 0;
        }
        .rating-section, .comments-section {
            background: rgba(30, 30, 50, 0.8);
            padding: 30px;
            border-radius: 12px;
            margin-top: 50px;
            border: 1px solid #555;
        }
        .rating-form, .comment-form {
            display: grid;
            gap: 20px;
            margin-top: 20px;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #555;
            cursor: pointer;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #ffdd00;
        }
        input, textarea, select {
            width: 100%;
            padding: 15px;
            background: #111;
            border: 1px solid #444;
            border-radius: 8px;
            color: white;
            font-size: 1rem;
        }
        button[type="submit"] {
            background: linear-gradient(90deg, #ff6b6b, #ff8e53);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        button[type="submit"]:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
        }
        footer {
            background: #0a0a0f;
            padding: 50px 0 20px;
            margin-top: 60px;
            border-top: 3px solid #00a8ff;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        friend-link {
            display: block;
            background: rgba(255, 221, 0, 0.05);
            padding: 15px;
            margin: 10px 0;
            border-radius: 6px;
            border: 1px solid #333;
        }
        friend-link a {
            color: #a29bfe;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #777;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            .main-nav {
                width: 100%;
                display: none;
                margin-top: 20px;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 10px;
            }
            .hamburger { display: block; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            article { padding: 25px; }
            .search-form { flex-direction: column; }
            .search-input, .search-btn { border-radius: 50px; width: 100%; }
            .search-btn { margin-top: 10px; padding: 15px; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, aside, .rating-section, .comments-section {
            animation: fadeIn 0.8s ease-out;
        }
