        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #0f1c2e 0%, #1a2b3c 100%);
            color: #e0e0e0;
            padding: 0;
            margin: 0;
            overflow-x: hidden;
        }
        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: 10px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(15, 28, 46, 0.95);
            padding: 20px 0;
            border-bottom: 3px solid #4da6ff;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: #4da6ff;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px #4da6ff;
        }
        .logo a {
            color: inherit;
            text-decoration: none;
        }
        .logo a:hover {
            color: #80c1ff;
        }
        .nav-container {
            display: flex;
            align-items: center;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav ul li a {
            font-size: 1.1rem;
            font-weight: 500;
            padding: 10px 15px;
            border-radius: 5px;
            transition: background 0.3s, color 0.3s;
        }
        nav ul li a:hover {
            background: #4da6ff;
            color: #0f1c2e;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4da6ff;
        }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(26, 43, 60, 0.8);
            margin-bottom: 30px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
            font-size: 0.9rem;
        }
        .breadcrumb ol li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
            color: #4da6ff;
        }
        main {
            padding: 40px 0;
            background: rgba(26, 43, 60, 0.9);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
            margin: 20px auto;
        }
        article {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1, h2, h3 {
            color: #4da6ff;
            margin: 30px 0 20px;
            line-height: 1.3;
        }
        h1 {
            font-size: 3.2rem;
            text-align: center;
            border-bottom: 3px solid #4da6ff;
            padding-bottom: 20px;
            margin-bottom: 40px;
        }
        h2 {
            font-size: 2.5rem;
            border-left: 5px solid #4da6ff;
            padding-left: 15px;
        }
        h3 {
            font-size: 2rem;
            color: #80c1ff;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.2rem;
            text-align: justify;
            letter-spacing: 0.5px;
        }
        .highlight {
            background: rgba(77, 166, 255, 0.2);
            border-left: 4px solid #4da6ff;
            padding: 20px;
            margin: 25px 0;
            border-radius: 5px;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 10px;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .image-container img {
            max-width: 80%;
            border: 3px solid #4da6ff;
        }
        .search-box, .comment-form, .rating-form {
            background: rgba(15, 28, 46, 0.8);
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .search-box h2, .comment-form h2, .rating-form h2 {
            margin-top: 0;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        input, textarea, select {
            padding: 15px;
            border: 2px solid #4da6ff;
            border-radius: 8px;
            background: #1a2b3c;
            color: #e0e0e0;
            font-size: 1.1rem;
            transition: border-color 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #80c1ff;
        }
        button {
            padding: 15px 30px;
            background: linear-gradient(90deg, #4da6ff, #0066cc);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            align-self: flex-start;
        }
        button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(77, 166, 255, 0.4);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            padding: 40px 20px;
            background: rgba(15, 28, 46, 0.9);
            border-top: 3px solid #4da6ff;
            border-bottom: 3px solid #4da6ff;
        }
        .web-link {
            padding: 15px;
            background: rgba(26, 43, 60, 0.8);
            border-radius: 8px;
            text-align: center;
            transition: background 0.3s;
        }
        .web-link:hover {
            background: rgba(77, 166, 255, 0.3);
        }
        .web-link a {
            font-weight: bold;
        }
        footer {
            text-align: center;
            padding: 30px;
            background: #0f1c2e;
            color: #aaa;
            font-size: 0.9rem;
        }
        footer p {
            margin-bottom: 10px;
        }
        @media (max-width: 992px) {
            .footer-links {
                grid-template-columns: repeat(3, 1fr);
            }
            h1 {
                font-size: 2.8rem;
            }
            h2 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 20px;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(15, 28, 46, 0.98);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                border-top: 2px solid #4da6ff;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 30px;
                right: 20px;
            }
            .breadcrumb ol {
                flex-wrap: wrap;
            }
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 576px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            p {
                font-size: 1.1rem;
            }
        }
