        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-color: #00ccff;
            --secondary-color: #ff0066;
            --dark-bg: #0a0a12;
            --card-bg: #151522;
            --text-color: #e0e0ff;
            --text-muted: #a0a0c0;
            --accent-glow: 0 0 15px var(--primary-color);
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--dark-bg);
            color: var(--text-color);
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-color);
            text-shadow: var(--accent-glow);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to bottom, #000022, var(--dark-bg));
            border-bottom: 1px solid #222244;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(0, 204, 255, 0.3);
            letter-spacing: 2px;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .main-nav a:hover {
            background-color: rgba(0, 204, 255, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-color);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
        }
        .hero {
            background: linear-gradient(rgba(10,10,18,0.9), rgba(10,10,18,0.9)), url('https://images.unsplash.com/photo-1534447677768-be436bb09401?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            padding: 4rem 0;
            text-align: center;
            margin-bottom: 3rem;
            border-radius: 0 0 20px 20px;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, #00ccff, #ff0066);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--text-muted);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: var(--card-bg);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1, h2, h3, h4 {
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
            line-height: 1.3;
        }
        h1 { font-size: 3rem; }
        h2 { font-size: 2.2rem; border-left: 5px solid var(--secondary-color); padding-left: 15px; }
        h3 { font-size: 1.8rem; }
        h4 { font-size: 1.4rem; color: var(--text-color); }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: rgba(0, 204, 255, 0.1);
            border-left: 4px solid var(--primary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-img {
            margin: 2.5rem auto;
            max-width: 900px;
            border: 2px solid var(--primary-color);
            box-shadow: var(--accent-glow);
        }
        .feature-img figcaption {
            text-align: center;
            font-style: italic;
            color: var(--text-muted);
            margin-top: 0.5rem;
        }
        .inline-link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 2rem 0;
            padding: 1.5rem;
            background-color: rgba(255, 0, 102, 0.05);
            border-radius: 10px;
        }
        .inline-link-list a {
            padding: 0.5rem 1rem;
            background-color: var(--card-bg);
            border-radius: 5px;
            border: 1px solid #333355;
        }
        .inline-link-list a:hover {
            border-color: var(--primary-color);
            transform: translateY(-3px);
        }
        aside {
            background-color: var(--card-bg);
            padding: 2rem;
            border-radius: 15px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            margin-top: 0;
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .search-box {
            display: flex;
        }
        .search-box input {
            flex-grow: 1;
            padding: 12px;
            background-color: #0a0a18;
            border: 1px solid #333355;
            color: var(--text-color);
            border-radius: 5px 0 0 5px;
        }
        .search-box button {
            background-color: var(--primary-color);
            color: #000;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: var(--secondary-color);
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #444466;
            cursor: pointer;
        }
        .stars .active {
            color: #ffcc00;
        }
        .rating-widget input, .rating-widget textarea {
            padding: 12px;
            background-color: #0a0a18;
            border: 1px solid #333355;
            color: var(--text-color);
            border-radius: 5px;
        }
        .rating-widget button {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .rating-widget button:hover {
            background-color: #cc0052;
        }
        footer {
            background-color: #050510;
            padding: 3rem 0 1.5rem;
            border-top: 1px solid #222244;
            margin-top: 4rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        friend-link {
            display: inline-block;
            padding: 0.5rem 1rem;
            background-color: rgba(0, 204, 255, 0.1);
            border-radius: 5px;
            border: 1px solid #333355;
        }
        friend-link a {
            color: var(--text-color);
        }
        friend-link:hover {
            border-color: var(--primary-color);
        }
        .copyright {
            text-align: center;
            color: var(--text-muted);
            font-size: 0.9rem;
            padding-top: 1.5rem;
            border-top: 1px solid #333355;
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: var(--card-bg);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-top: 1px solid #222244;
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            article, aside {
                padding: 1.5rem;
            }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
        }
        .last-updated {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 2rem;
            text-align: right;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .bold {
            font-weight: 800;
            color: var(--primary-color);
        }
        .text-center {
            text-align: center;
        }
