        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0c0c1d 0%, #1a1a2e 100%);
            color: #e0e0ff;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #6c8cff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ffcc00;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(15, 15, 35, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #2a2a5a;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ffcc00, #ff6600);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px rgba(255, 102, 0, 0.3);
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .desktop-nav a:hover {
            background: rgba(108, 140, 255, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffcc00;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: rgba(20, 20, 45, 0.98);
            padding: 20px;
            border-top: 1px solid #2a2a5a;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 15px;
            border-bottom: 1px solid #33335a;
            font-weight: 600;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #a0a0cc;
            border-bottom: 1px solid #2a2a5a;
        }
        .breadcrumb a {
            color: #a0a0cc;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        .search-section {
            padding: 40px 0 20px;
            text-align: center;
        }
        .search-box {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
        }
        .search-box input {
            width: 100%;
            padding: 16px 25px;
            border-radius: 50px;
            border: 2px solid #3a3a6a;
            background: rgba(30, 30, 60, 0.8);
            color: #fff;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        .search-box input:focus {
            outline: none;
            border-color: #6c8cff;
            box-shadow: 0 0 20px rgba(108, 140, 255, 0.5);
        }
        .search-box button {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: #6c8cff;
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s ease;
        }
        .search-box button:hover {
            background: #ff6600;
        }
        main {
            flex: 1;
            padding: 30px 0 50px;
        }
        article {
            background: rgba(25, 25, 45, 0.7);
            border-radius: 15px;
            padding: 40px;
            margin-top: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #3a3a6a;
        }
        h1 {
            font-size: 3.2rem;
            background: linear-gradient(90deg, #ffcc00, #ff9900);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 25px;
            line-height: 1.2;
            text-align: center;
        }
        h2 {
            font-size: 2.3rem;
            color: #ffcc00;
            margin: 45px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3a3a6a;
        }
        h3 {
            font-size: 1.8rem;
            color: #6c8cff;
            margin: 35px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #a0a0ff;
            margin: 25px 0 12px;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.15rem;
            text-align: justify;
            hyphens: auto;
        }
        .highlight {
            background: rgba(255, 204, 0, 0.1);
            border-left: 5px solid #ffcc00;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
            font-weight: 600;
        }
        .info-box {
            background: rgba(108, 140, 255, 0.08);
            border: 1px solid #3a3a6a;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
        }
        .image-container {
            margin: 40px auto;
            text-align: center;
            max-width: 900px;
        }
        .image-container img {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .caption {
            font-style: italic;
            color: #a0a0cc;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        ul, ol {
            margin: 20px 0 20px 40px;
        }
        li {
            margin-bottom: 10px;
        }
        blockquote {
            border-left: 4px solid #ff6600;
            padding-left: 25px;
            margin: 30px 0;
            font-style: italic;
            color: #ccccff;
            font-size: 1.2rem;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #8888cc;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px dashed #3a3a6a;
        }
        .interactive-section {
            margin: 50px 0;
            padding: 30px;
            background: rgba(40, 40, 70, 0.5);
            border-radius: 12px;
        }
        .rating-form, .comment-form {
            margin-top: 30px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        form label {
            display: block;
            margin: 15px 0 8px;
            font-weight: 600;
        }
        form input, form textarea, form select {
            width: 100%;
            padding: 14px;
            border-radius: 8px;
            border: 1px solid #3a3a6a;
            background: rgba(20, 20, 40, 0.8);
            color: #fff;
            font-size: 1rem;
            margin-bottom: 20px;
            transition: border 0.3s;
        }
        form input:focus, form textarea:focus {
            outline: none;
            border-color: #6c8cff;
        }
        form button {
            background: linear-gradient(90deg, #ff6600, #ff9900);
            color: white;
            border: none;
            padding: 16px 35px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 102, 0, 0.4);
        }
        footer {
            background: #0a0a18;
            border-top: 2px solid #2a2a5a;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            color: #ffcc00;
            margin-bottom: 20px;
        }
        .footer-links a {
            display: block;
            margin-bottom: 10px;
            color: #a0a0cc;
        }
        friend-link {
            display: inline-block;
            background: rgba(108, 140, 255, 0.1);
            padding: 8px 16px;
            border-radius: 6px;
            margin: 5px 10px 5px 0;
            border: 1px solid #3a3a6a;
            transition: all 0.3s ease;
        }
        friend-link:hover {
            background: rgba(255, 204, 0, 0.15);
            border-color: #ffcc00;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2a2a5a;
            color: #8888cc;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2rem; }
            article { padding: 30px; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .header-container { padding: 12px 0; }
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            article { padding: 25px 20px; }
            .footer-content { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            .search-box input { padding: 14px 20px; font-size: 1rem; }
            form button { width: 100%; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article {
            animation: fadeIn 0.8s ease-out;
        }
