        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #e0e0e0;
            background: #0a0a0a;
            background-image: linear-gradient(rgba(20, 20, 30, 0.9), rgba(10, 10, 20, 0.95)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="%231a1a2e"/></svg>');
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #00b4d8;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #90e0ef;
            text-shadow: 0 0 8px rgba(144, 224, 239, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        header {
            background: rgba(15, 15, 25, 0.95);
            border-bottom: 2px solid #00b4d8;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 2rem;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo a {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #00b4d8, #0077b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .logo a:hover {
            background: linear-gradient(90deg, #90e0ef, #00b4d8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background: rgba(0, 180, 216, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #00b4d8;
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background: rgba(30, 30, 40, 0.8);
            font-size: 0.9rem;
            max-width: 1400px;
            margin: 0 auto;
            border-bottom: 1px solid #333;
        }
        .breadcrumb a {
            color: #90e0ef;
        }
        .breadcrumb span {
            color: #aaa;
        }
        main {
            flex: 1;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            width: 100%;
        }
        article {
            background: rgba(20, 20, 30, 0.8);
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #333;
        }
        h1 {
            font-size: 3.5rem;
            color: #00b4d8;
            margin-bottom: 1.5rem;
            text-align: center;
            text-shadow: 0 0 15px rgba(0, 180, 216, 0.7);
            border-bottom: 3px solid #0077b6;
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2.5rem;
            color: #90e0ef;
            margin: 2.5rem 0 1.2rem;
            padding-left: 0.5rem;
            border-left: 5px solid #00b4d8;
        }
        h3 {
            font-size: 2rem;
            color: #caf0f8;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.5rem;
            color: #e0f7fa;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.2rem;
            line-height: 1.8;
            text-align: justify;
        }
        strong {
            color: #00b4d8;
            font-weight: 700;
        }
        em {
            color: #90e0ef;
            font-style: italic;
        }
        .highlight {
            background: rgba(0, 180, 216, 0.1);
            border-left: 4px solid #00b4d8;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .image-container {
            margin: 3rem auto;
            text-align: center;
            max-width: 900px;
        }
        .image-container img {
            border-radius: 10px;
            border: 3px solid #0077b6;
            box-shadow: 0 5px 20px rgba(0, 119, 182, 0.5);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 30px rgba(0, 119, 182, 0.8);
        }
        .caption {
            margin-top: 0.8rem;
            font-size: 1rem;
            color: #aaa;
            font-style: italic;
        }
        .search-section, .comment-section, .rating-section {
            background: rgba(15, 25, 35, 0.9);
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            border: 1px solid #0077b6;
        }
        .search-section h3, .comment-section h3, .rating-section h3 {
            color: #00b4d8;
            margin-top: 0;
        }
        form {
            display: grid;
            gap: 1.5rem;
            max-width: 800px;
            margin: 0 auto;
        }
        input, textarea, select {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid #0077b6;
            border-radius: 5px;
            color: #e0e0e0;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #00b4d8;
            box-shadow: 0 0 10px rgba(0, 180, 216, 0.5);
        }
        button {
            background: linear-gradient(90deg, #0077b6, #00b4d8);
            color: white;
            border: none;
            padding: 1rem 2rem;
            font-size: 1.2rem;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
        }
        button:hover {
            background: linear-gradient(90deg, #0096c7, #90e0ef);
            transform: translateY(-3px);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 2rem;
            color: #ffd700;
            margin: 1rem 0;
        }
        .star-rating i {
            cursor: pointer;
            transition: transform 0.2s ease;
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        footer {
            background: rgba(10, 10, 20, 0.95);
            border-top: 2px solid #0077b6;
            padding: 3rem 2rem;
            margin-top: 3rem;
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-section h4 {
            color: #00b4d8;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        friend-link {
            display: block;
            margin: 0.8rem 0;
            padding: 0.5rem;
            background: rgba(0, 180, 216, 0.1);
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        friend-link:hover {
            background: rgba(0, 180, 216, 0.2);
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            h1 { font-size: 3rem; }
            h2 { font-size: 2.2rem; }
            article { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .header-container { padding: 1rem; }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(15, 15, 25, 0.98);
                padding: 1rem;
                border-top: 1px solid #00b4d8;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger { display: block; }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            main { padding: 0 1rem; }
            article { padding: 1.5rem; }
            .footer-content { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.8rem; }
            p { font-size: 1rem; }
            .search-section, .comment-section, .rating-section { padding: 1.5rem; }
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #90e0ef;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #333;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 0.5rem;
            vertical-align: middle;
        }
        .link-in-text {
            font-weight: bold;
            border-bottom: 1px dotted #00b4d8;
        }
