        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #e2e8f0;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #38bdf8;
            transform: translateY(-1px);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #334155;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, #fbbf24, #f472b6, #60a5fa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -1px;
        }
        .logo a:hover {
            filter: brightness(1.2);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 8px;
        }
        .nav-links a:hover {
            background: rgba(96, 165, 250, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #cbd5e1;
        }
        .search-box {
            margin-left: 30px;
            display: flex;
        }
        .search-box input {
            padding: 10px 15px;
            border: 1px solid #475569;
            border-radius: 8px 0 0 8px;
            background: #1e293b;
            color: #e2e8f0;
            outline: none;
            width: 250px;
        }
        .search-box button {
            background: #3b82f6;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #2563eb;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #94a3b8;
            border-bottom: 1px solid #334155;
        }
        .breadcrumb a {
            color: #cbd5e1;
        }
        main {
            flex: 1;
            padding: 40px 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 50px;
            padding-bottom: 30px;
            border-bottom: 2px solid #475569;
        }
        h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #60a5fa, #a78bfa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .article-meta {
            color: #94a3b8;
            font-size: 1rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .article-meta i {
            margin-right: 8px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 50px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            font-size: 1.15rem;
        }
        h2 {
            font-size: 2.5rem;
            margin: 50px 0 25px;
            color: #fbbf24;
            padding-bottom: 10px;
            border-bottom: 2px dashed #475569;
        }
        h3 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: #a78bfa;
        }
        h4 {
            font-size: 1.5rem;
            margin: 30px 0 15px;
            color: #60a5fa;
        }
        p {
            margin-bottom: 25px;
            text-align: justify;
        }
        .highlight {
            background: rgba(96, 165, 250, 0.1);
            border-left: 5px solid #3b82f6;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
        }
        .img-container {
            margin: 40px auto;
            text-align: center;
        }
        .img-caption {
            margin-top: 10px;
            font-size: 0.95rem;
            color: #94a3b8;
            font-style: italic;
        }
        .related-links {
            background: rgba(30, 41, 59, 0.7);
            padding: 25px;
            border-radius: 12px;
            margin: 40px 0;
        }
        .related-links h3 {
            margin-top: 0;
        }
        .related-links ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        .related-links li a {
            display: block;
            padding: 12px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            transition: all 0.3s;
        }
        .related-links li a:hover {
            background: rgba(96, 165, 250, 0.2);
            padding-left: 20px;
        }
        aside {
            background: rgba(30, 41, 59, 0.7);
            border-radius: 16px;
            padding: 25px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 40px;
        }
        .widget-title {
            font-size: 1.5rem;
            color: #fbbf24;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #475569;
        }
        .rating-form label,
        .comment-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            margin-bottom: 20px;
            cursor: pointer;
        }
        .rating-stars .star {
            color: #475569;
            transition: color 0.3s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #fbbf24;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #475569;
            background: #1e293b;
            color: #e2e8f0;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #60a5fa;
        }
        .btn {
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-block;
            text-align: center;
        }
        .btn:hover {
            background: linear-gradient(90deg, #2563eb, #7c3aed);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(59, 130, 246, 0.4);
        }
        footer {
            background: rgba(15, 23, 42, 0.98);
            border-top: 2px solid #334155;
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #fbbf24, #f472b6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
        }
        .friend-links {
            background: rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: 12px;
        }
        friend-link {
            display: inline-block;
            margin: 8px 15px 8px 0;
            padding: 8px 16px;
            background: rgba(96, 165, 250, 0.15);
            border-radius: 20px;
            font-size: 0.95rem;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.7rem; }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(15, 23, 42, 0.98);
                padding: 20px;
                border-top: 1px solid #334155;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .search-box {
                margin-left: 0;
                margin-top: 20px;
                width: 100%;
            }
            .search-box input {
                width: 100%;
            }
            .header-content {
                flex-wrap: wrap;
            }
        }
