        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%);
            color: #f0f0f0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #00b7ff;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ffcc00;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(20, 20, 35, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #00b7ff;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #00b7ff, #ff0080);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px rgba(0, 183, 255, 0.5);
        }
        .my-logo:hover {
            text-shadow: 0 0 25px rgba(0, 183, 255, 0.9);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
        }
        .nav-desktop a:hover {
            background: rgba(0, 183, 255, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #00b7ff;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background: rgba(20, 20, 35, 0.98);
            padding: 20px;
            display: none;
            flex-direction: column;
            gap: 15px;
            border-top: 2px solid #00b7ff;
            z-index: 999;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 1.1rem;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #00b7ff;
        }
        main {
            padding: 40px 0;
            min-height: 100vh;
        }
        article {
            background: rgba(30, 30, 50, 0.7);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            margin-bottom: 40px;
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 25px;
            color: #00b7ff;
            text-shadow: 0 0 20px rgba(0, 183, 255, 0.7);
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
        }
        h2 {
            font-size: 2.2rem;
            margin: 40px 0 20px;
            color: #ffcc00;
            border-left: 5px solid #ffcc00;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: #ff66c4;
        }
        h4 {
            font-size: 1.4rem;
            margin: 25px 0 12px;
            color: #00ffaa;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
            hyphens: auto;
        }
        .highlight {
            background: rgba(255, 204, 0, 0.15);
            border-left: 5px solid #ffcc00;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 12px 12px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 8px;
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: #aaa;
            margin-bottom: 30px;
            font-size: 0.95rem;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .search-box, .comment-box, .rating-box {
            background: rgba(40, 40, 70, 0.8);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid rgba(0, 183, 255, 0.3);
        }
        .search-box h3, .comment-box h3, .rating-box h3 {
            margin-top: 0;
            color: #00b7ff;
        }
        input, textarea, select {
            width: 100%;
            padding: 15px;
            margin: 10px 0;
            border-radius: 10px;
            border: 1px solid #555;
            background: rgba(10, 10, 20, 0.8);
            color: #fff;
            font-size: 1rem;
        }
        button {
            background: linear-gradient(90deg, #00b7ff, #0088ff);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 10px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: all 0.3s ease;
            width: 100%;
        }
        button:hover {
            background: linear-gradient(90deg, #ffcc00, #ff8800);
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(255, 204, 0, 0.5);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
            font-size: 2rem;
            color: #555;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffcc00;
        }
        .related-links {
            background: rgba(50, 50, 80, 0.6);
            padding: 25px;
            border-radius: 15px;
            margin: 40px 0;
        }
        .related-links h3 {
            color: #ff66c4;
            margin-top: 0;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        .links-grid a {
            display: block;
            padding: 12px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            transition: all 0.3s;
        }
        .links-grid a:hover {
            background: rgba(0, 183, 255, 0.3);
            transform: translateX(10px);
        }
        footer {
            background: rgba(10, 10, 20, 0.98);
            padding: 50px 0 20px;
            border-top: 2px solid #00b7ff;
            text-align: center;
        }
        friend-link {
            display: block;
            margin: 20px 0;
            font-size: 1.2rem;
            color: #ffcc00;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin: 30px 0;
        }
        .footer-links a {
            color: #aaa;
        }
        .footer-links a:hover {
            color: #00b7ff;
        }
        .copyright {
            margin-top: 30px;
            color: #777;
            font-size: 0.9rem;
            border-top: 1px solid #333;
            padding-top: 20px;
        }
