        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a0a2a;
            color: #e0e0ff;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            color: #00b4ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
        }
        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(135deg, #001122, #003366);
            padding: 20px 0;
            border-bottom: 3px solid #00b4ff;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, #00b4ff, #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo a:hover {
            transform: scale(1.05);
        }
        .search-box {
            flex: 1;
            max-width: 400px;
            margin: 0 20px;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #00b4ff;
            border-radius: 25px 0 0 25px;
            background: #001a33;
            color: #fff;
            font-size: 1rem;
        }
        .search-box button {
            padding: 12px 20px;
            border: 2px solid #00b4ff;
            border-left: none;
            border-radius: 0 25px 25px 0;
            background: #0055aa;
            color: #fff;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-box button:hover {
            background: #00b4ff;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #00b4ff;
        }
        nav {
            margin-top: 15px;
            width: 100%;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            background: #002244;
            border-radius: 10px;
            padding: 10px;
            flex-wrap: wrap;
        }
        .nav-menu li {
            margin: 5px 15px;
        }
        .nav-menu a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-menu a:hover {
            background: #00b4ff;
            color: #000;
        }
        .breadcrumb {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #a0a0ff;
        }
        .breadcrumb a {
            color: #a0a0ff;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        main {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 30px;
            padding: 30px 0;
        }
        @media (max-width: 768px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(0, 20, 40, 0.8);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 100, 255, 0.2);
        }
        .article-content h1 {
            font-size: 2.8rem;
            color: #00b4ff;
            margin-bottom: 20px;
            border-left: 5px solid #ffcc00;
            padding-left: 15px;
        }
        .article-content h2 {
            font-size: 2rem;
            color: #ffcc00;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #00b4ff;
        }
        .article-content h3 {
            font-size: 1.5rem;
            color: #00ffaa;
            margin: 20px 0 10px;
        }
        .article-content p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .article-content .highlight {
            background: linear-gradient(90deg, #001a33, #003366);
            padding: 20px;
            border-left: 5px solid #ffcc00;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .article-content emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .article-content strong {
            color: #ffcc00;
            font-weight: 700;
        }
        .article-content img {
            margin: 25px auto;
            border: 3px solid #00b4ff;
            box-shadow: 0 5px 15px rgba(0, 180, 255, 0.5);
        }
        .featured-image {
            width: 80%;
            margin: 30px auto;
        }
        sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .widget {
            background: rgba(0, 20, 40, 0.8);
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 100, 255, 0.2);
        }
        .widget h3 {
            color: #ffcc00;
            margin-bottom: 20px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .comment-form textarea, .rating-form select, .comment-form input {
            padding: 12px;
            border: 2px solid #00b4ff;
            border-radius: 8px;
            background: #001a33;
            color: #fff;
            font-size: 1rem;
            width: 100%;
        }
        .comment-form button, .rating-form button {
            padding: 12px;
            border: none;
            border-radius: 8px;
            background: linear-gradient(90deg, #0055aa, #00b4ff);
            color: #fff;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .comment-form button:hover, .rating-form button:hover {
            transform: scale(1.05);
        }
        .stars {
            display: flex;
            gap: 5px;
            margin-bottom: 15px;
        }
        .stars i {
            color: #555;
            cursor: pointer;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }
        .stars i:hover, .stars i.active {
            color: #ffcc00;
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }
        .related-links li:before {
            content: '▶';
            color: #00b4ff;
            position: absolute;
            left: 0;
        }
        footer {
            background: linear-gradient(135deg, #001122, #000);
            padding: 40px 0 20px;
            border-top: 3px solid #00b4ff;
            margin-top: 40px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            color: #ffcc00;
            font-size: 1.3rem;
            margin-bottom: 20px;
        }
        .friend-links {
            list-style: none;
        }
        .friend-links li {
            margin-bottom: 10px;
        }
        .friend-links a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px;
            border-radius: 5px;
            background: rgba(0, 50, 100, 0.3);
        }
        .friend-links a:hover {
            background: #00b4ff;
            color: #000;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #003366;
            color: #a0a0ff;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .header-top {
                flex-direction: column;
                gap: 20px;
            }
            .search-box {
                max-width: 100%;
                order: 3;
                margin: 20px 0 0;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            nav {
                display: none;
                margin-top: 20px;
            }
            nav.active {
                display: block;
            }
            .nav-menu {
                flex-direction: column;
                align-items: center;
            }
            .nav-menu li {
                width: 100%;
                text-align: center;
            }
            .nav-menu a {
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .article-content h1 {
                font-size: 2rem;
            }
            .article-content h2 {
                font-size: 1.6rem;
            }
            .widget {
                padding: 20px;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-content, .widget {
            animation: fadeIn 0.8s ease-out;
        }
        .logo a, .nav-menu a, .friend-links a, button {
            transition: all 0.3s ease;
        }
        img:hover {
            transform: scale(1.02);
            transition: transform 0.5s ease;
        }
