        * { 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: #f0e6d6;
            background: linear-gradient(135deg, #1a0f1e 0%, #2d1b3d 50%, #1a0f1e 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        a { color: #c79cff; text-decoration: none; transition: color 0.3s ease, text-shadow 0.3s ease; }
        a:hover { color: #ff9ed8; text-shadow: 0 0 8px rgba(255, 158, 216, 0.7); }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
        .site-header {
            background: rgba(26, 15, 30, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #4a2a5c;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-family: 'Georgia', serif;
            font-size: 2.2rem;
            font-weight: bold;
            background: linear-gradient(to right, #c79cff, #ff9ed8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 15px rgba(199, 156, 255, 0.3);
        }
        .logo a { background: none; }
        .nav-desktop { display: flex; gap: 2rem; }
        .nav-desktop a { font-weight: 600; font-size: 1.1rem; padding: 0.5rem 0; position: relative; }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ff9ed8;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after { width: 100%; }
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            color: #f0e6d6;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(42, 23, 52, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid #4a2a5c;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a { padding: 1rem; border-bottom: 1px solid #3a2a4a; font-size: 1.1rem; }
        .nav-mobile a:last-child { border-bottom: none; }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #b0a0c0;
            border-bottom: 1px solid #3a2a4a;
            margin-bottom: 2rem;
        }
        .breadcrumb a { color: #d0b0f0; }
        .main-layout {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-layout { grid-template-columns: 1fr; }
        }
        .article-content {
            background: rgba(30, 20, 40, 0.7);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #4a2a5c;
        }
        .article-content h1 {
            font-size: 2.8rem;
            color: #ffccff;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 0 10px rgba(255, 204, 255, 0.5);
        }
        .article-content h2 {
            font-size: 2rem;
            color: #c79cff;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #5a3a6c;
        }
        .article-content h3 {
            font-size: 1.5rem;
            color: #ff9ed8;
            margin: 2rem 0 1rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content strong { color: #ffcc99; font-weight: 700; }
        .article-content em { color: #a6ffd8; font-style: italic; }
        .article-content blockquote {
            border-left: 4px solid #c79cff;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #d0c0e8;
            background: rgba(74, 42, 92, 0.3);
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
        }
        .highlight-box {
            background: linear-gradient(to right, rgba(74, 42, 92, 0.8), rgba(42, 23, 52, 0.8));
            border-left: 5px solid #ff9ed8;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .feature-img {
            width: 100%;
            border-radius: 10px;
            border: 3px solid #5a3a6c;
            margin: 2rem auto;
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: rgba(30, 20, 40, 0.7);
            border-radius: 15px;
            padding: 1.5rem;
            border: 1px solid #4a2a5c;
        }
        .sidebar-widget h3 {
            color: #ffccff;
            margin-bottom: 1rem;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar-widget h3 i { color: #c79cff; }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-input, .form-textarea, .form-select {
            width: 100%;
            padding: 0.8rem 1rem;
            background: rgba(42, 23, 52, 0.8);
            border: 1px solid #5a3a6c;
            border-radius: 8px;
            color: #f0e6d6;
            font-size: 1rem;
        }
        .form-textarea { min-height: 120px; resize: vertical; }
        .form-input:focus, .form-textarea:focus, .form-select:focus {
            outline: none;
            border-color: #c79cff;
            box-shadow: 0 0 0 2px rgba(199, 156, 255, 0.3);
        }
        .btn {
            background: linear-gradient(to right, #8a4dbb, #c79cff);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            font-size: 1rem;
        }
        .btn:hover {
            background: linear-gradient(to right, #c79cff, #ff9ed8);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(199, 156, 255, 0.4);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 2rem;
            color: #5a3a6c;
            margin: 1rem 0;
        }
        .star-rating label { cursor: pointer; }
        .star-rating input { display: none; }
        .star-rating label .fa-star { transition: color 0.2s; }
        .star-rating input:checked ~ label .fa-star,
        .star-rating label:hover .fa-star,
        .star-rating label:hover ~ label .fa-star { color: #ffcc00; }
        .internal-links {
            background: rgba(26, 15, 30, 0.9);
            padding: 2.5rem 0;
            margin-top: 3rem;
            border-top: 2px solid #4a2a5c;
            border-bottom: 2px solid #4a2a5c;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background: rgba(58, 42, 74, 0.6);
            padding: 1rem;
            border-radius: 8px;
            border-left: 4px solid #c79cff;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .web-link:hover {
            background: rgba(74, 42, 92, 0.8);
            transform: translateX(5px);
        }
        .web-link a { display: block; font-weight: 600; }
        .site-footer {
            background: rgba(20, 10, 25, 0.95);
            padding: 3rem 0 1.5rem;
            text-align: center;
            margin-top: 3rem;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }
        .copyright {
            color: #b0a0c0;
            font-size: 0.9rem;
            border-top: 1px solid #3a2a4a;
            padding-top: 1.5rem;
            width: 100%;
        }
        @media (max-width: 768px) {
            .hamburger-btn { display: block; }
            .nav-desktop { display: none; }
            .article-content h1 { font-size: 2.2rem; }
            .article-content h2 { font-size: 1.8rem; }
            .article-content { padding: 1.5rem; }
            .main-layout { gap: 2rem; }
            .web-links-grid { grid-template-columns: 1fr; }
        }
