        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c0f1d 0%, #1a1f3a 100%);
            color: #e0e0ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #00c3ff;
            text-decoration: none;
            transition: color 0.3s, transform 0.2s;
        }
        a:hover {
            color: #ffcc00;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 15, 35, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #00c3ff;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #00c3ff, #ff00cc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .logo a {
            background: none;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .nav-links a:hover {
            background: rgba(0, 195, 255, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #00c3ff;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            margin: 0 5px;
        }
        .search-box {
            background: rgba(255,255,255,0.05);
            border-radius: 50px;
            padding: 5px 20px;
            display: inline-flex;
            align-items: center;
            margin-left: 20px;
        }
        .search-box input {
            background: transparent;
            border: none;
            color: white;
            padding: 10px;
            width: 200px;
            outline: none;
        }
        .search-box button {
            background: none;
            border: none;
            color: #00c3ff;
            cursor: pointer;
            font-size: 1.2rem;
        }
        main {
            padding: 40px 0;
            min-height: 80vh;
        }
        article {
            background: rgba(20, 25, 50, 0.7);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            border: 1px solid rgba(0, 195, 255, 0.2);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
        }
        h1 {
            font-size: 3rem;
            color: #00ffcc;
            margin-bottom: 20px;
            text-align: center;
            text-shadow: 0 2px 8px rgba(0, 255, 204, 0.3);
        }
        h2 {
            font-size: 2.2rem;
            color: #ffcc00;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255, 204, 0, 0.4);
        }
        h3 {
            font-size: 1.8rem;
            color: #00c3ff;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        .highlight {
            background: rgba(0, 195, 255, 0.1);
            border-left: 5px solid #00c3ff;
            padding: 20px;
            border-radius: 0 10px 10px 0;
            margin: 25px 0;
        }
        .emoji {
            font-size: 1.4em;
            margin-right: 8px;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .card {
            background: rgba(30, 35, 70, 0.8);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid rgba(255, 204, 0, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 204, 0, 0.2);
        }
        .user-feedback {
            background: rgba(30, 40, 80, 0.8);
            border-radius: 15px;
            padding: 30px;
            margin-top: 40px;
        }
        .feedback-form {
            display: grid;
            gap: 20px;
            margin-top: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 8px;
            font-weight: 600;
            color: #ffcc00;
        }
        input, textarea, select {
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #444;
            background: rgba(10, 15, 35, 0.8);
            color: white;
            font-size: 1rem;
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffcc00;
        }
        .btn {
            background: linear-gradient(90deg, #00c3ff, #0077ff);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1.1rem;
        }
        .btn:hover {
            background: linear-gradient(90deg, #ffcc00, #ff7700);
            transform: scale(1.05);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
            padding: 30px;
            background: rgba(10, 15, 35, 0.9);
            border-radius: 15px;
        }
        .web-link a {
            display: block;
            padding: 12px;
            background: rgba(0, 195, 255, 0.1);
            border-radius: 8px;
            text-align: center;
        }
        footer {
            background: rgba(5, 10, 25, 0.95);
            padding: 40px 0 20px;
            text-align: center;
            border-top: 2px solid #00c3ff;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }
        .copyright {
            color: #888;
            font-size: 0.9rem;
            margin-top: 20px;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 15, 35, 0.98);
                flex-direction: column;
                padding: 20px;
                border-top: 1px solid #00c3ff;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .search-box input {
                width: 150px;
            }
        }
        @media (max-width: 768px) {
            .container { padding: 0 15px; }
            article { padding: 25px; }
            .header-content { flex-wrap: wrap; }
            .search-box { margin: 15px 0 0; width: 100%; }
            .search-box input { width: 100%; }
        }
