        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #f0f0f0;
            background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3a 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: #00d9ff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ff4dff;
            text-shadow: 0 0 8px rgba(255, 77, 255, 0.6);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 10, 40, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #00d9ff;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #00d9ff, #ff4dff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo:hover {
            transform: scale(1.05);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        nav a:hover {
            background: rgba(0, 217, 255, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #00d9ff;
        }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(20, 20, 60, 0.7);
            margin-bottom: 30px;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 10px;
        }
        .breadcrumb li:not(:last-child):after {
            content: '›';
            margin-left: 10px;
            color: #ff4dff;
        }
        main {
            padding: 30px 0;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(20, 20, 60, 0.8);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(0, 217, 255, 0.3);
        }
        h1, h2, h3, h4 {
            color: #00d9ff;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid #ff4dff;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 40px;
            color: #ff4dff;
        }
        h3 {
            font-size: 1.8rem;
            color: #9d4dff;
            margin-top: 30px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(0, 217, 255, 0.1);
            border-left: 5px solid #ff4dff;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 8px;
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            border: 3px solid #00d9ff;
            margin: 30px 0;
            box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
        }
        aside {
            background: rgba(20, 20, 60, 0.8);
            border-radius: 15px;
            padding: 25px;
            height: fit-content;
            border: 1px solid rgba(255, 77, 255, 0.3);
        }
        .widget {
            margin-bottom: 35px;
        }
        .widget-title {
            font-size: 1.5rem;
            color: #00d9ff;
            border-bottom: 2px solid #ff4dff;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        .search-form {
            display: flex;
            margin-top: 15px;
        }
        .search-input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 2px solid #00d9ff;
            background: rgba(10, 10, 40, 0.8);
            color: white;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-button {
            background: linear-gradient(90deg, #00d9ff, #0099cc);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }
        .search-button:hover {
            background: linear-gradient(90deg, #ff4dff, #cc00cc);
        }
        .comment-form, .rating-form {
            background: rgba(30, 30, 70, 0.9);
            padding: 25px;
            border-radius: 10px;
            margin-top: 20px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            color: #00d9ff;
            font-weight: 600;
        }
        textarea, input[type="text"], input[type="email"], select {
            width: 100%;
            padding: 12px;
            background: rgba(10, 10, 40, 0.8);
            border: 2px solid #4444aa;
            border-radius: 5px;
            color: white;
            font-size: 1rem;
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ffcc00;
            margin: 10px 0;
        }
        .rating-stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .submit-button {
            background: linear-gradient(90deg, #ff4dff, #9d4dff);
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 5px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            display: block;
            width: 100%;
        }
        .submit-button:hover {
            background: linear-gradient(90deg, #00d9ff, #0099cc);
            box-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            padding: 40px 0;
            background: rgba(10, 10, 40, 0.9);
            margin-top: 50px;
            border-top: 2px solid #ff4dff;
            border-bottom: 2px solid #00d9ff;
        }
        .web-link {
            background: rgba(30, 30, 70, 0.8);
            padding: 15px 25px;
            border-radius: 8px;
            border: 1px solid #4444aa;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(0, 217, 255, 0.2);
            transform: translateY(-5px);
            border-color: #00d9ff;
        }
        footer {
            text-align: center;
            padding: 30px 0;
            background: rgba(5, 5, 25, 0.95);
            color: #aaaacc;
            font-size: 1rem;
        }
        .copyright {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #4444aa;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(10, 10, 40, 0.98);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                border-top: 1px solid #00d9ff;
                z-index: 999;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            article {
                padding: 25px;
            }
            .content-wrapper {
                gap: 25px;
            }
            .footer-links {
                gap: 15px;
            }
            .web-link {
                padding: 12px 20px;
            }
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 217, 255, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(0, 217, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 217, 255, 0); }
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 900; color: #ffcc00; }
        .mt-40 { margin-top: 40px; }
        .mb-40 { margin-bottom: 40px; }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #00d9ff, #ff4dff, transparent);
            margin: 40px 0;
        }
