        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f0f1a;
            color: #e0e0ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #6c8cff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ffcc00;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            margin-bottom: 50px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #2d2d5a 100%);
            padding: 1.2rem 0;
            border-bottom: 3px solid #ffcc00;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ffcc00, #ff6b6b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        .logo a {
            color: inherit;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0.8rem;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background-color: rgba(108, 140, 255, 0.15);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #e0e0ff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #1a1a2e;
            padding: 1rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            border-top: 2px solid #ffcc00;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .mobile-nav a {
            display: block;
            padding: 0.8rem;
            border-bottom: 1px solid #2d2d5a;
            font-size: 1.1rem;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaaacc;
        }
        .breadcrumb a {
            color: #aaaacc;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .hero {
            background: linear-gradient(rgba(15, 15, 26, 0.8), rgba(15, 15, 26, 0.9)), url('https://images.unsplash.com/photo-1536440136628-849c177e76a1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            padding: 5rem 0;
            text-align: center;
            border-radius: 0 0 20px 20px;
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            color: #ffffff;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #ccccff;
        }
        .search-section, .comments-section, .rating-section {
            background-color: rgba(30, 30, 50, 0.7);
            padding: 2.5rem;
            border-radius: 15px;
            border-left: 6px solid #ffcc00;
            margin-bottom: 3rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        }
        .section-title {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #ffcc00;
            border-bottom: 2px solid #6c8cff;
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 1rem;
            border-radius: 8px;
            border: 2px solid #3a3a5e;
            background-color: #1e1e32;
            color: #e0e0ff;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: #6c8cff;
        }
        .btn {
            padding: 1rem 2rem;
            background: linear-gradient(90deg, #6c8cff, #8a2be2);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(108, 140, 255, 0.3);
        }
        .btn:hover {
            background: linear-gradient(90deg, #8a2be2, #6c8cff);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(108, 140, 255, 0.5);
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #3a3a5e;
        }
        .star-rating .star {
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating .star.active {
            color: #ffcc00;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .main-content article {
            margin-bottom: 3rem;
        }
        .main-content h2 {
            font-size: 2.5rem;
            margin: 2.5rem 0 1.5rem;
            color: #ffcc00;
        }
        .main-content h3 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: #6c8cff;
        }
        .main-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .main-content .highlight {
            background-color: rgba(255, 204, 0, 0.1);
            border-left: 4px solid #ffcc00;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
            font-style: italic;
        }
        .main-content strong {
            color: #ffcc00;
            font-weight: 700;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #aaaacc;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .sidebar {
            background-color: rgba(30, 30, 50, 0.7);
            border-radius: 15px;
            padding: 2rem;
            align-self: start;
            position: sticky;
            top: 120px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        }
        .sidebar h3 {
            color: #ffcc00;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        .sidebar-links {
            list-style: none;
        }
        .sidebar-links li {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #3a3a5e;
        }
        .sidebar-links a {
            display: block;
            padding: 0.8rem;
            border-radius: 8px;
            background-color: rgba(26, 26, 46, 0.7);
            transition: background-color 0.3s;
        }
        .sidebar-links a:hover {
            background-color: rgba(108, 140, 255, 0.2);
        }
        .long-tail-links {
            background-color: #1a1a2e;
            padding: 3rem 0;
            border-top: 3px solid #2d2d5a;
            border-bottom: 3px solid #2d2d5a;
        }
        .web-link {
            display: inline-block;
            margin: 0.8rem 1.5rem;
            padding: 0.8rem 1.5rem;
            background-color: #2d2d5a;
            border-radius: 30px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background-color: #3a3a5e;
            transform: scale(1.05);
        }
        .footer-bottom {
            padding: 2rem 0;
            text-align: center;
            color: #aaaacc;
            font-size: 0.9rem;
            border-top: 1px solid #2d2d5a;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .main-content h2 {
                font-size: 2rem;
            }
            .main-content h3 {
                font-size: 1.5rem;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .search-section, .comments-section, .rating-section {
                padding: 1.8rem;
            }
            .section-title {
                font-size: 1.7rem;
            }
            .sidebar {
                position: static;
            }
            .web-link {
                display: block;
                margin: 0.8rem 0;
            }
        }
