        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0a2e5c 0%, #1a1a2e 100%);
            color: #f0f0f0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #00a8ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 46, 92, 0.95);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 3px solid #ffcc00;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #ffcc00, #00a8ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo a:hover {
            text-shadow: 0 0 15px rgba(255,204,0,0.7);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links li a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 10px 15px;
            border-radius: 5px;
            background: rgba(255,255,255,0.1);
        }
        .nav-links li a:hover {
            background: #00a8ff;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,168,255,0.4);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffcc00;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(255,255,255,0.05);
            margin-bottom: 30px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: #ffcc00;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(30, 30, 60, 0.8);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid #444;
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        }
        h1 {
            font-size: 3rem;
            margin-bottom: 25px;
            color: #ffcc00;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
            line-height: 1.2;
        }
        h2 {
            font-size: 2.2rem;
            margin: 40px 0 20px;
            color: #00a8ff;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffcc00;
        }
        h3 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: #ffcc00;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255,204,0,0.15);
            border-left: 5px solid #ffcc00;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
            font-style: italic;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 8px;
        }
        strong {
            color: #ffcc00;
            font-weight: 700;
        }
        .image-caption {
            text-align: center;
            font-size: 0.95rem;
            color: #aaa;
            margin-top: 10px;
            font-style: italic;
        }
        .internal-link {
            display: inline-block;
            margin: 10px 5px;
            padding: 8px 15px;
            background: rgba(0,168,255,0.2);
            border-radius: 20px;
            border: 1px solid #00a8ff;
            font-weight: 600;
        }
        .internal-link:hover {
            background: #00a8ff;
            color: #fff;
        }
        aside {
            background: rgba(30, 30, 60, 0.8);
            padding: 25px;
            border-radius: 20px;
            border: 1px solid #444;
            align-self: start;
            position: sticky;
            top: 150px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #00a8ff;
        }
        .search-form {
            display: flex;
            margin-bottom: 20px;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 2px solid #00a8ff;
            border-radius: 25px 0 0 25px;
            background: rgba(255,255,255,0.1);
            color: #fff;
            font-size: 1rem;
        }
        .search-form button {
            background: #00a8ff;
            color: white;
            border: none;
            border-radius: 0 25px 25px 0;
            padding: 12px 25px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #ffcc00;
            color: #000;
        }
        .rating-form label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating-stars input:checked ~ label,
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: #ffcc00;
        }
        .rating-form textarea,
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border-radius: 10px;
            background: rgba(255,255,255,0.1);
            border: 1px solid #555;
            color: #fff;
            margin-bottom: 15px;
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
        }
        .rating-form button,
        .comment-form button {
            background: linear-gradient(to right, #00a8ff, #0097e6);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
            width: 100%;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,168,255,0.4);
        }
        footer {
            background: #0a1a2e;
            padding: 50px 0 20px;
            margin-top: 50px;
            border-top: 3px solid #ffcc00;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        @media (max-width: 768px) {
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: rgba(255,204,0,0.2);
            transform: scale(1.05);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 100px;
                left: 0;
                width: 100%;
                background: rgba(10, 46, 92, 0.98);
                flex-direction: column;
                align-items: center;
                padding: 30px 0;
                gap: 20px;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.5s ease;
                z-index: 999;
            }
            #nav-toggle:checked ~ .nav-links {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            article {
                padding: 25px;
            }
        }
