        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0a2e38 0%, #1a1a2e 100%);
            color: #e0e0e0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #4fc3f7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #29b6f6;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .site-header {
            background: rgba(10, 25, 47, 0.95);
            backdrop-filter: blur(10px);
            padding: 1.2rem 5%;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #00bcd4;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #00bcd4, #00e5ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px rgba(0, 188, 212, 0.3);
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .main-nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 25px;
        }
        .main-nav a:hover {
            background: rgba(0, 188, 212, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #00bcd4;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            padding: 1rem 5%;
            background: rgba(255, 255, 255, 0.03);
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #80d8ff;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 2rem 5%;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .container {
                grid-template-columns: 1fr;
            }
        }
        .main-content {
            background: rgba(20, 30, 48, 0.7);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }
        .article-header {
            margin-bottom: 3rem;
            text-align: center;
            border-bottom: 3px dashed #00bcd4;
            padding-bottom: 2rem;
        }
        h1 {
            font-size: 3.2rem;
            color: #00e5ff;
            margin-bottom: 1rem;
            text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
            line-height: 1.2;
        }
        .article-meta {
            color: #aaa;
            font-style: italic;
            margin-bottom: 1rem;
        }
        h2 {
            font-size: 2.4rem;
            color: #4fc3f7;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(79, 195, 247, 0.3);
        }
        h3 {
            font-size: 1.8rem;
            color: #80d8ff;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #b3e5fc;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(0, 188, 212, 0.1);
            border-left: 5px solid #00bcd4;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 12px 12px 0;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .sidebar {
            background: rgba(15, 25, 45, 0.8);
            border-radius: 20px;
            padding: 2rem;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            color: #00bcd4;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #00bcd4;
        }
        .search-box, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.9rem;
            border-radius: 10px;
            border: 1px solid #444;
            background: rgba(255, 255, 255, 0.07);
            color: #fff;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #00bcd4;
            box-shadow: 0 0 8px rgba(0, 188, 212, 0.5);
        }
        button {
            background: linear-gradient(90deg, #00bcd4, #00838f);
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 10px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        button:hover {
            background: linear-gradient(90deg, #00e5ff, #0097a7);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(0, 188, 212, 0.4);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ffb300;
            margin: 1rem 0;
        }
        .star {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .star:hover {
            transform: scale(1.3);
        }
        .site-footer {
            background: #0a1929;
            padding: 3rem 5% 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid #00bcd4;
        }
        .friend-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        friend-link {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            background: rgba(0, 188, 212, 0.1);
            border-radius: 25px;
            border: 1px solid #00bcd4;
            transition: all 0.3s;
        }
        friend-link:hover {
            background: rgba(0, 188, 212, 0.3);
            transform: translateY(-5px);
        }
        .copyright {
            text-align: center;
            color: #78909c;
            font-size: 0.9rem;
            padding-top: 1.5rem;
            border-top: 1px solid #37474f;
        }
        @media (max-width: 768px) {
            .site-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 5%;
            }
            .main-nav {
                flex-direction: column;
                width: 100%;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
                margin-top: 1rem;
            }
            #nav-toggle:checked ~ .main-nav {
                max-height: 500px;
            }
            .main-nav a {
                width: 100%;
                text-align: center;
                padding: 1rem;
                border-bottom: 1px solid rgba(255,255,255,0.05);
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            .main-content {
                padding: 2rem;
            }
            .container {
                padding: 1.5rem;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3em;
        }
        .bold {
            font-weight: 800;
            color: #fff;
        }
        .last-updated {
            background: rgba(255, 193, 7, 0.1);
            padding: 1rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
            color: #ffd54f;
        }
