        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #f0f0f0;
            line-height: 1.7;
            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: #74c0fc;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-2 { margin-top: 2rem; }
        .p-2 { padding: 2rem; }
        .highlight {
            background: linear-gradient(90deg, #ff6b6b, #ffa8a8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }
        .site-header {
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            border-bottom: 3px solid #ff6b6b;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #ff6b6b, #4dabf7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: unset;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            color: #ddd;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .main-nav a:hover {
            background: rgba(255, 107, 107, 0.2);
            color: #fff;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.05);
            padding: 12px 20px;
            border-radius: 8px;
            margin: 20px 0;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #a5d8ff; }
        .breadcrumb span { color: #ccc; }
        .main-content {
            flex: 1;
            padding: 30px 0;
        }
        .article-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background: rgba(30, 30, 46, 0.8);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: #ffd43b;
            line-height: 1.2;
            border-left: 5px solid #ff6b6b;
            padding-left: 15px;
        }
        h2 {
            font-size: 2rem;
            color: #74c0fc;
            margin: 2.5rem 0 1rem;
            padding-bottom: 10px;
            border-bottom: 2px dashed #495057;
        }
        h3 {
            font-size: 1.6rem;
            color: #ffa8a8;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #b2f2bb;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #e9ecef;
            font-weight: 300;
            background: rgba(77, 171, 247, 0.1);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #4dabf7;
        }
        .img-container {
            margin: 2.5rem auto;
            text-align: center;
        }
        .img-container img {
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
            border: 3px solid #495057;
        }
        .caption {
            font-style: italic;
            color: #adb5bd;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        blockquote {
            border-left: 4px solid #ff6b6b;
            padding: 20px;
            margin: 2rem 0;
            background: rgba(255, 107, 107, 0.08);
            border-radius: 0 10px 10px 0;
            font-style: italic;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.7rem;
        }
        strong {
            color: #ffd43b;
        }
        hr {
            border: none;
            height: 2px;
            background: linear-gradient(90deg, #ff6b6b, #4dabf7);
            margin: 3rem 0;
            opacity: 0.5;
        }
        .sidebar {
            background: rgba(30, 30, 46, 0.8);
            border-radius: 15px;
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget-title {
            color: #ffa94d;
            font-size: 1.3rem;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #495057;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #495057;
            border-radius: 8px 0 0 8px;
            background: #1c1c2e;
            color: #fff;
            font-size: 1rem;
        }
        .search-btn {
            background: #4dabf7;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: #339af0;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #495057;
            cursor: pointer;
        }
        .stars .active {
            color: #ffd43b;
        }
        .form-input, .form-textarea {
            padding: 12px 15px;
            border: 2px solid #495057;
            border-radius: 8px;
            background: #1c1c2e;
            color: #fff;
            font-size: 1rem;
            width: 100%;
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(45deg, #ff6b6b, #ff8787);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
        }
        .site-footer {
            background: rgba(0, 0, 0, 0.9);
            padding: 40px 0 20px;
            margin-top: 50px;
            border-top: 3px solid #4dabf7;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            color: #ff6b6b;
            margin-bottom: 15px;
        }
        friend-link {
            display: block;
            margin-bottom: 8px;
            color: #a5d8ff;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #495057;
            color: #adb5bd;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .article-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.8rem; }
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(0, 0, 0, 0.95);
                padding: 20px;
                border-top: 2px solid #ff6b6b;
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            article, .sidebar {
                padding: 20px;
            }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            .lead { font-size: 1.1rem; }
        }
