        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #74c0fc;
            text-shadow: 0 0 8px rgba(116, 192, 252, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .site-header {
            background: linear-gradient(to bottom, #1a2332 0%, #0f1419 100%);
            border-bottom: 2px solid #2a3b5a;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff6b00, #ffa800);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo span {
            color: #4dabf7;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .main-nav a {
            color: #b0bec5;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #fff;
            background-color: rgba(77, 171, 247, 0.15);
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background-color: #151e2a;
            font-size: 0.9rem;
            color: #8a9ba8;
            border-bottom: 1px solid #2a3b5a;
        }
        .breadcrumb a {
            color: #8a9ba8;
        }
        .breadcrumb a:hover {
            color: #4dabf7;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ffa800;
            cursor: pointer;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        .main-content {
            padding: 2.5rem 0;
        }
        .sidebar {
            padding: 2.5rem 1rem;
        }
        h1, h2, h3, h4 {
            color: #f0f4f8;
            margin-top: 2.2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 {
            font-size: 3.2rem;
            color: #ffa800;
            border-bottom: 3px solid #2a3b5a;
            padding-bottom: 0.5rem;
            margin-top: 0;
        }
        h2 {
            font-size: 2.4rem;
            color: #4dabf7;
        }
        h3 {
            font-size: 1.8rem;
            color: #69db7c;
        }
        h4 {
            font-size: 1.4rem;
            color: #b197fc;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #c0c9d1;
            font-weight: 500;
            background-color: rgba(42, 59, 90, 0.3);
            padding: 1.5rem;
            border-left: 5px solid #ffa800;
            border-radius: 0 8px 8px 0;
            margin-bottom: 2.5rem;
        }
        strong, b {
            color: #ffd8a8;
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(145deg, rgba(42, 59, 90, 0.6), rgba(22, 33, 52, 0.8));
            border: 1px solid #3a506b;
            border-radius: 10px;
            padding: 2rem;
            margin: 2.5rem 0;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            border: 2px solid #3a506b;
            margin: 2rem auto;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .update-time {
            font-size: 0.95rem;
            color: #8a9ba8;
            font-style: italic;
            text-align: right;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px dashed #3a506b;
        }
        .widget {
            background-color: #151e2a;
            border: 1px solid #2a3b5a;
            border-radius: 10px;
            padding: 1.8rem;
            margin-bottom: 2rem;
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            color: #ffa800;
            border-bottom: 2px solid #2a3b5a;
            padding-bottom: 0.7rem;
        }
        .search-form input[type="text"] {
            width: 100%;
            padding: 0.9rem 1rem;
            background-color: #0f1419;
            border: 1px solid #3a506b;
            border-radius: 6px;
            color: #e0e0e0;
            font-size: 1rem;
            margin-bottom: 1rem;
        }
        .search-form button {
            width: 100%;
            padding: 0.9rem;
            background: linear-gradient(to right, #2a3b5a, #1c2b3e);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background: linear-gradient(to right, #3a506b, #2a3b5a);
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ffd43b;
            margin: 0.5rem 0;
        }
        .rating-stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .comment-widget textarea {
            width: 100%;
            min-height: 150px;
            padding: 1rem;
            background-color: #0f1419;
            border: 1px solid #3a506b;
            border-radius: 6px;
            color: #e0e0e0;
            font-size: 1rem;
            resize: vertical;
            margin-bottom: 1rem;
        }
        .comment-widget button,
        .rating-widget button {
            padding: 0.9rem 1.5rem;
            background: linear-gradient(to right, #2a3b5a, #1c2b3e);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .comment-widget button:hover,
        .rating-widget button:hover {
            background: linear-gradient(to right, #3a506b, #2a3b5a);
        }
        .site-footer {
            background-color: #0a0f14;
            border-top: 2px solid #2a3b5a;
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-section h4 {
            color: #ffa800;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        friend-link {
            display: block;
            padding: 0.8rem 1rem;
            background-color: rgba(42, 59, 90, 0.5);
            border-radius: 6px;
            margin-bottom: 0.8rem;
            border-left: 4px solid #4dabf7;
            transition: all 0.3s ease;
        }
        friend-link:hover {
            background-color: rgba(77, 171, 247, 0.15);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #2a3b5a;
            color: #8a9ba8;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .sidebar {
                order: -1;
                padding-top: 0;
            }
        }
        @media (max-width: 768px) {
            .site-header {
                padding: 1rem;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #151e2a;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-top: 1px solid #2a3b5a;
                box-shadow: 0 10px 15px rgba(0,0,0,0.3);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            .container {
                padding: 0 1rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
