        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a1a2a;
            color: #e0e0e0;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #4dabf7;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffd700;
        }
        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, #001f3f 0%, #003366 100%);
            padding: 15px 0;
            border-bottom: 3px solid #ffd700;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: bold;
            color: #ffd700;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #4dabf7;
        }
        .logo a {
            color: inherit;
        }
        #menu-toggle {
            display: none;
        }
        .menu-icon {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffd700;
            padding: 10px;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav a {
            color: #e0e0e0;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        nav a:hover {
            background-color: rgba(255, 215, 0, 0.2);
            color: #ffd700;
        }
        .breadcrumb {
            background-color: #0d2b4e;
            padding: 12px 20px;
            margin-top: 5px;
            border-radius: 0 0 8px 8px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #a0c8ff;
        }
        .breadcrumb span {
            color: #cccccc;
        }
        main {
            padding: 30px 0;
            background-color: #0f2438;
            min-height: 100vh;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px;
            background: linear-gradient(to right, #002855, #004080);
            border-radius: 12px;
            border-left: 6px solid #ffd700;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffd700;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .article-meta {
            color: #b0b0b0;
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .content-section {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-bottom: 40px;
        }
        @media (max-width: 992px) {
            .content-section {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: #152a40;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.4);
        }
        h2 {
            color: #4dabf7;
            margin-top: 30px;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #ffd700;
            font-size: 1.8rem;
        }
        h3 {
            color: #a0c8ff;
            margin-top: 25px;
            margin-bottom: 10px;
            font-size: 1.4rem;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
            color: #d0d0d0;
        }
        .highlight {
            background-color: rgba(255, 215, 0, 0.1);
            padding: 15px;
            border-left: 4px solid #ffd700;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .bold {
            font-weight: bold;
            color: #ffd700;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .widget {
            background-color: #152a40;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        }
        .widget h3 {
            color: #ffd700;
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 1px solid #4dabf7;
            border-radius: 6px;
            background-color: #0a1a2a;
            color: #e0e0e0;
            font-size: 1rem;
        }
        button {
            padding: 12px 20px;
            background: linear-gradient(to right, #ffd700, #ffaa00);
            color: #001f3f;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
        }
        .stars {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin: 10px 0;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 1.8rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label {
            color: #ffd700;
        }
        .featured-image {
            margin: 30px 0;
            text-align: center;
        }
        .featured-image figcaption {
            margin-top: 10px;
            font-style: italic;
            color: #b0b0b0;
            font-size: 0.9rem;
        }
        footer {
            background-color: #001f3f;
            padding: 40px 0 20px;
            border-top: 3px solid #ffd700;
        }
        .internal-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        .web-link {
            background-color: #0d2b4e;
            padding: 15px;
            border-radius: 8px;
            transition: background-color 0.3s ease;
        }
        .web-link:hover {
            background-color: #1a3a5e;
        }
        .web-link a {
            color: #a0c8ff;
            display: block;
            font-weight: 500;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #004080;
            color: #b0b0b0;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .menu-icon {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #002855;
                margin-top: 15px;
                padding: 15px;
                border-radius: 8px;
            }
            #menu-toggle:checked ~ nav ul {
                display: flex;
            }
            h1 {
                font-size: 2rem;
            }
            .article-content {
                padding: 20px;
            }
            .widget {
                padding: 20px;
            }
        }
