        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.6;
            color: #f0f0f0;
            background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3a 100%);
            min-height: 100vh;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 10, 40, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 3px solid #ff4655;
            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: 900;
            color: #ff4655;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 0 10px rgba(255, 70, 85, 0.5);
        }
        .logo span {
            color: #00b0ff;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #f0f0f0;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .nav-desktop a:hover {
            background: #ff4655;
            color: white;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: #ff4655;
            border-radius: 2px;
            transition: 0.3s;
        }
        .mobile-menu {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background: rgba(10, 10, 40, 0.98);
            padding: 20px;
            flex-direction: column;
            gap: 15px;
            z-index: 999;
        }
        .mobile-menu.active {
            display: flex;
        }
        .mobile-menu a {
            color: #f0f0f0;
            text-decoration: none;
            padding: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-weight: 600;
        }
        .mobile-menu a:hover {
            color: #ff4655;
            padding-left: 20px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
        }
        .breadcrumb {
            padding: 20px 0;
            color: #aaa;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #00b0ff;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(20, 20, 50, 0.7);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        h1 {
            color: #ff4655;
            font-size: 2.8rem;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        h2 {
            color: #00b0ff;
            font-size: 2rem;
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255, 70, 85, 0.3);
        }
        h3 {
            color: #ffcc00;
            font-size: 1.5rem;
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .highlight {
            background: rgba(255, 70, 85, 0.1);
            border-left: 4px solid #ff4655;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .highlight strong {
            color: #ffcc00;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 25px 0;
            border: 2px solid #00b0ff;
            box-shadow: 0 5px 15px rgba(0, 176, 255, 0.2);
        }
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 25px 0;
        }
        .feature-item {
            background: rgba(0, 176, 255, 0.1);
            padding: 15px;
            border-radius: 8px;
            border: 1px solid rgba(0, 176, 255, 0.3);
        }
        .feature-item i {
            color: #ffcc00;
            margin-right: 10px;
        }
        .search-box {
            background: rgba(10, 10, 40, 0.8);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        .search-box h3 {
            margin-top: 0;
        }
        .search-form {
            display: flex;
            margin-top: 15px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #ff4655;
            border-radius: 5px 0 0 5px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            background: #ff4655;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #ff2e3f;
        }
        .rating-section, .comment-section {
            background: rgba(20, 20, 50, 0.7);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            color: #ccc;
            font-size: 1.8rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        .comment-form textarea {
            width: 100%;
            height: 150px;
            padding: 15px;
            border: 2px solid #00b0ff;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            margin: 15px 0;
            font-size: 1rem;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(45deg, #ff4655, #ff2e3f);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 70, 85, 0.4);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: rgba(20, 20, 50, 0.7);
            border-radius: 10px;
            padding: 25px;
            border-top: 4px solid #ff4655;
        }
        .sidebar-widget h3 {
            margin-top: 0;
            color: #ffcc00;
        }
        .sidebar-links {
            list-style: none;
        }
        .sidebar-links li {
            margin-bottom: 12px;
        }
        .sidebar-links a {
            color: #00b0ff;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: color 0.3s;
        }
        .sidebar-links a:hover {
            color: #ffcc00;
            padding-left: 5px;
        }
        .sidebar-links i {
            margin-right: 10px;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .web-link {
            background: rgba(0, 176, 255, 0.1);
            padding: 20px;
            border-radius: 8px;
            border: 1px solid rgba(0, 176, 255, 0.3);
        }
        .web-link a {
            color: #ffcc00;
            text-decoration: none;
            font-weight: 600;
            display: block;
            transition: color 0.3s;
        }
        .web-link a:hover {
            color: #ff4655;
        }
        footer {
            background: rgba(10, 10, 40, 0.95);
            border-top: 3px solid #ff4655;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .article-content {
                padding: 25px;
            }
            .feature-list {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-content, .sidebar-widget {
            animation: fadeIn 0.8s ease-out;
        }
        .bold { font-weight: 700; color: #ffcc00; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .text-center { text-align: center; }
        .mt-30 { margin-top: 30px; }
        .mb-30 { margin-bottom: 30px; }
