        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #e6e6e6;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4cc9f0;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #f72585;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section, article {
            margin-bottom: 3rem;
        }
        header {
            background: rgba(0, 0, 20, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #4361ee;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #4361ee, #f72585);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        .logo span {
            color: #4cc9f0;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background: rgba(67, 97, 238, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4cc9f0;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(10, 15, 40, 0.98);
            flex-direction: column;
            padding: 1rem;
            border-top: 1px solid #4361ee;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 1rem 0;
        }
        .mobile-nav a {
            display: block;
            padding: 0.8rem;
            border-radius: 5px;
            border-left: 4px solid #f72585;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #a0a0c0;
        }
        .breadcrumb a:not(:last-child)::after {
            content: " › ";
            margin: 0 8px;
            color: #4cc9f0;
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(30, 30, 60, 0.7);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #2a2a5a;
        }
        h1, h2, h3 {
            color: #4cc9f0;
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            color: #f72585;
            border-bottom: 3px solid #4361ee;
            padding-bottom: 0.5rem;
            margin-bottom: 2rem;
        }
        h2 {
            font-size: 2rem;
            margin-top: 2.5rem;
            border-left: 5px solid #f72585;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #72efdd;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(114, 239, 221, 0.15);
            border-left: 4px solid #72efdd;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .tip {
            background: rgba(247, 37, 133, 0.1);
            border: 1px dashed #f72585;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .tip::before {
            content: "💡 Pro Tip: ";
            font-weight: bold;
            color: #f72585;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .stat {
            background: rgba(67, 97, 238, 0.2);
            padding: 1.5rem;
            text-align: center;
            border-radius: 10px;
            border: 1px solid #4361ee;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: #72efdd;
            display: block;
        }
        .feature-img {
            width: 100%;
            margin: 2.5rem auto;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s ease;
        }
        .feature-img:hover {
            transform: scale(1.01);
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: rgba(30, 30, 60, 0.7);
            border-radius: 15px;
            padding: 1.8rem;
            border: 1px solid #2a2a5a;
        }
        .widget h3 {
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            color: #f72585;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget h3 i {
            color: #4cc9f0;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.9rem;
            border-radius: 8px;
            border: 1px solid #4361ee;
            background: rgba(10, 15, 40, 0.8);
            color: #fff;
            font-size: 1rem;
            transition: border 0.3s ease, box-shadow 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #f72585;
            box-shadow: 0 0 0 3px rgba(247, 37, 133, 0.3);
        }
        button {
            background: linear-gradient(90deg, #4361ee, #3a0ca3);
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        button:hover {
            background: linear-gradient(90deg, #f72585, #b5179e);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(247, 37, 133, 0.4);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
        }
        .web-link {
            background: rgba(67, 97, 238, 0.1);
            padding: 1.2rem;
            border-radius: 8px;
            border: 1px solid #4361ee;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(247, 37, 133, 0.1);
            border-color: #f72585;
            transform: translateX(5px);
        }
        footer {
            background: rgba(0, 0, 20, 0.98);
            border-top: 2px solid #4361ee;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #2a2a5a;
            color: #888;
            font-size: 0.9rem;
            width: 100%;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            article, .widget {
                padding: 1.5rem;
            }
            .content-grid {
                gap: 2rem;
            }
        }
