        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0a16;
            color: #e0e0ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #00ccff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ff6ec7;
            text-shadow: 0 0 8px rgba(255, 110, 199, 0.5);
        }
        ul, ol {
            padding-left: 2rem;
            margin: 1rem 0;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section {
            padding: 3rem 0;
        }
        h1, h2, h3, h4 {
            color: #ffffff;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            background: linear-gradient(90deg, #00ccff, #ff6ec7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1.5rem;
        }
        h2 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            color: #00ccff;
            border-bottom: 2px solid #1a2a3a;
            padding-bottom: 0.5rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: #ffcc00;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        strong {
            color: #ffcc00;
            font-weight: 700;
        }
        .lead {
            font-size: 1.3rem;
            color: #aaddff;
            font-weight: 300;
            max-width: 900px;
        }
        .main-header {
            background: rgba(10, 10, 30, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #1a2a4a;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 20px;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #00ccff, #ff0066);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background: rgba(0, 204, 255, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #00ccff;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(10, 15, 30, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid #1a2a4a;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 1rem;
            border-bottom: 1px solid #1a2a4a;
        }
        .breadcrumb {
            padding: 1rem 20px;
            background: rgba(20, 25, 40, 0.7);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #aaddff;
        }
        .breadcrumb span {
            color: #ffcc00;
        }
        .hero {
            background: radial-gradient(ellipse at center, #0c1a2d 0%, #0a0a16 70%);
            padding: 4rem 0;
            text-align: center;
            border-bottom: 1px solid #1a2a4a;
        }
        .featured-image {
            margin: 2rem auto;
            max-width: 900px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 100, 255, 0.3);
            border: 2px solid #00ccff;
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #88aadd;
            padding: 0.5rem;
            background: rgba(0, 20, 40, 0.5);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .main-content {
            background: rgba(15, 20, 35, 0.6);
            border-radius: 12px;
            padding: 2.5rem;
            border: 1px solid #1a2a4a;
        }
        .sidebar {
            background: rgba(15, 20, 35, 0.6);
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid #1a2a4a;
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .widget {
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: rgba(25, 30, 50, 0.5);
            border-radius: 8px;
            border-left: 4px solid #00ccff;
        }
        .widget h3 {
            font-size: 1.3rem;
            margin-top: 0;
        }
        .search-box input, .comment-box input, .comment-box textarea, .rating-box select {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            background: rgba(10, 15, 30, 0.8);
            border: 1px solid #2a3a5a;
            border-radius: 6px;
            color: #fff;
        }
        .search-box button, .comment-box button, .rating-box button {
            width: 100%;
            padding: 0.8rem;
            background: linear-gradient(90deg, #00ccff, #0066ff);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .search-box button:hover, .comment-box button:hover, .rating-box button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 102, 255, 0.4);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.5rem;
            color: #ffcc00;
        }
        .star-rating i {
            cursor: pointer;
            transition: color 0.2s;
        }
        .comment-list {
            margin-top: 2rem;
        }
        .comment-item {
            background: rgba(30, 35, 60, 0.5);
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            border-left: 3px solid #ff6ec7;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 2rem;
            background: rgba(10, 15, 30, 0.8);
            border-radius: 12px;
            border: 1px solid #1a2a4a;
        }
        .web-link {
            padding: 1rem;
            background: rgba(20, 30, 50, 0.6);
            border-radius: 6px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(0, 204, 255, 0.1);
            transform: translateX(5px);
        }
        .main-footer {
            background: #050510;
            padding: 3rem 0 1.5rem;
            border-top: 1px solid #1a2a4a;
            text-align: center;
        }
        .copyright {
            color: #88aadd;
            font-size: 0.9rem;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #1a2a4a;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(0, 204, 255, 0.2), rgba(255, 110, 199, 0.2));
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            border-left: 5px solid #ffcc00;
        }
        .tip {
            background: rgba(255, 204, 0, 0.1);
            padding: 1rem;
            border-radius: 8px;
            border-left: 4px solid #ffcc00;
            margin: 1.5rem 0;
        }
        .tag {
            display: inline-block;
            background: rgba(0, 204, 255, 0.2);
            color: #00ccff;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .main-content, .sidebar {
                padding: 1.5rem;
            }
            .section {
                padding: 2rem 0;
            }
        }
