* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c0c1d 0%, #1a1a2e 100%);
            color: #e0e0ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(12, 12, 29, 0.95);
            border-bottom: 2px solid #00d4ff;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #00d4ff, #ff00cc);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: #b0b0ff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 12px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .desktop-nav a:hover {
            color: #00d4ff;
            background: rgba(0, 212, 255, 0.1);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #00d4ff;
            background: none;
            border: none;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(12, 12, 29, 0.98);
            border-top: 1px solid #33335a;
            padding: 20px;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: #b0b0ff;
            text-decoration: none;
            font-size: 1.2rem;
            padding: 10px;
            border-bottom: 1px solid #33335a;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #8888cc;
        }
        .breadcrumb a {
            color: #00d4ff;
            text-decoration: none;
        }
        main {
            padding: 30px 0 60px;
        }
        .article-header {
            margin-bottom: 40px;
            text-align: center;
            padding: 30px;
            background: linear-gradient(90deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 204, 0.1));
            border-radius: 15px;
            border-left: 5px solid #00d4ff;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            background: linear-gradient(90deg, #00d4ff, #ff00cc);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .article-meta {
            font-style: italic;
            color: #aaaaff;
            margin-bottom: 25px;
        }
        .content-section {
            margin-bottom: 50px;
        }
        h2 {
            font-size: 2.2rem;
            color: #00d4ff;
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #33335a;
        }
        h3 {
            font-size: 1.6rem;
            color: #ff66cc;
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight-box {
            background: rgba(0, 212, 255, 0.08);
            border-left: 4px solid #00d4ff;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #33335a;
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            border-color: #00d4ff;
        }
        .featured-image {
            width: 100%;
            max-width: 800px;
            margin: 30px auto;
            display: block;
            border-radius: 15px;
            border: 3px solid #00d4ff;
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
        }
        .interactive-section {
            background: rgba(26, 26, 46, 0.8);
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid #444477;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            color: #b0b0ff;
            font-weight: 600;
        }
        input, select, textarea {
            width: 100%;
            padding: 12px 15px;
            background: rgba(12, 12, 29, 0.8);
            border: 1px solid #555588;
            border-radius: 8px;
            color: #e0e0ff;
            font-size: 1rem;
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        button {
            background: linear-gradient(90deg, #00d4ff, #0099ff);
            color: #0c0c1d;
            border: none;
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        button:hover {
            background: linear-gradient(90deg, #0099ff, #00d4ff);
            transform: scale(1.05);
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .star {
            font-size: 1.8rem;
            color: #555588;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star.active {
            color: #ffcc00;
        }
        .comments-section {
            margin-top: 40px;
        }
        .comment {
            background: rgba(255, 255, 255, 0.04);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            border-left: 3px solid #ff00cc;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 15px;
            margin: 40px 0;
        }
        .web-link {
            background: rgba(0, 212, 255, 0.05);
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #33335a;
        }
        .web-link a {
            color: #b0b0ff;
            text-decoration: none;
            font-weight: 600;
        }
        .web-link a:hover {
            color: #00d4ff;
            text-decoration: underline;
        }
        footer {
            background: rgba(12, 12, 29, 0.95);
            border-top: 2px solid #ff00cc;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .copyright {
            margin-top: 30px;
            color: #8888cc;
            font-size: 0.9rem;
            border-top: 1px solid #33335a;
            padding-top: 20px;
            width: 100%;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            .stats-grid { grid-template-columns: 1fr; }
            .web-links { grid-template-columns: 1fr; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            p { font-size: 1rem; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            .article-header { padding: 20px; }
            h1 { font-size: 1.8rem; }
            .interactive-section { padding: 20px; }
        }
