        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: #0f1419;
            color: #e0e0e0;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            color: #00b4ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff9900;
        }
        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, #1a2230 0%, #0a0e14 100%);
            padding: 1rem 0;
            border-bottom: 2px solid #00b4ff;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #00b4ff, #ff9900);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2.5rem;
            color: #ff9900;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: #b0b0b0;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        nav a:hover, nav a.active {
            color: #fff;
            background: rgba(0, 180, 255, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #00b4ff;
        }
        .breadcrumb {
            background: #1a2230;
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 8px;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: #ff9900;
        }
        .search-box {
            background: #1a2230;
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
            text-align: center;
        }
        .search-box form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-box input {
            flex: 1;
            padding: 1rem;
            border: 2px solid #00b4ff;
            border-radius: 8px 0 0 8px;
            background: #0a0e14;
            color: #fff;
            font-size: 1rem;
        }
        .search-box button {
            padding: 1rem 2rem;
            background: linear-gradient(90deg, #00b4ff, #007acc);
            border: none;
            border-radius: 0 8px 8px 0;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .search-box button:hover {
            transform: scale(1.05);
        }
        main {
            padding: 2rem 0;
        }
        article {
            background: #1a2230;
            border-radius: 16px;
            padding: 3rem;
            margin-bottom: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: #fff;
            line-height: 1.2;
            background: linear-gradient(90deg, #00b4ff, #ff9900);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        h2 {
            font-size: 2.2rem;
            margin: 2.5rem 0 1rem;
            color: #00b4ff;
            border-left: 5px solid #ff9900;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: #ff9900;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .highlight {
            background: rgba(255, 153, 0, 0.1);
            border-left: 4px solid #ff9900;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 0.5rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #0a0e14, #1a2230);
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #00b4ff;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 180, 255, 0.2);
        }
        .stat-card i {
            font-size: 3rem;
            color: #ff9900;
            margin-bottom: 1rem;
        }
        .stat-card h4 {
            font-size: 1.8rem;
            color: #fff;
        }
        .image-caption {
            text-align: center;
            margin: 2rem 0;
            padding: 1rem;
            background: #0a0e14;
            border-radius: 8px;
        }
        .image-caption img {
            border-radius: 12px;
            border: 3px solid #00b4ff;
            margin: 0 auto 1rem;
        }
        .interaction {
            background: #1a2230;
            border-radius: 16px;
            padding: 3rem;
            margin: 3rem 0;
        }
        .rating-form, .comment-form {
            margin-bottom: 3rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars label:hover,
        .stars label:hover ~ label,
        .stars input:checked ~ label {
            color: #ff9900;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border-radius: 8px;
            border: 2px solid #00b4ff;
            background: #0a0e14;
            color: #fff;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #00b4ff, #007acc);
            color: white;
            border: none;
            padding: 1rem 3rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .submit-btn:hover {
            transform: scale(1.05);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .web-link {
            background: #1a2230;
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid #333;
            transition: border-color 0.3s, transform 0.3s;
        }
        .web-link:hover {
            border-color: #00b4ff;
            transform: translateY(-5px);
        }
        footer {
            background: #0a0e14;
            padding: 3rem 0;
            text-align: center;
            border-top: 2px solid #00b4ff;
        }
        .copyright {
            margin-top: 2rem;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                width: 100%;
                flex-direction: column;
                margin-top: 1rem;
                background: #1a2230;
                padding: 1rem;
                border-radius: 8px;
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article, .interaction {
                padding: 2rem;
            }
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .logo {
                margin-bottom: 1rem;
            }
        }
