        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0e17;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #339af0;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .hidden {
            display: none !important;
        }
        header {
            background: linear-gradient(135deg, #1a2332 0%, #0a0e17 100%);
            border-bottom: 2px solid #339af0;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #339af0, #74c0fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .logo a {
            background: none;
        }
        .logo a:hover {
            text-decoration: none;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav ul li a {
            color: #c1d6f0;
            font-weight: 500;
            padding: 8px 5px;
            border-radius: 4px;
        }
        nav ul li a:hover {
            background-color: rgba(51, 154, 240, 0.1);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #74c0fc;
        }
        .breadcrumb {
            padding: 15px 0 5px;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .search-container {
            margin: 30px auto;
            max-width: 800px;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .search-input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            background-color: #1e293b;
            color: #f1f5f9;
            font-size: 1.1rem;
        }
        .search-input::placeholder {
            color: #94a3b8;
        }
        .search-button {
            background: linear-gradient(90deg, #339af0, #1c7ed6);
            color: white;
            border: none;
            padding: 0 35px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s;
        }
        .search-button:hover {
            background: linear-gradient(90deg, #1c7ed6, #1971c2);
        }
        main {
            padding: 30px 0 60px;
        }
        article {
            background-color: #111827;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 40px;
        }
        h1 {
            font-size: 2.8rem;
            color: #74c0fc;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2rem;
            color: #4dabf7;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #334155;
        }
        h3 {
            font-size: 1.6rem;
            color: #a5d8ff;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(51, 154, 240, 0.15);
            border-left: 4px solid #339af0;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .inline-link {
            font-weight: 600;
            color: #40c057;
        }
        .bold {
            font-weight: 700;
            color: #ffd43b;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .image-container {
            margin: 35px auto;
            text-align: center;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.7);
            max-width: 900px;
        }
        .image-container img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #94a3b8;
            padding: 10px;
            background-color: #1e293b;
            font-size: 0.95rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .card {
            background: #1a2332;
            border-radius: 10px;
            padding: 25px;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #334155;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
            border-color: #339af0;
        }
        .card h3 {
            color: #74c0fc;
            margin-top: 0;
        }
        .interactive-section {
            background-color: #1a2332;
            border-radius: 12px;
            padding: 30px;
            margin-top: 50px;
        }
        .interactive-section h2 {
            margin-top: 0;
        }
        .rating-container {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 2rem;
            color: #ffd43b;
            cursor: pointer;
        }
        .star:hover {
            transform: scale(1.2);
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 8px;
            color: #c1d6f0;
            font-weight: 500;
        }
        .form-input, .form-textarea {
            padding: 15px;
            background-color: #0f172a;
            border: 1px solid #334155;
            border-radius: 8px;
            color: #f1f5f9;
            font-size: 1rem;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            background: linear-gradient(90deg, #40c057, #2f9e44);
            color: white;
            border: none;
            padding: 16px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            align-self: flex-start;
            transition: all 0.3s;
        }
        .submit-button:hover {
            background: linear-gradient(90deg, #2f9e44, #2b8a3e);
            transform: translateY(-3px);
        }
        .footer-links {
            background-color: #111827;
            padding: 40px 0;
            border-top: 2px solid #334155;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: #1a2332;
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #339af0;
            transition: background-color 0.3s;
        }
        .web-link:hover {
            background-color: #222f43;
        }
        .web-link a {
            color: #a5d8ff;
            font-weight: 500;
        }
        footer {
            background-color: #0a0e17;
            padding: 30px 0;
            text-align: center;
            color: #94a3b8;
            border-top: 1px solid #334155;
        }
        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #1a2332;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                border-top: 1px solid #334155;
                box-shadow: 0 10px 15px rgba(0,0,0,0.3);
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 25px;
            }
            .content-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
                border-radius: 12px;
            }
            .search-input, .search-button {
                width: 100%;
                border-radius: 0;
                padding: 18px;
            }
            .rating-container {
                flex-direction: column;
                align-items: flex-start;
            }
        }
