        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0a12;
            color: #e0e0f0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #74c0fc;
            transform: translateY(-1px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 5px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .text-highlight { color: #ffd43b; font-weight: bold; }
        .emoji { font-size: 1.2em; }
        .section-padding { padding: 60px 0; }
        header {
            background: linear-gradient(135deg, #111122 0%, #1a1a2e 100%);
            border-bottom: 1px solid #2d2d4d;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 10, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #4dabf7, #da77f2);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.5px;
        }
        .my-logo:hover {
            animation: logoGlow 1.5s ease infinite;
        }
        @keyframes logoGlow {
            0%, 100% { filter: drop-shadow(0 0 5px #4dabf7); }
            50% { filter: drop-shadow(0 0 15px #da77f2); }
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-desktop {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-desktop a {
            color: #c1c1e0;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: rgba(77, 171, 247, 0.1);
            color: #4dabf7;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #e0e0f0;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-desktop { display: none; }
            .nav-mobile {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #1a1a2e;
                flex-direction: column;
                padding: 20px;
                border-top: 1px solid #2d2d4d;
                box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            }
            .nav-mobile.active {
                display: flex;
            }
            .nav-mobile li {
                list-style: none;
                margin: 10px 0;
            }
            .nav-mobile a {
                display: block;
                padding: 12px 15px;
                border-left: 3px solid transparent;
            }
            .nav-mobile a:hover {
                border-left-color: #4dabf7;
                background-color: rgba(77, 171, 247, 0.05);
            }
        }
        .breadcrumb {
            background-color: #151522;
            padding: 12px 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid #252538;
        }
        .breadcrumb a {
            color: #a5a5cc;
        }
        .breadcrumb span {
            color: #6c757d;
            margin: 0 8px;
        }
        .hero {
            background: linear-gradient(rgba(10, 10, 18, 0.85), rgba(10, 10, 18, 0.95)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            padding: 80px 20px;
            text-align: center;
            margin-bottom: 40px;
            border-bottom: 2px solid #2d2d4d;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #ffd43b, #f76707);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ccccf0;
        }
        .search-box {
            max-width: 600px;
            margin: 30px auto;
            padding: 20px;
            background-color: rgba(26, 26, 46, 0.7);
            border-radius: 10px;
            border: 1px solid #3b3b5e;
        }
        .search-box h2 {
            margin-bottom: 15px;
            color: #ffd43b;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 15px;
            border: 1px solid #4d5a7e;
            background-color: #111122;
            color: #e0e0f0;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-form button {
            padding: 0 25px;
            background: linear-gradient(135deg, #4dabf7, #339af0);
            border: none;
            color: white;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background: linear-gradient(135deg, #339af0, #228be6);
        }
        main {
            padding: 20px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
        }
        article {
            background-color: #151522;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid #252538;
        }
        article h2 {
            font-size: 2.2rem;
            color: #4dabf7;
            margin-top: 40px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2d2d4d;
        }
        article h3 {
            font-size: 1.8rem;
            color: #da77f2;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        article h4 {
            font-size: 1.4rem;
            color: #ffa94d;
            margin-top: 25px;
            margin-bottom: 12px;
        }
        article p {
            margin-bottom: 20px;
            text-align: justify;
            color: #d0d0e7;
        }
        article p.lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: #ffd43b;
            border-left: 4px solid #4dabf7;
            padding-left: 20px;
            margin: 30px 0;
        }
        article strong {
            color: #ffd43b;
            font-weight: 700;
        }
        article ul, article ol {
            margin-left: 25px;
            margin-bottom: 20px;
            color: #d0d0e7;
        }
        article li {
            margin-bottom: 10px;
        }
        .featured-image {
            width: 100%;
            margin: 30px 0;
            border: 2px solid #3b3b5e;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .update-time {
            background-color: #1a1a2e;
            padding: 15px;
            border-radius: 8px;
            margin: 30px 0;
            color: #74c0fc;
            font-style: italic;
            border-left: 5px solid #74c0fc;
        }
        aside {
            background-color: #151522;
            border-radius: 12px;
            padding: 25px;
            border: 1px solid #252538;
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            color: #ffa94d;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #2d2d4d;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 12px;
            padding-left: 10px;
            border-left: 3px solid transparent;
            transition: all 0.3s ease;
        }
        .link-list li:hover {
            border-left-color: #da77f2;
            padding-left: 15px;
        }
        .link-list a {
            color: #c1c1e0;
            display: block;
        }
        .link-list a:hover {
            color: #da77f2;
        }
        .user-interaction {
            background-color: #1a1a2e;
            border-radius: 12px;
            padding: 30px;
            margin-top: 50px;
            border: 1px solid #2d2d4d;
        }
        .user-interaction h2 {
            color: #ffd43b;
            margin-bottom: 25px;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .comment-form, .rating-form {
            background-color: #151522;
            padding: 25px;
            border-radius: 10px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #a5a5cc;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            background-color: #111122;
            border: 1px solid #4d5a7e;
            border-radius: 6px;
            color: #e0e0f0;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #495057;
            margin: 10px 0;
        }
        .stars label {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label {
            color: #ffd43b;
        }
        .stars input {
            display: none;
        }
        .submit-btn {
            background: linear-gradient(135deg, #40c057, #2f9e44);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            transition: background 0.3s ease;
        }
        .submit-btn:hover {
            background: linear-gradient(135deg, #2f9e44, #2b8a3e);
        }
        footer {
            background-color: #111122;
            border-top: 1px solid #2d2d4d;
            margin-top: 80px;
            padding: 50px 0 20px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #4dabf7;
            margin-bottom: 20px;
        }
        friend-link {
            display: block;
            margin: 10px 0;
            color: #a5a5cc;
            padding: 8px 0;
            border-bottom: 1px dashed #2d2d4d;
        }
        friend-link a:hover {
            color: #74c0fc;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #252538;
            color: #6c757d;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hero { padding: 50px 20px; }
            article, aside, .search-box { padding: 25px; }
            .content-grid { gap: 25px; }
            .interaction-grid { grid-template-columns: 1fr; }
        }
