        * {
            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 {
            color: #4da6ff;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #ffcc00;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a3a5f, #0a1a2a);
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: #ffcc00;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }
        .logo a:hover {
            color: #ff9900;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 25px;
        }
        nav ul li a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        nav ul li a:hover {
            background-color: #4da6ff;
            color: #0a1a2a;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffcc00;
        }
        .breadcrumb {
            padding: 10px 0;
            background-color: #152d44;
            margin-top: 10px;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb ul li {
            margin-right: 10px;
            color: #a0a0a0;
        }
        .breadcrumb ul li a {
            color: #4da6ff;
        }
        .breadcrumb ul li i {
            margin: 0 5px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 30px;
            margin: 30px 0;
        }
        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: #152d44;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
        }
        h1 {
            font-size: 2.8rem;
            color: #ffcc00;
            margin-bottom: 20px;
            text-align: center;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #4da6ff;
            margin: 25px 0 15px;
            border-left: 5px solid #ffcc00;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.5rem;
            color: #99d6ff;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #1e3d5f;
            padding: 15px;
            border-left: 4px solid #ffcc00;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 5px;
        }
        .base-image {
            text-align: center;
            margin: 25px 0;
        }
        .base-image img {
            border: 3px solid #4da6ff;
            box-shadow: 0 8px 20px rgba(0, 100, 255, 0.3);
        }
        aside {
            background-color: #152d44;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            color: #ffcc00;
            border-bottom: 2px solid #4da6ff;
            padding-bottom: 8px;
            margin-bottom: 15px;
        }
        .search-form input[type="text"] {
            width: 100%;
            padding: 12px;
            border: 2px solid #4da6ff;
            border-radius: 6px;
            background-color: #0a1a2a;
            color: #e0e0e0;
            font-size: 1rem;
        }
        .search-form button {
            width: 100%;
            padding: 12px;
            margin-top: 10px;
            background: linear-gradient(to right, #4da6ff, #0066cc);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(to right, #0066cc, #004d99);
        }
        .comment-form textarea,
        .rating-form select {
            width: 100%;
            padding: 12px;
            border: 2px solid #4da6ff;
            border-radius: 6px;
            background-color: #0a1a2a;
            color: #e0e0e0;
            font-size: 1rem;
            margin-bottom: 10px;
        }
        .comment-form button,
        .rating-form button {
            padding: 12px 20px;
            background: linear-gradient(to right, #ffcc00, #ff9900);
            color: #0a1a2a;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: linear-gradient(to right, #ff9900, #cc6600);
        }
        .stars {
            display: flex;
            gap: 5px;
            margin-bottom: 10px;
        }
        .stars i {
            color: #666;
            cursor: pointer;
            font-size: 1.5rem;
            transition: color 0.3s;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffcc00;
        }
        .internal-links {
            background-color: #1a3a5f;
            padding: 30px 0;
            margin-top: 40px;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
        }
        @media (max-width: 992px) {
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 576px) {
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background-color: #152d44;
            padding: 12px;
            border-radius: 6px;
            text-align: center;
            transition: transform 0.3s, background-color 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #4da6ff;
        }
        .web-link a {
            color: #e0e0e0;
            font-weight: 600;
        }
        .web-link:hover a {
            color: #0a1a2a;
        }
        footer {
            background-color: #0a1a2a;
            padding: 25px 0;
            text-align: center;
            border-top: 2px solid #4da6ff;
        }
        .copyright {
            color: #a0a0a0;
            font-size: 0.9rem;
            margin-top: 10px;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 15px;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
                margin-left: 0;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        .web-link, .search-form button, .comment-form button, .rating-form button, nav ul li a {
            transition: all 0.3s ease;
        }
        .schema-data {
            display: none;
        }
