        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1419;
            color: #e6eef5;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #5dadec;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #9dd1ff;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-padding {
            padding: 60px 0;
        }
        header {
            background: linear-gradient(135deg, #1a2230 0%, #0f1419 100%);
            border-bottom: 1px solid #2a3647;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff6b00, #ffa500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            color: #c2d1e0;
            font-weight: 600;
            font-size: 1rem;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .nav-links a:hover {
            background-color: rgba(93, 173, 236, 0.15);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #e6eef5;
            border-radius: 2px;
            transition: 0.3s;
        }
        .breadcrumb {
            background-color: #151e2b;
            padding: 12px 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid #2a3647;
        }
        .breadcrumb a {
            color: #8ca0b8;
        }
        .hero {
            background: linear-gradient(rgba(15, 20, 25, 0.85), rgba(15, 20, 25, 0.95)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            text-align: center;
            padding: 80px 20px;
            border-bottom: 3px solid #ff6b00;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            line-height: 1.2;
            color: white;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #c2d1e0;
        }
        .search-box {
            max-width: 600px;
            margin: 30px auto;
            background: #1a2230;
            padding: 25px;
            border-radius: 12px;
            border: 1px solid #2a3647;
        }
        .search-box h3 {
            margin-bottom: 15px;
            color: #ffa500;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 14px 18px;
            border: 2px solid #3a4a60;
            border-radius: 8px 0 0 8px;
            background-color: #0f1419;
            color: #e6eef5;
            font-size: 1rem;
        }
        .search-form button {
            padding: 0 25px;
            background: linear-gradient(90deg, #ff6b00, #ff8c00);
            color: white;
            border: none;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: 600;
            transition: opacity 0.3s;
        }
        .search-form button:hover {
            opacity: 0.9;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 20px;
        }
        @media (max-width: 768px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: #151e2b;
            border-radius: 12px;
            padding: 40px;
            border: 1px solid #2a3647;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffffff;
            margin-bottom: 25px;
            line-height: 1.3;
        }
        h2 {
            font-size: 2.2rem;
            color: #ffa500;
            margin: 50px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a3647;
        }
        h3 {
            font-size: 1.8rem;
            color: #5dadec;
            margin: 35px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #9dd1ff;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            color: #c2d1e0;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1a2b3a 0%, #15202b 100%);
            border-left: 5px solid #ff6b00;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #8ca0b8;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        aside {
            background-color: #151e2b;
            border-radius: 12px;
            padding: 30px;
            border: 1px solid #2a3647;
            align-self: start;
            position: sticky;
            top: 140px;
        }
        .widget {
            margin-bottom: 35px;
        }
        .widget h3 {
            color: #ffa500;
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #2a3647;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #2a3647;
        }
        .link-list a {
            display: block;
            padding: 10px 15px;
            background-color: #1a2230;
            border-radius: 6px;
            transition: all 0.3s;
        }
        .link-list a:hover {
            background-color: #2a3647;
            transform: translateX(5px);
        }
        .comments-section, .rating-section {
            background-color: #151e2b;
            border-radius: 12px;
            padding: 40px;
            margin-top: 40px;
            border: 1px solid #2a3647;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 20px;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            direction: rtl;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .rating-stars i {
            color: #3a4a60;
            transition: color 0.3s;
        }
        .rating-stars i:hover,
        .rating-stars i:hover ~ i {
            color: #ffc107;
        }
        input, textarea, select {
            padding: 14px 18px;
            border: 2px solid #3a4a60;
            border-radius: 8px;
            background-color: #0f1419;
            color: #e6eef5;
            font-size: 1rem;
            width: 100%;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            padding: 16px 30px;
            background: linear-gradient(90deg, #ff6b00, #ff8c00);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: opacity 0.3s;
            align-self: flex-start;
        }
        .submit-btn:hover {
            opacity: 0.9;
        }
        footer {
            background-color: #0a0f14;
            border-top: 3px solid #ff6b00;
            padding: 50px 20px 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        friend-link {
            display: block;
            padding: 12px 20px;
            background-color: #1a2230;
            margin-bottom: 10px;
            border-radius: 6px;
            border-left: 4px solid #5dadec;
        }
        friend-link:hover {
            background-color: #2a3647;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2a3647;
            color: #8ca0b8;
            font-size: 0.95rem;
        }
        .update-time {
            color: #ffa500;
            font-weight: 600;
            margin-top: 30px;
            padding: 15px;
            background-color: #1a2230;
            border-radius: 8px;
            display: inline-block;
        }
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.6rem; }
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #1a2230;
                padding: 20px;
                border-top: 1px solid #2a3647;
                box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: flex;
            }
            .header-container {
                padding: 15px;
            }
            .hero h1 { font-size: 2.2rem; }
            .hero p { font-size: 1.1rem; }
            article, aside, .comments-section, .rating-section {
                padding: 25px;
            }
            main {
                padding: 25px 15px;
                gap: 25px;
            }
        }
