        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c0f1d 0%, #1a1f3a 100%);
            color: #e0e0ff;
            line-height: 1.8;
            font-size: 18px;
            overflow-x: hidden;
        }
        a {
            color: #6ee7ff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ffcc5c;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
        }
        .site-header {
            background: rgba(12, 15, 29, 0.95);
            border-bottom: 3px solid #6ee7ff;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, #6ee7ff, #ffcc5c);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px rgba(110, 231, 255, 0.5);
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 8px;
        }
        .main-nav a:hover {
            background: rgba(110, 231, 255, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #6ee7ff;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background: rgba(26, 31, 58, 0.8);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #b0b0ff;
        }
        .breadcrumb a::after {
            content: " › ";
            margin: 0 0.5rem;
            color: #6ee7ff;
        }
        .breadcrumb a:last-child::after {
            content: "";
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        article {
            background: rgba(26, 31, 58, 0.7);
            padding: 3rem;
            border-radius: 20px;
            border: 2px solid #3a3f6e;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 3.5rem;
            color: #ffcc5c;
            text-align: center;
            margin-bottom: 2rem;
            text-shadow: 0 0 20px rgba(255, 204, 92, 0.5);
            border-bottom: 4px solid #6ee7ff;
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2.5rem;
            color: #6ee7ff;
            margin: 2.5rem 0 1.5rem;
            padding-left: 1rem;
            border-left: 6px solid #ffcc5c;
        }
        h3 {
            font-size: 2rem;
            color: #b0b0ff;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.5rem;
            color: #d0d0ff;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .highlight {
            background: rgba(110, 231, 255, 0.15);
            border-left: 5px solid #ffcc5c;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 12px 12px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.5rem;
        }
        .last-updated {
            text-align: center;
            font-style: italic;
            color: #a0a0ff;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px dashed #3a3f6e;
        }
        .search-box, .comment-form, .rating-form {
            background: rgba(12, 15, 29, 0.9);
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
            border: 2px solid #3a3f6e;
        }
        .search-box h2, .comment-form h2, .rating-form h2 {
            border-left: none;
            padding-left: 0;
            text-align: center;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        input, textarea, select {
            padding: 1rem;
            border-radius: 10px;
            border: 2px solid #3a3f6e;
            background: #1a1f3a;
            color: #e0e0ff;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #6ee7ff;
            box-shadow: 0 0 10px rgba(110, 231, 255, 0.5);
        }
        button {
            padding: 1rem 2rem;
            background: linear-gradient(90deg, #6ee7ff, #3a8bff);
            color: #0c0f1d;
            border: none;
            border-radius: 10px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(110, 231, 255, 0.4);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            font-size: 2rem;
            color: #ffcc5c;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        footer {
            background: rgba(12, 15, 29, 0.95);
            padding: 3rem 2rem;
            text-align: center;
            border-top: 3px solid #ffcc5c;
            margin-top: 4rem;
        }
        friend-link {
            display: block;
            margin: 2rem 0;
        }
        .friend-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .friend-links a {
            background: rgba(26, 31, 58, 0.8);
            padding: 0.8rem 1.5rem;
            border-radius: 10px;
            border: 1px solid #3a3f6e;
        }
        .copyright {
            color: #a0a0ff;
            font-size: 0.9rem;
            border-top: 1px solid #3a3f6e;
            padding-top: 1.5rem;
        }
        @media (max-width: 768px) {
            .site-header {
                flex-direction: column;
                align-items: flex-start;
                padding: 1rem;
            }
            .my-logo {
                font-size: 2rem;
                margin-bottom: 1rem;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 1rem;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0;
                margin-top: 1rem;
            }
            .main-nav a {
                display: block;
                padding: 1rem;
                border-bottom: 1px solid #3a3f6e;
            }
            #nav-toggle:checked ~ .main-nav ul {
                display: flex;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.7rem;
            }
            .container {
                padding: 1rem;
            }
            article {
                padding: 1.5rem;
            }
            .friend-links {
                flex-direction: column;
                align-items: center;
            }
        }
