        * { 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: #333;
            background: linear-gradient(135deg, #f9f7fe 0%, #f0edf5 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { text-decoration: none; color: #5a4fcf; transition: all 0.3s ease; }
        a:hover { color: #3a2fbf; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 20px; }
        .site-header {
            background: #ffffff;
            box-shadow: 0 4px 20px rgba(90, 79, 207, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #5a4fcf;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i { color: #ff9a3c; }
        .logo span { background: linear-gradient(90deg, #5a4fcf, #ff9a3c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .nav-desktop { display: flex; gap: 2rem; }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #5a4fcf;
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #5a4fcf;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: white;
            padding: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-radius: 0 0 10px 10px;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a { padding: 0.8rem; border-bottom: 1px solid #eee; }
        .nav-mobile a:last-child { border-bottom: none; }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #777;
            background: #f8f9fa;
            border-bottom: 1px solid #eaeaea;
        }
        .breadcrumb a:hover { color: #3a2fbf; }
        .hero {
            text-align: center;
            padding: 3rem 1rem;
            background: linear-gradient(rgba(90, 79, 207, 0.05), rgba(255, 154, 60, 0.05));
            border-radius: 0 0 30px 30px;
            margin-bottom: 2rem;
        }
        .hero h1 {
            font-size: 2.8rem;
            color: #2d235a;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .hero p { font-size: 1.2rem; color: #555; max-width: 800px; margin: 0 auto 2rem; }
        .search-box {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(90, 79, 207, 0.15);
        }
        .search-box input {
            flex: 1;
            padding: 1.2rem 1.5rem;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-box button {
            background: linear-gradient(90deg, #5a4fcf, #3a2fbf);
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: transform 0.3s;
        }
        .search-box button:hover { transform: scale(1.05); }
        .main-content {
            flex: 1;
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-section {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        .article-section h2 {
            color: #5a4fcf;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #ff9a3c;
        }
        .article-section h3 {
            color: #3a2fbf;
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        .article-section p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-section b, strong { color: #5a4fcf; }
        .highlight {
            background: linear-gradient(90deg, rgba(90, 79, 207, 0.1), rgba(255, 154, 60, 0.1));
            border-left: 5px solid #5a4fcf;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .featured-img {
            width: 100%;
            border-radius: 15px;
            margin: 2rem auto;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: transform 0.5s;
        }
        .featured-img:hover { transform: translateY(-5px); }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            border-radius: 20px;
            padding: 1.8rem;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        }
        .widget h3 {
            color: #5a4fcf;
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #ddd;
            margin-bottom: 1rem;
        }
        .stars i { cursor: pointer; transition: color 0.2s; }
        .stars i.active { color: #ff9a3c; }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #eaeaea;
            border-radius: 10px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        textarea:focus, input:focus { border-color: #5a4fcf; outline: none; }
        .btn {
            background: linear-gradient(90deg, #5a4fcf, #3a2fbf);
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(90, 79, 207, 0.3);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin: 3rem 0;
        }
        @media (max-width: 768px) { .web-links { grid-template-columns: 1fr; } }
        .web-link {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(90, 79, 207, 0.15);
        }
        .web-link a {
            font-weight: 600;
            font-size: 1.1rem;
            color: #3a2fbf;
        }
        .site-footer {
            background: #2d235a;
            color: #ddd;
            padding: 3rem 0 1.5rem;
            margin-top: auto;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .hero h1 { font-size: 2.2rem; }
            .hero p { font-size: 1.1rem; }
            .article-section { padding: 1.5rem; }
            .footer-content { flex-direction: column; }
        }
