        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f172a;
            color: #cbd5e1;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #38bdf8;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
            text-decoration: none;
        }
        .site-header {
            background-color: #1e293b;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #60a5fa, #a78bfa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            text-decoration: none;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.1rem;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: #60a5fa;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #60a5fa;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1e293b;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1.5rem;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 12px 0;
            border-bottom: 1px solid #334155;
            font-weight: 600;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.95rem;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .hero {
            text-align: center;
            padding: 4rem 0;
            background: radial-gradient(circle at center, #1e293b, #0f172a);
        }
        h1 {
            font-size: 3.5rem;
            background: linear-gradient(90deg, #38bdf8, #a78bfa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
        }
        .tagline {
            font-size: 1.4rem;
            color: #94a3b8;
            margin-bottom: 2rem;
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 3rem 0;
        }
        @media (max-width: 992px) {
            .content-area {
                grid-template-columns: 1fr;
            }
        }
        main article {
            background-color: #1e293b;
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        h2, h3, h4 {
            color: #e2e8f0;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid #3b82f6;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #93c5fd;
        }
        h4 {
            font-size: 1.4rem;
            color: #bfdbfe;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(59, 130, 246, 0.15);
            border-left: 4px solid #3b82f6;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .quote {
            font-style: italic;
            font-size: 1.2rem;
            color: #a5b4cb;
            text-align: center;
            padding: 2rem;
            border-top: 2px solid #475569;
            border-bottom: 2px solid #475569;
            margin: 2.5rem 0;
        }
        .image-container {
            margin: 3rem 0;
            text-align: center;
        }
        .image-container img {
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            transition: transform 0.5s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-size: 0.95rem;
            color: #94a3b8;
            margin-top: 10px;
            font-style: italic;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.7rem;
        }
        strong {
            color: #e2e8f0;
            font-weight: 700;
        }
        em {
            color: #a5b4cb;
        }
        aside {
            background-color: #1e293b;
            padding: 2rem;
            border-radius: 16px;
            height: fit-content;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid #334155;
        }
        .search-box {
            display: flex;
            margin-bottom: 2rem;
        }
        .search-box input {
            flex-grow: 1;
            padding: 14px;
            border-radius: 50px 0 0 50px;
            border: 2px solid #475569;
            background-color: #0f172a;
            color: white;
            font-size: 1rem;
        }
        .search-box button {
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 1.2rem;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #fbbf24;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars span {
            margin: 0 3px;
            transition: transform 0.2s;
        }
        .stars span:hover {
            transform: scale(1.2);
        }
        .update-time {
            font-size: 0.9rem;
            color: #94a3b8;
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #334155;
        }
        .comments-section {
            margin-top: 4rem;
            background-color: #1e293b;
            padding: 2.5rem;
            border-radius: 16px;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border-radius: 10px;
            border: 2px solid #475569;
            background-color: #0f172a;
            color: white;
            font-size: 1rem;
            margin-bottom: 1rem;
            min-height: 150px;
            resize: vertical;
        }
        .comment-form input[type="text"],
        .comment-form input[type="email"] {
            width: 48%;
            padding: 14px;
            border-radius: 10px;
            border: 2px solid #475569;
            background-color: #0f172a;
            color: white;
            font-size: 1rem;
            margin-bottom: 1rem;
        }
        @media (max-width: 768px) {
            .comment-form input[type="text"],
            .comment-form input[type="email"] {
                width: 100%;
            }
        }
        .form-row {
            display: flex;
            justify-content: space-between;
            gap: 4%;
        }
        footer {
            background-color: #1e293b;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid #334155;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #e2e8f0;
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
        }
        friend-link {
            display: block;
            background-color: #0f172a;
            padding: 1rem;
            margin-bottom: 10px;
            border-radius: 8px;
            transition: background-color 0.3s;
            font-weight: 600;
        }
        friend-link:hover {
            background-color: #1d4ed8;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #475569;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: #334155;
            border-radius: 50%;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        .social-links a:hover {
            background-color: #3b82f6;
            transform: translateY(-5px);
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                padding: 0 15px;
            }
            main article, aside, .comments-section {
                padding: 1.5rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
        }
