        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0a12;
            color: #e0e0ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #6cb2ff;
            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: linear-gradient(to bottom, #121225, #070711);
            border-bottom: 2px solid #222244;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 10, 30, 0.7);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ffcc00, #6cb2ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px rgba(108, 178, 255, 0.3);
            letter-spacing: 1px;
        }
        .my-logo a {
            background: none;
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .desktop-nav a:hover {
            background-color: rgba(108, 178, 255, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #6cb2ff;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #121225;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid #222244;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 1rem;
            border-bottom: 1px solid #222244;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #0f0f1a;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #aaaacc;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        .search-section {
            background: linear-gradient(135deg, #15152a, #0a0a15);
            padding: 2rem 0;
            text-align: center;
            border-bottom: 1px solid #222244;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 1rem;
            border-radius: 50px;
            border: 2px solid #333355;
            background-color: #1a1a2e;
            color: #e0e0ff;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-input:focus {
            border-color: #6cb2ff;
        }
        .search-btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            border: none;
            background: linear-gradient(90deg, #6cb2ff, #3d8bff);
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .search-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 15px #3d8bff;
        }
        main {
            padding: 2rem 0;
            background-color: #0a0a12;
        }
        article {
            background: rgba(16, 16, 32, 0.8);
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            border: 1px solid #222244;
            box-shadow: 0 10px 30px rgba(0, 5, 20, 0.6);
        }
        h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: #ffcc00;
            text-align: center;
            line-height: 1.2;
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
        }
        h2 {
            font-size: 2.2rem;
            margin: 2.5rem 0 1.2rem;
            color: #6cb2ff;
            border-left: 5px solid #6cb2ff;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.7rem;
            margin: 2rem 0 1rem;
            color: #a3d4ff;
        }
        h4 {
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
            color: #c2e0ff;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.1);
            border-left: 4px solid #ffcc00;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            margin: 2.5rem auto;
            border: 3px solid #333366;
            box-shadow: 0 0 25px rgba(108, 178, 255, 0.2);
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .link-card {
            background: #1a1a2e;
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid #333355;
            transition: transform 0.3s, border-color 0.3s;
        }
        .link-card:hover {
            transform: translateY(-5px);
            border-color: #6cb2ff;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .comment-box, .rating-box {
            background: #15152a;
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid #333355;
        }
        .comment-box h3, .rating-box h3 {
            margin-top: 0;
        }
        textarea, select, .star-rating {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            border-radius: 8px;
            border: 1px solid #444466;
            background-color: #1a1a2e;
            color: #e0e0ff;
            font-size: 1rem;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            background: none;
            border: none;
            padding: 0;
        }
        .star {
            font-size: 2rem;
            color: #444466;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        .submit-btn {
            display: block;
            width: 100%;
            padding: 1rem;
            border-radius: 8px;
            border: none;
            background: linear-gradient(90deg, #00cc66, #00aa55);
            color: white;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .submit-btn:hover {
            transform: scale(1.02);
        }
        footer {
            background: linear-gradient(to top, #070711, #121225);
            border-top: 2px solid #222244;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: #ffcc00;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        friend-link {
            display: inline-block;
            background: rgba(108, 178, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            margin: 0.3rem;
            border: 1px solid #333355;
        }
        friend-link a {
            color: #a3d4ff;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #222244;
            color: #8888aa;
            font-size: 0.9rem;
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: #8888aa;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #333355;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 3px;
        }
        .bold {
            font-weight: 800;
            color: #ffcc00;
        }
        .text-center {
            text-align: center;
        }
        .mb-3 {
            margin-bottom: 3rem;
        }
