        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #0f1923 0%, #1a2b3c 100%);
            color: #ece8e1;
            min-height: 100vh;
        }
        a {
            color: #ff4655;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ff7a85;
            transform: translateY(-1px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(15, 25, 35, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ff4655;
            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: 'Tungsten', 'Arial Narrow', sans-serif;
            font-size: 2.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            background: linear-gradient(to right, #ff4655, #9a9ea3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: unset;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #ece8e1;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background: rgba(255, 70, 85, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ece8e1;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            background: rgba(26, 43, 60, 0.7);
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #9a9ea3;
        }
        .breadcrumb span {
            color: #ff4655;
            margin: 0 5px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-main {
            background: rgba(26, 43, 60, 0.8);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        .article-main h1 {
            font-size: 2.8rem;
            color: #ff4655;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 5px solid #ff4655;
            padding-left: 1rem;
        }
        .article-meta {
            color: #9a9ea3;
            font-size: 0.95rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #384c60;
        }
        .article-meta i {
            margin-right: 5px;
        }
        .article-main h2 {
            font-size: 2rem;
            color: #0fcefa;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #384c60;
        }
        .article-main h3 {
            font-size: 1.6rem;
            color: #ece8e1;
            margin: 2rem 0 1rem;
        }
        .article-main h4 {
            font-size: 1.3rem;
            color: #9a9ea3;
            margin: 1.5rem 0 0.8rem;
        }
        .article-main p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-main strong {
            color: #ffb800;
            font-weight: 700;
        }
        .article-main em {
            color: #0fcefa;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(145deg, #1e3347, #152232);
            border-left: 5px solid #ff4655;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
            box-shadow: inset 0 2px 10px rgba(0,0,0,0.3);
        }
        .inline-link-list {
            background: rgba(15, 25, 35, 0.6);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .inline-link-list h4 {
            margin-top: 0;
        }
        .inline-link-list ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .inline-link-list li a {
            display: block;
            padding: 0.8rem;
            background: rgba(255, 70, 85, 0.1);
            border-radius: 5px;
        }
        .inline-link-list li a:hover {
            background: rgba(255, 70, 85, 0.25);
        }
        .article-img {
            margin: 2.5rem auto;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid #384c60;
            max-width: 800px;
        }
        .article-img figcaption {
            text-align: center;
            font-style: italic;
            padding: 0.8rem;
            background: rgba(15, 25, 35, 0.7);
            color: #9a9ea3;
            font-size: 0.9rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: rgba(26, 43, 60, 0.8);
            border-radius: 12px;
            padding: 1.8rem;
            border-top: 4px solid #ff4655;
        }
        .widget h3 {
            color: #0fcefa;
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
        }
        .search-form input,
        .comment-form input,
        .comment-form textarea,
        .rating-form select {
            width: 100%;
            padding: 0.9rem;
            margin-bottom: 1rem;
            background: rgba(15, 25, 35, 0.7);
            border: 1px solid #384c60;
            border-radius: 6px;
            color: #ece8e1;
            font-size: 1rem;
        }
        .search-form button,
        .comment-form button,
        .rating-form button {
            width: 100%;
            padding: 0.9rem;
            background: linear-gradient(to right, #ff4655, #e03e4c);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-form button:hover,
        .comment-form button:hover,
        .rating-form button:hover {
            background: linear-gradient(to right, #e03e4c, #c93644);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 70, 85, 0.3);
        }
        .star-rating {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            font-size: 1.8rem;
            color: #384c60;
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffb800;
        }
        .star-rating input {
            display: none;
        }
        .site-footer {
            background: rgba(15, 25, 35, 0.95);
            border-top: 2px solid #384c60;
            margin-top: 4rem;
            padding: 3rem 0 2rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo {
            font-size: 2.2rem;
        }
        .footer-section h4 {
            color: #0fcefa;
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 0.7rem;
        }
        friend-link {
            display: block;
            background: rgba(255, 70, 85, 0.1);
            padding: 1rem;
            margin: 0.5rem 0;
            border-radius: 6px;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: rgba(255, 70, 85, 0.25);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #384c60;
            color: #9a9ea3;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background: rgba(15, 25, 35, 0.98);
                width: 100%;
                text-align: center;
                padding: 2rem 0;
                transition: 0.3s;
                gap: 1.5rem;
                border-top: 1px solid #384c60;
            }
            .main-nav.active ul {
                left: 0;
            }
            .article-main {
                padding: 1.5rem;
            }
            .article-main h1 {
                font-size: 2.2rem;
            }
            .article-main h2 {
                font-size: 1.8rem;
            }
        }
