        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #f0f0f0;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            min-height: 100vh;
        }
        a {
            color: #e94560;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff9a9e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 10, 20, 0.95);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.5rem;
            color: #e94560;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 3px 3px 0 #0f3460, 6px 6px 0 rgba(0, 0, 0, 0.8);
        }
        .logo a:hover {
            color: #ff9a9e;
            text-shadow: 3px 3px 0 #16213e, 6px 6px 0 rgba(0, 0, 0, 0.9);
        }
        .my-logo {
            font-style: italic;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 2rem;
        }
        .nav-links a {
            color: #f0f0f0;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background: rgba(233, 69, 96, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #f0f0f0;
            background: none;
            border: none;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: rgba(15, 52, 96, 0.5);
            margin-bottom: 2rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: #e94560;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            padding: 2rem 0;
        }
        article {
            background: rgba(22, 33, 62, 0.8);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
        }
        article h1 {
            color: #e94560;
            font-size: 3rem;
            margin-bottom: 1rem;
            text-align: center;
            border-bottom: 3px solid #0f3460;
            padding-bottom: 1rem;
        }
        article h2 {
            color: #ff9a9e;
            font-size: 2.2rem;
            margin: 2rem 0 1rem;
            padding-left: 0.5rem;
            border-left: 5px solid #e94560;
        }
        article h3 {
            color: #a9cce3;
            font-size: 1.8rem;
            margin: 1.5rem 0 0.8rem;
        }
        article h4 {
            color: #7fb3d5;
            font-size: 1.4rem;
            margin: 1.2rem 0 0.6rem;
        }
        article p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        article em {
            color: #ffcc00;
            font-style: italic;
        }
        article strong {
            color: #ff9a9e;
            font-weight: bold;
        }
        .highlight-box {
            background: rgba(15, 52, 96, 0.6);
            border-left: 5px solid #e94560;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            text-align: center;
            margin: 2rem 0;
        }
        .image-container img {
            border: 3px solid #e94560;
            border-radius: 10px;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.7);
            max-width: 800px;
            margin: 0 auto;
        }
        .image-container figcaption {
            margin-top: 0.5rem;
            font-style: italic;
            color: #a9cce3;
        }
        .update-time {
            text-align: right;
            font-size: 0.9rem;
            color: #7fb3d5;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px dashed #0f3460;
        }
        aside {
            background: rgba(22, 33, 62, 0.8);
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
            align-self: start;
        }
        .widget {
            margin-bottom: 2rem;
        }
        .widget h3 {
            color: #ff9a9e;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #0f3460;
        }
        .search-form input,
        .comment-form input,
        .comment-form textarea,
        .rating-form select {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #0f3460;
            border-radius: 6px;
            background: rgba(15, 52, 96, 0.5);
            color: #f0f0f0;
            font-size: 1rem;
        }
        .search-form button,
        .comment-form button,
        .rating-form button {
            width: 100%;
            padding: 0.8rem;
            background: #e94560;
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-form button:hover,
        .comment-form button:hover,
        .rating-form button:hover {
            background: #ff9a9e;
        }
        footer {
            background: rgba(10, 10, 20, 0.95);
            padding: 2rem 0;
            margin-top: 3rem;
            border-top: 3px solid #e94560;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #ff9a9e;
            margin-bottom: 1rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.5rem;
            color: #a9cce3;
        }
        friend-link a {
            color: #a9cce3;
        }
        friend-link a:hover {
            color: #ff9a9e;
        }
        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #0f3460;
            color: #7fb3d5;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 0.5rem 0;
            }
            .hamburger {
                display: block;
            }
            main {
                grid-template-columns: 1fr;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
        }
