        * { 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-color: #f8f9fa;
            max-width: 100%;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight { background-color: #fffacd; padding: 2px 4px; border-radius: 3px; }
        h1, h2, h3, h4 { color: #2c3e50; margin-bottom: 1rem; line-height: 1.3; font-weight: 700; }
        h1 { font-size: 2.8rem; margin-top: 2rem; }
        h2 { font-size: 2.2rem; margin-top: 2.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid #3498db; }
        h3 { font-size: 1.8rem; margin-top: 2rem; color: #2980b9; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        ul, ol { margin-bottom: 1.5rem; padding-left: 2rem; }
        li { margin-bottom: 0.5rem; }
        a { color: #e74c3c; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #c0392b; text-decoration: underline; }
        .site-header {
            background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%);
            color: white;
            padding: 1.5rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: #FFD700;
            font-size: 2.2rem;
            font-weight: 900;
            text-decoration: none;
            font-family: 'Arial Black', sans-serif;
            text-shadow: 3px 3px 0 #e74c3c, 6px 6px 0 rgba(0,0,0,0.2);
            letter-spacing: -1px;
        }
        .logo a span { color: #3498db; }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #ecf0f1;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .desktop-nav a:hover,
        .desktop-nav a.active {
            color: #FFD700;
            border-bottom-color: #FFD700;
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: #2c3e50;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 10px 15px rgba(0,0,0,0.2);
        }
        .mobile-nav.active { display: flex; }
        .mobile-nav a {
            color: #ecf0f1;
            padding: 1rem;
            border-bottom: 1px solid #34495e;
            text-decoration: none;
            font-weight: 600;
        }
        .mobile-nav a:hover { background-color: #34495e; color: #FFD700; }
        .breadcrumb {
            background-color: #ecf0f1;
            padding: 1rem 0;
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            padding-left: 0;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin: 0 10px;
            color: #7f8c8d;
        }
        .breadcrumb a { color: #3498db; }
        .breadcrumb a:hover { color: #2980b9; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        article { background-color: white; padding: 2.5rem; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
        .article-meta { color: #7f8c8d; margin-bottom: 2rem; font-style: italic; border-left: 4px solid #3498db; padding-left: 1rem; }
        .hero-image {
            margin: 2rem 0;
            text-align: center;
        }
        .hero-image img {
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            border: 5px solid #2c3e50;
        }
        .img-caption {
            margin-top: 0.5rem;
            font-style: italic;
            color: #666;
            font-size: 0.95rem;
        }
        .sidebar {
            background-color: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget { margin-bottom: 2.5rem; }
        .widget-title {
            font-size: 1.4rem;
            color: #2c3e50;
            padding-bottom: 0.75rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid #f1c40f;
        }
        .search-form { display: flex; }
        .search-form input[type="search"] {
            flex-grow: 1;
            padding: 0.9rem 1rem;
            border: 2px solid #ddd;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
            outline: none;
        }
        .search-form input[type="search"]:focus { border-color: #3498db; }
        .search-form button {
            background-color: #e74c3c;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background-color 0.3s;
        }
        .search-form button:hover { background-color: #c0392b; }
        .rating-form, .comment-form { margin-top: 1.5rem; }
        .stars {
            display: flex;
            gap: 5px;
            margin-bottom: 1rem;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star.active,
        .star:hover,
        .star:hover ~ .star { color: #FFD700; }
        .form-group { margin-bottom: 1.2rem; }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #555;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.9rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #3498db;
        }
        .form-group textarea { min-height: 120px; resize: vertical; }
        .submit-btn {
            background-color: #2ecc71;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 100%;
        }
        .submit-btn:hover { background-color: #27ae60; }
        .internal-links {
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            padding: 3rem 0;
            margin: 3rem 0;
            border-top: 1px solid #dee2e6;
            border-bottom: 1px solid #dee2e6;
        }
        .web-link {
            display: inline-block;
            background: white;
            margin: 0.8rem;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            border-left: 5px solid #3498db;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 18px rgba(0,0,0,0.12);
        }
        .site-footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo { font-size: 2rem; font-weight: 900; color: #FFD700; margin-bottom: 1rem; }
        .footer-links h4 { color: #FFD700; margin-bottom: 1.2rem; font-size: 1.3rem; }
        .footer-links ul { list-style: none; padding-left: 0; }
        .footer-links li { margin-bottom: 0.7rem; }
        .footer-links a { color: #bdc3c7; text-decoration: none; }
        .footer-links a:hover { color: #FFD700; }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #34495e;
            color: #95a5a6;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.9rem; }
            h3 { font-size: 1.6rem; }
            .header-content { flex-wrap: wrap; }
            .desktop-nav { display: none; }
            .mobile-nav-toggle { display: block; }
            article, .sidebar { padding: 1.5rem; }
            .main-content { gap: 2rem; }
            .footer-content { grid-template-columns: 1fr; text-align: center; }
        }
