        * { 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, #f5f7fa 0%, #e4e8f0 100%);
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a { color: #6a11cb; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #2575fc; }
        img { max-width: 100%; height: auto; display: block; }
        .site-header {
            background: linear-gradient(90deg, #2b2d42, #4a4e69);
            color: white;
            padding: 1.5rem 1rem;
            border-radius: 0 0 12px 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            margin-bottom: 2rem;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 1rem;
        }
        .logo a { color: #ffd166; text-shadow: 2px 2px 0 #ef476f; }
        .logo a:hover { color: #ffedcc; }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .main-nav a {
            color: #edf2f4;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 6px;
        }
        .main-nav a:hover, .main-nav a.active {
            background: #ef476f;
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .search-box {
            display: flex;
            margin-top: 1rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .search-box input {
            flex: 1;
            padding: 0.75rem;
            border: none;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-box button {
            background: #06d6a0;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
        }
        .search-box button:hover { background: #05b585; }
        .breadcrumb {
            padding: 1rem;
            background: #edf2f4;
            border-radius: 8px;
            margin: 1.5rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #4a4e69; }
        .breadcrumb a:hover { text-decoration: underline; }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 768px) {
            .content-wrapper { grid-template-columns: 1fr; }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 6px 25px rgba(0,0,0,0.08);
        }
        h1 {
            color: #2b2d42;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid #ef476f;
            padding-left: 1rem;
        }
        h2 {
            color: #4a4e69;
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #8d99ae;
        }
        h3 {
            color: #6a11cb;
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, #ffd16630 0%, #ffd16610 100%);
            border-left: 4px solid #ffd166;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji { font-size: 1.2em; margin-right: 0.3em; }
        .float-img {
            float: right;
            margin: 0 0 1.5rem 1.5rem;
            max-width: 350px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        @media (max-width: 600px) {
            .float-img { float: none; margin: 1.5rem auto; max-width: 100%; }
        }
        aside {
            background: white;
            padding: 1.8rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.06);
            align-self: start;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            font-size: 1.4rem;
            color: #2b2d42;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #eee;
        }
        .comment-form, .rating-form {
            background: #f8f9fa;
            padding: 1.8rem;
            border-radius: 12px;
            margin-top: 2rem;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #4a4e69;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
        }
        textarea { min-height: 120px; resize: vertical; }
        button[type="submit"] {
            background: linear-gradient(90deg, #6a11cb, #2575fc);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s;
        }
        button[type="submit"]:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ffd700;
            margin-bottom: 1rem;
        }
        .stars i { cursor: pointer; }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .web-link {
            background: white;
            padding: 1.2rem;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .web-link a {
            font-weight: 600;
            color: #2b2d42;
            display: block;
        }
        .web-link a:hover { color: #6a11cb; }
        .site-footer {
            text-align: center;
            padding: 2.5rem;
            background: #2b2d42;
            color: #edf2f4;
            border-radius: 12px 12px 0 0;
            margin-top: 3rem;
        }
        .copyright {
            margin-top: 1.5rem;
            font-size: 0.9rem;
            color: #8d99ae;
        }
        @media (max-width: 768px) {
            .main-nav ul {
                flex-direction: column;
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #4a4e69;
                padding: 1rem;
                border-radius: 0 0 12px 12px;
                z-index: 1000;
            }
            .main-nav.active ul { display: flex; }
            .hamburger { display: block; }
            .nav-container { position: relative; }
            h1 { font-size: 2.2rem; }
            article { padding: 1.8rem; }
        }
