        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #f0f0f0;
            background-color: #0a0a1a;
            background-image: radial-gradient(circle at 20% 30%, #1a1a3a 0%, #0a0a1a 100%);
        }
        a {
            color: #00b4d8;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #90e0ef;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #11112b;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: bold;
            color: #00b4d8;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a:hover {
            color: #90e0ef;
            text-decoration: none;
        }
        .breadcrumb {
            margin-top: 10px;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #00b4d8;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            font-size: 1.1rem;
            padding: 5px 10px;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background-color: #1a1a3a;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #00b4d8;
        }
        .search-form {
            margin-left: 20px;
            display: flex;
        }
        .search-form input {
            padding: 8px 12px;
            border: 1px solid #333;
            border-radius: 5px 0 0 5px;
            background-color: #1a1a3a;
            color: #f0f0f0;
        }
        .search-form button {
            padding: 8px 15px;
            background-color: #00b4d8;
            border: none;
            border-radius: 0 5px 5px 0;
            color: white;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #0077b6;
        }
        main {
            padding: 40px 0;
        }
        article {
            background-color: rgba(17, 17, 43, 0.8);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
        }
        h1, h2, h3 {
            color: #00b4d8;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 30px;
            text-shadow: 0 2px 4px rgba(0, 180, 216, 0.5);
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 40px;
            border-left: 5px solid #0077b6;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 30px;
            color: #90e0ef;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #1a1a3a;
            padding: 20px;
            border-left: 4px solid #00b4d8;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
            border: 3px solid #00b4d8;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .comment-section, .rating-section {
            background-color: rgba(26, 26, 58, 0.9);
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
        }
        .comment-section h2, .rating-section h2 {
            border-left: none;
            padding-left: 0;
        }
        form label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }
        form input, form textarea, form select {
            width: 100%;
            padding: 12px;
            margin-bottom: 20px;
            border: 1px solid #333;
            border-radius: 5px;
            background-color: #1a1a3a;
            color: #f0f0f0;
            font-size: 1rem;
        }
        form button {
            padding: 12px 25px;
            background-color: #00b4d8;
            border: none;
            border-radius: 5px;
            color: white;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        form button:hover {
            background-color: #0077b6;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label {
            color: #ffd700;
        }
        .internal-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin: 40px 0;
        }
        .web-link {
            background-color: #11112b;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s, background-color 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #1a1a3a;
        }
        .web-link a {
            font-weight: bold;
        }
        footer {
            background-color: #0a0a1a;
            padding: 30px 0;
            text-align: center;
            border-top: 2px solid #00b4d8;
            margin-top: 40px;
        }
        .copyright {
            color: #aaa;
            font-size: 0.9rem;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #11112b;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
                text-align: center;
            }
            .hamburger {
                display: block;
            }
            .search-form {
                margin-left: 0;
                margin-top: 15px;
                width: 100%;
            }
            .search-form input {
                flex-grow: 1;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .internal-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .internal-links {
                grid-template-columns: 1fr;
            }
        }
