        * { 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%, #e4edf5 100%);
            max-width: 100%;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: 'Georgia', serif; color: #2c3e50; margin-bottom: 1rem; font-weight: 700; }
        h1 { font-size: 2.8rem; line-height: 1.2; margin-top: 1.5rem; }
        h2 { font-size: 2.2rem; border-bottom: 3px solid #3498db; padding-bottom: 0.5rem; }
        h3 { font-size: 1.8rem; color: #2980b9; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        .lead { font-size: 1.3rem; color: #555; font-weight: 300; }
        strong { color: #2c3e50; font-weight: 700; }
        em { font-style: italic; }
        a { color: #3498db; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #e74c3c; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }
        @media (min-width: 992px) {
            .main-grid { grid-template-columns: 3fr 1fr; }
        }
        .site-header {
            background: linear-gradient(to right, #2c3e50, #4a6491);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a { color: white; }
        .logo span { color: #f39c12; }
        .hamburger {
            display: block;
            cursor: pointer;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
        }
        @media (min-width: 768px) {
            .hamburger { display: none; }
        }
        .nav-menu {
            display: none;
            flex-direction: column;
            width: 100%;
            background: #2c3e50;
            position: absolute;
            top: 100%;
            left: 0;
            z-index: 999;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .nav-menu.active { display: flex; }
        @media (min-width: 768px) {
            .nav-menu {
                display: flex;
                flex-direction: row;
                position: static;
                background: none;
                box-shadow: none;
                width: auto;
            }
        }
        .nav-menu a {
            color: white;
            padding: 1rem 1.5rem;
            display: block;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-weight: 600;
        }
        @media (min-width: 768px) {
            .nav-menu a {
                border: none;
                padding: 0.5rem 1.2rem;
                border-radius: 4px;
            }
            .nav-menu a:hover { background: rgba(255,255,255,0.1); }
        }
        .breadcrumb {
            padding: 1rem 0;
            background: #ecf0f1;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #7f8c8d; }
        .breadcrumb a:hover { color: #3498db; }
        .breadcrumb span { color: #95a5a6; }
        .main-content {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            margin: 2rem 0;
        }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.06);
            align-self: start;
        }
        .search-box {
            margin-bottom: 2.5rem;
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid #3498db;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.9rem 1rem;
            border: 2px solid #ddd;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
            outline: none;
        }
        .search-form input:focus { border-color: #3498db; }
        .search-form button {
            background: #3498db;
            color: white;
            border: none;
            padding: 0 1.8rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-form button:hover { background: #2980b9; }
        .comment-form, .rating-form {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            margin: 2.5rem 0;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #2c3e50;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.9rem;
            border: 2px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #3498db;
            outline: none;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, #3498db, #2ecc71);
            color: white;
            padding: 0.9rem 2rem;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(52, 152, 219, 0.4);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            font-size: 2rem;
            color: #ddd;
        }
        .star-rating input { display: none; }
        .star-rating label {
            cursor: pointer;
            padding: 0 0.2rem;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label { color: #f39c12; }
        .featured-img {
            margin: 2.5rem 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border: 1px solid #eee;
        }
        .web-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 3rem 0;
            padding: 2rem;
            background: #2c3e50;
            border-radius: 10px;
        }
        .web-link {
            flex: 1 1 calc(50% - 1rem);
            min-width: 200px;
        }
        .web-link a {
            display: block;
            background: rgba(255,255,255,0.05);
            color: #ecf0f1;
            padding: 1rem;
            border-radius: 6px;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s;
        }
        .web-link a:hover {
            background: rgba(255,255,255,0.12);
            color: #f39c12;
            transform: translateY(-3px);
        }
        .site-footer {
            background: #1a252f;
            color: #bdc3c7;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #34495e;
            width: 100%;
            font-size: 0.9rem;
            color: #95a5a6;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .main-content, .sidebar { padding: 1.5rem; }
            .web-link { flex: 1 1 100%; }
        }
