        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f0f1a;
            color: #e0e0ff;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #00b4d8;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff6b35;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 20px 0;
            border-bottom: 2px solid #00b4d8;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, #00b4d8, #ff6b35);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo a:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 10px 15px;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background-color: rgba(0, 180, 216, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #00b4d8;
        }
        .breadcrumb {
            background-color: #1a1a2e;
            padding: 15px 0;
            margin-top: 10px;
            border-radius: 8px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb a {
            color: #e0e0ff;
        }
        .breadcrumb .separator {
            margin: 0 10px;
            color: #ff6b35;
        }
        .search-section {
            background-color: #16213e;
            padding: 40px 0;
            margin: 30px 0;
            border-radius: 10px;
            text-align: center;
        }
        .search-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #00b4d8;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #00b4d8;
            border-radius: 50px;
            background-color: #0f0f1a;
            color: #e0e0ff;
            font-size: 1rem;
        }
        .search-btn {
            padding: 15px 30px;
            background: linear-gradient(90deg, #00b4d8, #0077b6);
            border: none;
            border-radius: 50px;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .search-btn:hover {
            transform: scale(1.05);
        }
        main {
            padding: 40px 0;
        }
        article {
            background-color: #1a1a2e;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 40px;
        }
        h1 {
            font-size: 3.5rem;
            color: #ff6b35;
            margin-bottom: 30px;
            line-height: 1.2;
            text-align: center;
        }
        h2 {
            font-size: 2.5rem;
            color: #00b4d8;
            margin: 40px 0 20px;
            border-left: 5px solid #ff6b35;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #e0e0ff;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.2rem;
            text-align: justify;
        }
        strong {
            color: #ff6b35;
            font-weight: 800;
        }
        .highlight {
            background-color: rgba(0, 180, 216, 0.1);
            padding: 20px;
            border-left: 4px solid #00b4d8;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 40px auto;
            text-align: center;
            max-width: 800px;
        }
        .image-container img {
            border-radius: 10px;
            border: 3px solid #00b4d8;
            box-shadow: 0 5px 15px rgba(0, 180, 216, 0.3);
            transition: transform 0.5s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .caption {
            margin-top: 10px;
            font-style: italic;
            color: #a0a0cc;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .comment-section, .rating-section {
            background-color: #16213e;
            padding: 30px;
            border-radius: 10px;
            border: 2px solid #00b4d8;
        }
        .comment-section h3, .rating-section h3 {
            color: #ff6b35;
            margin-bottom: 20px;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        textarea, input[type="text"], input[type="email"], select {
            padding: 15px;
            border: 2px solid #444;
            border-radius: 8px;
            background-color: #0f0f1a;
            color: #e0e0ff;
            font-size: 1rem;
            width: 100%;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 15px 0;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating-stars label:hover,
        .rating-stars label:hover ~ label,
        .rating-stars input:checked ~ label {
            color: #ff6b35;
        }
        .submit-btn {
            padding: 15px;
            background: linear-gradient(90deg, #ff6b35, #ff8c42);
            border: none;
            border-radius: 8px;
            color: white;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
        }
        .web-links {
            background-color: #1a1a2e;
            padding: 40px 20px;
            margin-top: 40px;
            border-radius: 15px 15px 0 0;
        }
        .web-links h3 {
            text-align: center;
            color: #00b4d8;
            margin-bottom: 30px;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: #16213e;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #444;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            border-color: #00b4d8;
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 180, 216, 0.3);
        }
        .web-link a {
            color: #e0e0ff;
            font-weight: 600;
        }
        footer {
            background-color: #0f0f1a;
            padding: 30px 0;
            text-align: center;
            border-top: 2px solid #ff6b35;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 20px;
        }
        .copyright {
            color: #a0a0cc;
            font-size: 0.9rem;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 100px;
                right: -100%;
                flex-direction: column;
                background-color: #1a1a2e;
                width: 80%;
                max-width: 300px;
                padding: 30px;
                border-radius: 0 0 0 15px;
                transition: right 0.5s ease;
                z-index: 999;
                border-left: 2px solid #00b4d8;
                border-bottom: 2px solid #00b4d8;
            }
            .nav-links.active {
                right: 0;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            .search-form {
                flex-direction: column;
                align-items: center;
            }
            .search-input, .search-btn {
                width: 100%;
            }
            article {
                padding: 20px;
            }
            .interactive-section {
                grid-template-columns: 1fr;
            }
            .links-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            .links-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
