        * {
            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;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #8bb9fe;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffde82;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #1a5fb4, #0d3b8a);
            color: white;
            padding: 12px 28px;
            border-radius: 6px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        .btn:hover {
            background: linear-gradient(135deg, #0d3b8a, #1a5fb4);
            transform: translateY(-2px);
            text-decoration: none;
        }
        .section-padding {
            padding: 60px 0;
        }
        .text-highlight {
            color: #ffde82;
            font-weight: 700;
        }
        .site-header {
            background-color: rgba(10, 10, 18, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #1e2230;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(to right, #8bb9fe, #ffde82);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 0.5px;
        }
        .my-logo:hover {
            text-decoration: none;
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #8bb9fe;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #0f111f;
            padding: 20px;
            border-top: 1px solid #1e2230;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 12px 0;
            border-bottom: 1px solid #1e2230;
            font-weight: 600;
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: #0f111f;
            font-size: 0.9rem;
            border-bottom: 1px solid #1e2230;
        }
        .breadcrumb a {
            color: #a0a8cc;
        }
        .breadcrumb span {
            color: #8bb9fe;
            margin: 0 8px;
        }
        .hero {
            background: radial-gradient(circle at top right, #1a1a2e, #0a0a12);
            padding: 80px 20px;
            text-align: center;
            border-bottom: 2px solid #1a5fb4;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, #8bb9fe, #ffde82);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #c0c8ff;
        }
        .meta-info {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
            font-size: 0.9rem;
            color: #a0a8cc;
        }
        .meta-info i {
            margin-right: 8px;
            color: #8bb9fe;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 20px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .main-content {
            background-color: rgba(15, 17, 31, 0.7);
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .sidebar {
            background-color: rgba(15, 17, 31, 0.7);
            border-radius: 12px;
            padding: 30px;
            align-self: start;
            position: sticky;
            top: 140px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        h1, h2, h3, h4 {
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
            color: #e0e0ff;
        }
        h1 {
            font-size: 2.8rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #8bb9fe;
            padding-bottom: 10px;
            border-bottom: 2px solid #1e2230;
        }
        h3 {
            font-size: 1.8rem;
            color: #a0c8ff;
        }
        h4 {
            font-size: 1.4rem;
            color: #c0d8ff;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #d0d8ff;
        }
        ul, ol {
            margin-left: 30px;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.8rem;
            color: #d0d8ff;
        }
        blockquote {
            border-left: 4px solid #1a5fb4;
            padding-left: 20px;
            margin: 30px 0;
            font-style: italic;
            color: #b0c8ff;
            background-color: rgba(26, 95, 180, 0.1);
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            border: 1px solid #1e2230;
        }
        .image-caption {
            font-size: 0.9rem;
            color: #a0a8cc;
            margin-top: 10px;
            font-style: italic;
        }
        .note-box {
            background-color: rgba(255, 222, 130, 0.1);
            border-left: 4px solid #ffde82;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .note-box p {
            color: #ffefc0;
            margin-bottom: 0;
        }
        .search-box {
            margin-bottom: 40px;
        }
        .search-box h3 {
            margin-bottom: 15px;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            background-color: #1a1a2e;
            border: 1px solid #1e2230;
            border-radius: 6px 0 0 6px;
            color: #e0e0ff;
        }
        .search-form button {
            background-color: #1a5fb4;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #0d3b8a;
        }
        .comment-section, .rating-section {
            background-color: rgba(26, 26, 46, 0.5);
            padding: 25px;
            border-radius: 8px;
            margin-top: 40px;
            border: 1px solid #1e2230;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }
        .comment-form input,
        .comment-form textarea,
        .rating-form select {
            padding: 12px 15px;
            background-color: #1a1a2e;
            border: 1px solid #1e2230;
            border-radius: 6px;
            color: #e0e0ff;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #444;
            margin: 10px 0;
        }
        .star-rating .star {
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #ffde82;
        }
        .related-links h3 {
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .related-links ul {
            list-style: none;
            margin-left: 0;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #1e2230;
        }
        .related-links a {
            display: block;
            padding: 8px 0;
            color: #c0c8ff;
        }
        .related-links a:hover {
            color: #ffde82;
            padding-left: 5px;
        }
        .site-footer {
            background-color: #0f111f;
            border-top: 2px solid #1a5fb4;
            padding: 60px 20px 30px;
            margin-top: 60px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(to right, #8bb9fe, #ffde82);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .footer-links h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: #8bb9fe;
        }
        .footer-links ul {
            list-style: none;
            margin-left: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        friend-link {
            display: block;
            margin: 20px 0;
            padding: 15px;
            background-color: rgba(26, 95, 180, 0.1);
            border-radius: 6px;
            border-left: 4px solid #1a5fb4;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #1e2230;
            color: #a0a8cc;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .main-content {
                padding: 25px;
            }
            .content-wrapper {
                padding: 20px 15px;
            }
            .meta-info {
                flex-direction: column;
                gap: 15px;
            }
        }
