        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background: linear-gradient(135deg, #0c0c14 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        a {
            color: #7aa2f7;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #bb9af7;
            text-shadow: 0 0 8px rgba(187, 154, 247, 0.5);
        }
        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-color: rgba(10, 10, 20, 0.92);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #2a2a3e;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff9e64, #ff7a45);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo a:hover {
            color: transparent;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.05rem;
            position: relative;
            padding: 5px 0;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #ff9e64, #ff7a45);
            transition: width 0.4s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e0e0e0;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: rgba(10, 10, 20, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #2a2a3e;
            animation: slideDown 0.3s ease;
        }
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px 0;
            border-bottom: 1px solid #2a2a3e;
            font-size: 1.1rem;
            font-weight: 600;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 10px;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #7aa2f7;
        }
        .breadcrumb i {
            margin: 0 8px;
            font-size: 0.8rem;
        }
        .hero {
            text-align: center;
            padding: 50px 0 30px;
            border-bottom: 1px solid #2a2a3e;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #ff9e64, #ff7a45, #7aa2f7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        .hero-subtitle {
            font-size: 1.3rem;
            color: #bb9af7;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .search-box {
            max-width: 600px;
            margin: 40px auto;
            position: relative;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid #3b3b54;
            border-radius: 50px 0 0 50px;
            background: rgba(20, 20, 30, 0.8);
            color: #e0e0e0;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-box input:focus {
            border-color: #7aa2f7;
        }
        .search-box button {
            padding: 0 30px;
            background: linear-gradient(90deg, #7aa2f7, #bb9af7);
            color: #0c0c14;
            border: none;
            border-radius: 0 50px 50px 0;
            font-weight: bold;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .search-box button:hover {
            transform: scale(1.03);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-bottom: 60px;
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(20, 20, 30, 0.6);
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid #2a2a3e;
        }
        article h2 {
            font-size: 2.2rem;
            color: #ff9e64;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3b3b54;
        }
        article h3 {
            font-size: 1.7rem;
            color: #7aa2f7;
            margin: 30px 0 15px;
        }
        article p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(122, 162, 247, 0.15), rgba(187, 154, 247, 0.15));
            border-left: 4px solid #7aa2f7;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight strong {
            color: #ff9e64;
            font-size: 1.2rem;
        }
        .image-container {
            margin: 40px auto;
            text-align: center;
        }
        .image-container img {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .content-link {
            color: #ff7a45;
            font-weight: 600;
            border-bottom: 1px dashed #ff7a45;
        }
        .content-link:hover {
            border-bottom-style: solid;
        }
        aside {
            background: rgba(20, 20, 30, 0.6);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid #2a2a3e;
            align-self: start;
            position: sticky;
            top: 100px;
        }
        aside h3 {
            color: #ff9e64;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .sidebar-links {
            list-style: none;
        }
        .sidebar-links li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #3b3b54;
        }
        .sidebar-links li:last-child {
            border-bottom: none;
        }
        .sidebar-links a {
            display: block;
            padding: 8px 0;
        }
        .interaction-section {
            background: rgba(20, 20, 30, 0.6);
            border-radius: 12px;
            padding: 40px;
            margin: 60px 0;
            border: 1px solid #2a2a3e;
        }
        .interaction-section h2 {
            color: #ff9e64;
            margin-bottom: 30px;
            font-size: 2rem;
        }
        .rating-form, .comment-form {
            margin-bottom: 40px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0 25px;
        }
        .star {
            font-size: 2rem;
            color: #3b3b54;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star.active,
        .star:hover,
        .star:hover ~ .star {
            color: #ffcc00;
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #bb9af7;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background: rgba(30, 30, 45, 0.8);
            border: 1px solid #3b3b54;
            border-radius: 8px;
            color: #e0e0e0;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #7aa2f7;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #ff7a45, #ff9e64);
            color: #0c0c14;
            border: none;
            border-radius: 50px;
            padding: 15px 35px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 122, 69, 0.3);
        }
        .footer-links {
            background: rgba(10, 10, 20, 0.8);
            padding: 40px 0;
            border-top: 1px solid #2a2a3e;
            border-bottom: 1px solid #2a2a3e;
            margin-top: 60px;
        }
        .web-link {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #2a2a3e;
        }
        .web-link:last-child {
            border-bottom: none;
        }
        .site-footer {
            text-align: center;
            padding: 30px 0;
            color: #aaa;
            font-size: 0.95rem;
        }
        .footer-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 25px;
        }
        .copyright {
            margin-top: 20px;
        }
        .text-center { text-align: center; }
        .mb-30 { margin-bottom: 30px; }
        .mt-40 { margin-top: 40px; }
        .emoji { font-size: 1.2em; }
        .bold { font-weight: 700; color: #ff9e64; }
        .line-break { height: 1px; background: linear-gradient(90deg, transparent, #3b3b54, transparent); margin: 40px 0; }
