        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #00b4ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff4655;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #151c25;
            border-bottom: 2px solid #ff4655;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #00b4ff, #ff4655);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #fff;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav ul li a {
            color: #b8c1cc;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        nav ul li a:hover {
            background-color: #1e2735;
            color: #fff;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #1a212d;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #8a9bb2;
        }
        .breadcrumb span {
            color: #ff4655;
            margin: 0 5px;
        }
        main {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background-color: #151c25;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #fff;
            line-height: 1.2;
            border-left: 5px solid #ff4655;
            padding-left: 15px;
        }
        h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: #00b4ff;
            padding-bottom: 10px;
            border-bottom: 2px dashed #2a3547;
        }
        h3 {
            font-size: 1.6rem;
            margin: 30px 0 15px;
            color: #ffb347;
        }
        h4 {
            font-size: 1.3rem;
            margin: 25px 0 12px;
            color: #9dcc5f;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        strong {
            color: #fff;
            font-weight: 700;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255,70,85,0.1), rgba(0,180,255,0.1));
            padding: 25px;
            border-radius: 8px;
            border-left: 4px solid #ff4655;
            margin: 30px 0;
        }
        .inline-link {
            font-weight: 700;
            border-bottom: 1px dotted #00b4ff;
        }
        .image-wrapper {
            margin: 30px 0;
            text-align: center;
        }
        .image-wrapper img {
            border-radius: 8px;
            border: 2px solid #2a3547;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .caption {
            font-style: italic;
            color: #8a9bb2;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        aside {
            background-color: #151c25;
            padding: 25px;
            border-radius: 10px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: #00b4ff;
        }
        .search-form input {
            width: 100%;
            padding: 12px 15px;
            background-color: #1e2735;
            border: 1px solid #2a3547;
            border-radius: 6px;
            color: #fff;
            margin-bottom: 10px;
        }
        .search-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(90deg, #ff4655, #ff6b6b);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .search-form button:hover {
            transform: translateY(-2px);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #ffd700;
            margin-bottom: 15px;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            padding: 12px;
            background-color: #1e2735;
            border: 1px solid #2a3547;
            border-radius: 6px;
            color: #fff;
            min-height: 120px;
            resize: vertical;
        }
        .btn-submit {
            display: block;
            width: 100%;
            padding: 12px;
            background: linear-gradient(90deg, #00b4ff, #0088cc);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            margin-top: 10px;
            transition: transform 0.2s;
        }
        .btn-submit:hover {
            transform: translateY(-2px);
        }
        footer {
            background-color: #0a0e14;
            padding: 50px 0 30px;
            border-top: 2px solid #2a3547;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: #00b4ff;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        friend-link {
            display: block;
            padding: 10px 15px;
            background-color: #151c25;
            margin-bottom: 10px;
            border-radius: 6px;
            border-left: 3px solid #9dcc5f;
            transition: transform 0.2s;
        }
        friend-link:hover {
            transform: translateX(5px);
            background-color: #1a212d;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2a3547;
            color: #8a9bb2;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #151c25;
                flex-direction: column;
                padding: 20px;
                border-top: 1px solid #2a3547;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            nav.active ul {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article, aside {
                padding: 20px;
            }
        }
