        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0a1a2a 0%, #1a3a5a 100%);
            color: #e0e0e0;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4da6ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #80c1ff;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 26, 42, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #4da6ff;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ffd700, #ffa500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .desktop-nav a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background: rgba(77, 166, 255, 0.1);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ffd700;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background: rgba(15, 35, 55, 0.98);
            padding: 15px;
            border-top: 1px solid #2a4a6a;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 12px;
        }
        .mobile-nav a {
            display: block;
            padding: 10px;
            border-radius: 5px;
        }
        .mobile-nav a:hover {
            background: rgba(77, 166, 255, 0.1);
        }
        .breadcrumb {
            padding: 10px 0;
            font-size: 0.9rem;
            color: #a0a0a0;
            border-bottom: 1px solid #2a4a6a;
        }
        .breadcrumb a {
            color: #a0a0a0;
        }
        .breadcrumb a:hover {
            color: #4da6ff;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(20, 40, 60, 0.7);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        article h1 {
            font-size: 2.8rem;
            color: #ffd700;
            margin-bottom: 20px;
            border-bottom: 3px solid #4da6ff;
            padding-bottom: 10px;
        }
        article h2 {
            font-size: 2rem;
            color: #4da6ff;
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 5px solid #ffa500;
        }
        article h3 {
            font-size: 1.5rem;
            color: #80c1ff;
            margin: 25px 0 10px;
        }
        article p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        article emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .highlight {
            background: rgba(255, 215, 0, 0.1);
            border-left: 4px solid #ffd700;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            float: right;
            margin: 15px 0 15px 25px;
            max-width: 50%;
            border: 3px solid #4da6ff;
        }
        @media (max-width: 768px) {
            .featured-image {
                float: none;
                max-width: 100%;
                margin: 15px 0;
            }
        }
        aside {
            background: rgba(20, 40, 60, 0.7);
            border-radius: 12px;
            padding: 25px;
            height: fit-content;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        .sidebar-section {
            margin-bottom: 30px;
        }
        .sidebar-section h3 {
            color: #ffa500;
            margin-bottom: 15px;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #4da6ff;
            border-radius: 8px 0 0 8px;
            background: rgba(10, 25, 40, 0.8);
            color: #fff;
            font-size: 1rem;
        }
        .search-box button {
            background: #4da6ff;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #2d8ae0;
        }
        .rating-widget, .comment-widget {
            background: rgba(30, 50, 70, 0.6);
            padding: 20px;
            border-radius: 10px;
        }
        .stars {
            display: flex;
            gap: 8px;
            margin: 15px 0;
        }
        .star {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
        }
        .comment-widget textarea {
            width: 100%;
            height: 120px;
            padding: 12px;
            border: 2px solid #4da6ff;
            border-radius: 8px;
            background: rgba(10, 25, 40, 0.8);
            color: #fff;
            font-size: 1rem;
            resize: vertical;
            margin-bottom: 15px;
        }
        .comment-widget button {
            background: linear-gradient(90deg, #ffa500, #ff8c00);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            width: 100%;
            transition: opacity 0.3s;
        }
        .comment-widget button:hover {
            opacity: 0.9;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0 30px;
            padding: 25px;
            background: rgba(15, 35, 55, 0.8);
            border-radius: 12px;
        }
        .web-link {
            background: rgba(30, 60, 90, 0.6);
            padding: 15px;
            border-radius: 8px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(77, 166, 255, 0.3);
        }
        .web-link a {
            font-size: 1.05rem;
            display: block;
            color: #a0d2ff;
        }
        footer {
            background: rgba(5, 15, 25, 0.95);
            text-align: center;
            padding: 25px 0;
            border-top: 2px solid #4da6ff;
            margin-top: 30px;
        }
        .copyright {
            color: #888;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .header-top {
                padding: 12px 0;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.7rem;
            }
            .content-wrapper {
                gap: 20px;
            }
            article, aside {
                padding: 20px;
            }
        }
