        * {
            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, #0f1525 0%, #1a1f35 100%);
            color: #e0e0ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #6cb2ff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #38a3ff;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(90deg, #ff6b6b, #ffa36c);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
        }
        .btn:hover {
            background: linear-gradient(90deg, #ffa36c, #ff6b6b);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 107, 107, 0.5);
        }
        .main-header {
            background: rgba(15, 21, 37, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #2a3a5a;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #6cb2ff, #b380ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -1px;
        }
        .logo a:hover {
            background: linear-gradient(to right, #b380ff, #6cb2ff);
            -webkit-background-clip: text;
            background-clip: text;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #6cb2ff;
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #6cb2ff;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: rgba(15, 21, 37, 0.98);
            backdrop-filter: blur(15px);
            flex-direction: column;
            padding: 20px;
            gap: 20px;
            transform: translateY(-100%);
            opacity: 0;
            transition: transform 0.4s ease, opacity 0.4s ease;
            display: flex;
            z-index: 999;
            border-bottom: 2px solid #2a3a5a;
        }
        .nav-mobile.active {
            transform: translateY(0);
            opacity: 1;
        }
        .nav-mobile a {
            font-size: 1.3rem;
            padding: 12px;
            border-bottom: 1px solid #2a3a5a;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #a0a0c0;
        }
        .breadcrumb a {
            color: #a0a0c0;
        }
        .breadcrumb a:hover {
            color: #6cb2ff;
        }
        .breadcrumb i {
            margin: 0 8px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        main {
            background: rgba(30, 35, 55, 0.6);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid #3a4565;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }
        article h1 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            background: linear-gradient(to right, #ffa36c, #ff6b6b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .article-meta {
            color: #a0a0c0;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #3a4565;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: #6cb2ff;
            padding-bottom: 10px;
            border-bottom: 2px dashed #3a4565;
        }
        h3 {
            font-size: 1.6rem;
            margin: 30px 0 15px;
            color: #b380ff;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(108, 178, 255, 0.15);
            border-left: 5px solid #6cb2ff;
            padding: 20px;
            border-radius: 0 10px 10px 0;
            margin: 25px 0;
        }
        .code-block {
            background: #1a1f35;
            border: 2px solid #2a3a5a;
            border-radius: 10px;
            padding: 20px;
            font-family: 'Courier New', monospace;
            font-size: 1.2rem;
            margin: 25px 0;
            overflow-x: auto;
            color: #ffcc66;
        }
        .quote {
            font-style: italic;
            border-left: 5px solid #ffa36c;
            padding-left: 20px;
            margin: 25px 0;
            color: #d0d0f0;
        }
        aside {
            background: rgba(30, 35, 55, 0.6);
            border-radius: 20px;
            padding: 30px;
            border: 1px solid #3a4565;
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .search-box {
            margin-bottom: 30px;
        }
        .search-box h3 {
            margin-bottom: 15px;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex-grow: 1;
            padding: 12px 15px;
            background: #1a1f35;
            border: 1px solid #3a4565;
            border-radius: 50px 0 0 50px;
            color: #e0e0ff;
            outline: none;
        }
        .search-box button {
            background: #6cb2ff;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
        }
        .sidebar-widget {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #3a4565;
        }
        .sidebar-widget:last-child {
            border-bottom: none;
        }
        .interactive-section {
            background: rgba(42, 58, 90, 0.4);
            border-radius: 15px;
            padding: 25px;
            margin: 35px 0;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
            font-size: 1.8rem;
            color: #ffcc00;
            cursor: pointer;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.2s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea,
        .score-form select {
            width: 100%;
            padding: 15px;
            background: #1a1f35;
            border: 1px solid #3a4565;
            border-radius: 10px;
            color: #e0e0ff;
            margin-bottom: 15px;
            resize: vertical;
            outline: none;
        }
        .comment-form textarea:focus,
        .score-form select:focus {
            border-color: #6cb2ff;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .web-link {
            background: rgba(42, 58, 90, 0.5);
            padding: 15px;
            border-radius: 10px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: rgba(42, 58, 90, 0.8);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #b380ff;
            font-weight: 600;
        }
        .main-footer {
            background: #0f1525;
            padding: 40px 0 20px;
            border-top: 2px solid #2a3a5a;
            text-align: center;
            color: #a0a0c0;
        }
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #2a3a5a;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            main, aside {
                padding: 25px;
            }
            article h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .footer-links {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }
