        * { 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: #f0f0f0;
            background: linear-gradient(135deg, #0c0c1d 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            max-width: 100%;
            overflow-x: hidden;
        }
        a { color: #00b4d8; text-decoration: none; transition: color 0.3s, transform 0.2s; }
        a:hover { color: #90e0ef; transform: translateY(-1px); }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 95%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        .section-padding { padding: 4rem 0; }
        .text-center { text-align: center; }
        .text-accent { color: #ffd166; }
        .bg-dark { background-color: rgba(10, 10, 20, 0.9); border-radius: 10px; padding: 2rem; border: 1px solid #222244; }
        .site-header {
            background: rgba(5, 5, 15, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #00b4d8;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            font-weight: bold;
            background: linear-gradient(to right, #ffd166, #ef476f, #118ab2);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1px;
        }
        .my-logo a { background: none; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .main-nav a {
            color: #caf0f8;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .main-nav a:hover {
            background: rgba(0, 180, 216, 0.2);
            color: #90e0ef;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #caf0f8;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: rgba(20, 20, 40, 0.7);
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #00b4d8;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .main-content { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; }
        .article-content { line-height: 1.8; }
        h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: #ffd166;
            line-height: 1.2;
            text-shadow: 0 2px 8px rgba(0,0,0,0.7);
        }
        h2 {
            font-size: 2.2rem;
            margin: 2.5rem 0 1.5rem;
            color: #06d6a0;
            border-left: 5px solid #ef476f;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.7rem;
            margin: 2rem 0 1rem;
            color: #118ab2;
        }
        h4 {
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
            color: #caf0f8;
        }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        strong { color: #ffd166; font-weight: 700; }
        em { color: #a0e7ff; }
        blockquote {
            border-left: 4px solid #ef476f;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            background: rgba(239, 71, 111, 0.08);
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
        }
        ul, ol { margin-left: 2rem; margin-bottom: 1.5rem; }
        li { margin-bottom: 0.5rem; }
        .article-image {
            margin: 2.5rem auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            border: 3px solid #00b4d8;
            max-width: 800px;
        }
        .article-image img { width: 100%; transition: transform 0.5s ease; }
        .article-image:hover img { transform: scale(1.03); }
        .image-caption {
            text-align: center;
            font-style: italic;
            padding: 0.8rem;
            background: rgba(0, 0, 0, 0.5);
            color: #b8c1ec;
            font-size: 0.95rem;
        }
        .sidebar {
            background: rgba(15, 15, 35, 0.9);
            border-radius: 15px;
            padding: 1.5rem;
            border: 1px solid #333366;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget { margin-bottom: 2.5rem; }
        .sidebar h3 {
            color: #ffd166;
            font-size: 1.5rem;
            border-bottom: 2px solid #06d6a0;
            padding-bottom: 0.5rem;
            margin-bottom: 1.2rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group { display: flex; flex-direction: column; }
        label { margin-bottom: 0.5rem; color: #caf0f8; font-weight: 600; }
        input, textarea, select {
            padding: 0.8rem 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid #444477;
            border-radius: 8px;
            color: #f0f0f0;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #00b4d8;
            box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.2);
        }
        button, .btn {
            background: linear-gradient(to right, #ef476f, #ff9a5c);
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #d43d63, #e88a4e);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(239, 71, 111, 0.3);
        }
        .stars { display: flex; gap: 0.5rem; font-size: 1.8rem; cursor: pointer; }
        .stars i { color: #444; transition: color 0.2s; }
        .stars i:hover, .stars i.active { color: #ffd700; }
        .comment { background: rgba(30, 30, 60, 0.7); padding: 1.5rem; border-radius: 10px; margin-bottom: 1.5rem; border-left: 4px solid #118ab2; }
        .comment-author { font-weight: bold; color: #06d6a0; }
        .comment-date { font-size: 0.9rem; color: #aaa; margin-left: 1rem; }
        .comment-text { margin-top: 0.8rem; }
        .site-footer {
            background: rgba(5, 5, 15, 1);
            border-top: 2px solid #00b4d8;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 0.8rem;
            border-left: 4px solid #ffd166;
            transition: background 0.3s;
        }
        friend-link:hover { background: rgba(255, 255, 255, 0.1); }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333366;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
            .sidebar { position: static; }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
        }
        @media (max-width: 768px) {
            .header-content { flex-wrap: wrap; }
            .main-nav { display: none; width: 100%; order: 3; margin-top: 1rem; }
            .main-nav.active { display: block; }
            .main-nav ul { flex-direction: column; gap: 0; }
            .main-nav li { border-bottom: 1px solid #333366; }
            .main-nav a { display: block; padding: 1rem; }
            .hamburger { display: block; }
            .section-padding { padding: 2.5rem 0; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.8rem; }
        }
