        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #4a1d7c;
            --secondary: #ff9500;
            --accent: #00c9b7;
            --dark: #2d1150;
            --light: #f8f5ff;
            --text: #333;
            --text-light: #666;
            --shadow: 0 4px 12px rgba(74, 29, 124, 0.1);
            --radius: 12px;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text);
            background: linear-gradient(135deg, #f8f5ff 0%, #ffffff 100%);
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul {
            list-style: none;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        .site-header {
            background: linear-gradient(to right, var(--dark), var(--primary));
            color: white;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .logo i {
            color: var(--secondary);
        }
        .logo-text {
            background: linear-gradient(to right, #ff9500, #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .main-nav ul {
            display: flex;
            gap: 30px;
        }
        .nav-link {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 15px;
            border-radius: 50px;
            transition: var(--transition);
        }
        .nav-link:hover, .nav-link.active {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background: var(--light);
            padding: 15px 20px;
            border-bottom: 1px solid #eae2f8;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: var(--secondary);
        }
        .hero {
            background: linear-gradient(rgba(45, 17, 80, 0.9), rgba(74, 29, 124, 0.8)), url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 100px 20px;
            border-radius: 0 0 var(--radius) var(--radius);
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.95;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .main-content {
            background: white;
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        h2 {
            color: var(--primary);
            font-size: 2.2rem;
            margin: 40px 0 20px;
            padding-bottom: 15px;
            border-bottom: 3px solid var(--accent);
        }
        h3 {
            color: var(--dark);
            font-size: 1.7rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            color: var(--text);
        }
        .highlight {
            background: linear-gradient(120deg, #e0f7fa 0%, #f3e5f5 100%);
            border-left: 5px solid var(--accent);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .info-box {
            background: var(--light);
            border: 2px solid var(--secondary);
            border-radius: var(--radius);
            padding: 25px;
            margin: 30px 0;
        }
        .emphasize {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.15rem;
        }
        .keyword {
            background: var(--primary);
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        .featured-image {
            width: 100%;
            border-radius: var(--radius);
            overflow: hidden;
            margin: 35px 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border: 5px solid white;
        }
        .featured-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: white;
            padding: 25px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .widget h3 {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget h3 i {
            color: var(--secondary);
        }
        .search-box {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid var(--accent);
            border-right: none;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background: var(--accent);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: var(--primary);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 15px 0;
            font-size: 1.8rem;
            color: #ffd700;
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-form input, .rating-form textarea {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            border: 1px solid #ddd;
            border-radius: var(--radius);
        }
        .rating-form button {
            width: 100%;
            background: var(--secondary);
            color: white;
            border: none;
            padding: 14px;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-form button:hover {
            background: var(--primary);
        }
        .comment {
            border-bottom: 1px solid #eee;
            padding: 20px 0;
        }
        .comment:last-child {
            border-bottom: none;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            color: var(--text-light);
            font-size: 0.9rem;
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 15px;
            border: 2px solid #eae2f8;
            border-radius: var(--radius);
            resize: vertical;
            margin-bottom: 15px;
        }
        .footer-links {
            background: var(--dark);
            padding: 50px 20px;
            margin-top: 60px;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: var(--radius);
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--accent);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #fff;
            font-weight: 600;
            display: block;
            padding: 10px 0;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
        }
        .web-link a:last-child {
            border-bottom: none;
        }
        .web-link a:hover {
            color: var(--secondary);
            padding-left: 10px;
        }
        .copyright {
            background: #1a0a2e;
            color: #aaa;
            text-align: center;
            padding: 25px;
            font-size: 0.95rem;
        }
        .copyright a {
            color: var(--accent);
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background: var(--dark);
                width: 100%;
                padding: 30px;
                transition: left 0.4s ease;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
                border-top: 2px solid var(--secondary);
            }
            .main-nav.active ul {
                left: 0;
            }
            .nav-link {
                padding: 15px;
                border-radius: 8px;
            }
            .hero {
                padding: 70px 20px;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .main-content {
                padding: 25px;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.9rem;
            }
            .header-container {
                padding: 15px;
            }
            .logo a {
                font-size: 1.8rem;
            }
            .breadcrumb {
                padding: 12px 15px;
                font-size: 0.85rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .main-content, .sidebar, .hero {
            animation: fadeIn 0.8s ease-out;
        }
