        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0a1a;
            color: #e0e0ff;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #4dabf7;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
        }
        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, #0c2461 0%, #1e3799 100%);
            padding: 1.2rem 0;
            box-shadow: 0 5px 20px rgba(0, 0, 50, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ffcc00, #ff6b6b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        .logo a {
            color: inherit;
        }
        .logo span {
            color: #4dabf7;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #e0e0ff;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            transition: all 0.3s;
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 204, 0, 0.2);
            color: #ffcc00;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffcc00;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #1e3799;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: #e0e0ff;
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .mobile-nav a:hover {
            background-color: rgba(255, 204, 0, 0.1);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(30, 55, 153, 0.2);
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #a5d8ff;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .search-section {
            background: linear-gradient(90deg, #0c2461, #1e3799);
            padding: 2rem 0;
            text-align: center;
            margin: 1rem 0;
            border-radius: 12px;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            background-color: #f0f8ff;
            color: #333;
        }
        .search-btn {
            padding: 1rem 2rem;
            background: linear-gradient(90deg, #ffcc00, #ff922b);
            color: #0a0a1a;
            border: none;
            border-radius: 0 50px 50px 0;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .search-btn:hover {
            transform: scale(1.05);
        }
        main {
            padding: 2rem 0;
        }
        article {
            background-color: rgba(20, 30, 80, 0.6);
            border-radius: 16px;
            padding: 3rem;
            margin-bottom: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 30, 0.5);
            border: 1px solid rgba(100, 150, 255, 0.2);
        }
        h1 {
            font-size: 3rem;
            color: #ffcc00;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(255, 204, 0, 0.3);
        }
        h2 {
            font-size: 2.2rem;
            color: #4dabf7;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #ffcc00;
        }
        h3 {
            font-size: 1.8rem;
            color: #a5d8ff;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.15rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.4rem;
            color: #c0c0ff;
            font-weight: 300;
            border-left: 5px solid #ffcc00;
            padding-left: 1.5rem;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid #ffcc00;
            margin: 2rem 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background: rgba(30, 55, 153, 0.5);
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #4dabf7;
            transition: transform 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-10px);
            border-color: #ffcc00;
        }
        .stat-card i {
            font-size: 2.5rem;
            color: #ffcc00;
            margin-bottom: 1rem;
        }
        .stat-card h4 {
            font-size: 1.5rem;
            color: #a5d8ff;
            margin-bottom: 0.5rem;
        }
        .image-container {
            margin: 3rem auto;
            text-align: center;
            max-width: 900px;
        }
        .image-container img {
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
            border: 3px solid #4dabf7;
        }
        .image-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 0.8rem;
        }
        .interactive-section {
            background: rgba(10, 25, 70, 0.8);
            padding: 2.5rem;
            border-radius: 16px;
            margin: 3rem 0;
        }
        .rating-form, .comment-form {
            margin-top: 2rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star.active,
        .star:hover {
            color: #ffcc00;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #a5d8ff;
        }
        input, textarea, select {
            width: 100%;
            padding: 1rem;
            border-radius: 8px;
            border: 2px solid #4dabf7;
            background-color: rgba(255,255,255,0.1);
            color: #fff;
            font-size: 1rem;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #ff6b6b, #ff922b);
            color: white;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #ff922b, #ffcc00);
            transform: scale(1.05);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.2rem;
            margin: 3rem 0;
            padding: 2rem;
            background-color: rgba(30, 55, 153, 0.3);
            border-radius: 12px;
        }
        .web-link {
            background-color: rgba(100, 150, 255, 0.1);
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            transition: background-color 0.3s;
        }
        .web-link:hover {
            background-color: rgba(255, 204, 0, 0.2);
        }
        .web-link a {
            color: #a5d8ff;
            font-weight: 600;
        }
        footer {
            background-color: #060613;
            padding: 3rem 0 1.5rem;
            text-align: center;
            border-top: 3px solid #ffcc00;
        }
        .copyright {
            margin-top: 2rem;
            color: #888;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            article { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .search-form { flex-direction: column; }
            .search-input { border-radius: 50px; margin-bottom: 1rem; }
            .search-btn { border-radius: 50px; }
            .stats-grid { grid-template-columns: 1fr; }
            .web-links { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 576px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            .container { padding: 0 15px; }
            .web-links { grid-template-columns: 1fr; }
        }
