        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            list-style-position: inside;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .flex {
            display: flex;
            flex-wrap: wrap;
        }
        .grid {
            display: grid;
        }
        .text-center { text-align: center; }
        .text-bold { font-weight: 700; }
        .mb-1 { margin-bottom: 0.5rem; }
        .mb-2 { margin-bottom: 1rem; }
        .mb-3 { margin-bottom: 1.5rem; }
        .mb-4 { margin-bottom: 2rem; }
        .p-2 { padding: 1rem; }
        .p-3 { padding: 1.5rem; }
        .rounded { border-radius: 8px; }
        .shadow { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
        :root {
            --primary: #e74c3c;
            --secondary: #2c3e50;
            --accent: #f39c12;
            --light: #ecf0f1;
            --dark: #2c3e50;
            --success: #27ae60;
            --text: #333;
            --text-light: #7f8c8d;
        }
        .site-header {
            background-color: var(--secondary);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--accent);
        }
        .main-nav ul {
            display: flex;
            gap: 2rem;
        }
        .main-nav a {
            padding: 0.5rem 0;
            position: relative;
            font-weight: 600;
        }
        .main-nav a:hover {
            color: var(--accent);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: var(--light);
            padding: 0.8rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 0.5rem;
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .hero {
            background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1546519638-68e109498ffc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover;
            color: white;
            padding: 4rem 0;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        .cta-button {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        .cta-button:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            padding: 2rem 0;
        }
        .main-content {
            background-color: white;
            padding: 2rem;
            border-radius: 12px;
        }
        .sidebar {
            background-color: white;
            padding: 1.5rem;
            border-radius: 12px;
            align-self: start;
        }
        article h2 {
            color: var(--secondary);
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--accent);
        }
        article h3 {
            color: var(--dark);
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
        }
        article p {
            margin-bottom: 1.2rem;
            line-height: 1.7;
        }
        article ul, article ol {
            margin-bottom: 1.2rem;
            padding-left: 1.5rem;
        }
        article li {
            margin-bottom: 0.5rem;
        }
        .highlight-box {
            background-color: var(--light);
            border-left: 5px solid var(--accent);
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
        .featured-image {
            margin: 2rem 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .caption {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-top: 0.5rem;
            font-style: italic;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .search-widget h3 {
            color: var(--secondary);
            margin-bottom: 1rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #ddd;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
        }
        .search-form input:focus {
            border-color: var(--primary);
        }
        .search-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 0 1.5rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .search-form button:hover {
            background-color: #c0392b;
        }
        .comments-section, .rating-section {
            background-color: white;
            padding: 2rem;
            border-radius: 12px;
            margin-top: 2rem;
        }
        .comments-section h2, .rating-section h2 {
            color: var(--secondary);
            margin-bottom: 1.5rem;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            font-weight: 600;
            margin-bottom: 0.3rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 0.8rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--primary);
            outline: none;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.5rem;
            color: #ddd;
            cursor: pointer;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: var(--accent);
        }
        .submit-btn {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.3s ease;
            align-self: flex-start;
        }
        .submit-btn:hover {
            background-color: var(--primary);
        }
        .footer-links {
            background-color: var(--secondary);
            color: white;
            padding: 2rem 0;
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: rgba(255,255,255,0.1);
            padding: 1rem;
            border-radius: 8px;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .web-link:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-5px);
        }
        .web-link a {
            display: block;
            color: var(--light);
        }
        .web-link a:hover {
            color: var(--accent);
        }
        .site-footer {
            background-color: var(--dark);
            color: white;
            text-align: center;
            padding: 2rem 0;
        }
        .copyright {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        @media (max-width: 992px) {
            .content-area {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                background-color: var(--secondary);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                transition: left 0.5s ease;
                z-index: 999;
            }
            .main-nav.active ul {
                left: 0;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .header-container {
                padding: 0 1rem;
            }
        }
