        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #4dabf7; text-decoration: none; transition: color 0.3s ease, transform 0.2s ease; }
        a:hover { color: #a5d8ff; transform: translateY(-2px); }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(90deg, #d90429, #ef233c);
            color: white;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(217, 4, 41, 0.3);
        }
        .btn:hover {
            background: linear-gradient(90deg, #ef233c, #d90429);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(217, 4, 41, 0.5);
        }
        .site-header {
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #d90429;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #f72585, #4361ee, #4cc9f0);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(67, 97, 238, 0.3);
        }
        .my-logo a { color: transparent; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            color: #b8b8b8;
            font-weight: 600;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover,
        .main-nav a.active { color: #fff; border-bottom-color: #4dabf7; }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: #4dabf7;
            border-radius: 2px;
            transition: 0.3s;
        }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(30, 30, 46, 0.8);
            font-size: 0.9rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
            color: #6c757d;
        }
        .main-content {
            flex: 1;
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .article-area { background: rgba(20, 20, 30, 0.8); padding: 30px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 25px;
            color: #fff;
            text-align: center;
            text-shadow: 0 2px 10px rgba(77, 171, 247, 0.5);
            border-bottom: 3px solid #4361ee;
            padding-bottom: 15px;
        }
        h2 { font-size: 2.4rem; margin: 35px 0 20px; color: #4cc9f0; border-left: 5px solid #f72585; padding-left: 15px; }
        h3 { font-size: 1.8rem; margin: 28px 0 15px; color: #a5d8ff; }
        h4 { font-size: 1.4rem; margin: 22px 0 12px; color: #b8b8b8; }
        p { margin-bottom: 22px; text-align: justify; font-size: 1.1rem; }
        .highlight { background: rgba(67, 97, 238, 0.15); padding: 20px; border-left: 5px solid #4361ee; border-radius: 0 10px 10px 0; margin: 25px 0; }
        .emoji { font-size: 1.3em; margin-right: 8px; }
        .note { background: rgba(247, 37, 133, 0.1); padding: 15px; border-radius: 10px; border: 1px dashed #f72585; }
        .sidebar { display: flex; flex-direction: column; gap: 25px; }
        .widget {
            background: rgba(20, 20, 30, 0.8);
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .widget h3 { font-size: 1.5rem; margin-top: 0; border-bottom: 2px solid #d90429; padding-bottom: 10px; }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .form-group { display: flex; flex-direction: column; gap: 8px; }
        input, textarea, select {
            padding: 14px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid #444;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #4dabf7;
            box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.2);
        }
        .stars { display: flex; gap: 10px; font-size: 1.8rem; color: #ffd700; cursor: pointer; }
        .stars i:hover { transform: scale(1.2); }
        .featured-img {
            margin: 30px auto;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid #4361ee;
            max-width: 800px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
        }
        .site-footer {
            background: rgba(10, 10, 15, 0.98);
            border-top: 2px solid #d90429;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            list-style: none;
            padding: 20px;
            background: rgba(30, 30, 46, 0.6);
            border-radius: 10px;
            justify-content: center;
        }
        .friend-links a {
            padding: 10px 20px;
            background: rgba(67, 97, 238, 0.2);
            border-radius: 30px;
            border: 1px solid #4361ee;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #8a8a8a;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
            .sidebar { order: -1; }
        }
        @media (max-width: 768px) {
            .hamburger { display: flex; }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(10, 10, 15, 0.98);
                padding: 20px;
                border-top: 2px solid #4361ee;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .main-nav.active ul { display: flex; }
            .header-content { flex-wrap: wrap; }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .friend-links { flex-direction: column; align-items: center; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            .article-area, .widget { padding: 20px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
        }
