        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            padding-top: 80px; 
        }
        a {
            color: #c72e2e;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #8a1c1c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        header {
            background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
            color: #fff;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffcc00;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Impact', 'Arial Black', sans-serif;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo:hover {
            color: #ffdd44;
            text-decoration: none;
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #fff;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background-color: #c72e2e;
            text-decoration: none;
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #2a2a2a;
            padding: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: #fff;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid #444;
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            border-bottom: 1px solid #ddd;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb span {
            color: #888;
        }
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1.5rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .container {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: #fff;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        h1 {
            font-size: 2.8rem;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 4px solid #c72e2e;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            color: #2c3e50;
            margin: 2.5rem 0 1.2rem;
            padding-left: 0.5rem;
            border-left: 5px solid #ffcc00;
        }
        h3 {
            font-size: 1.6rem;
            color: #34495e;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #5d6d7e;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .lead {
            font-size: 1.3rem;
            color: #555;
            font-weight: 500;
            background: #f8f9fa;
            padding: 1.5rem;
            border-left: 4px solid #3498db;
            border-radius: 0 8px 8px 0;
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: #fffacd;
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid #ffcc00;
            margin: 2rem 0;
        }
        .quote {
            font-style: italic;
            color: #7f8c8d;
            border-left: 4px solid #c72e2e;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-size: 1.2rem;
        }
        .image-container {
            margin: 2.5rem auto;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
            border: 1px solid #ddd;
        }
        .caption {
            font-size: 0.95rem;
            color: #666;
            margin-top: 0.5rem;
            font-style: italic;
        }
        .link-list {
            background: #f1f8ff;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .link-list ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 0.8rem;
        }
        .link-list li:before {
            content: "🔗";
            margin-right: 0.5rem;
        }
        aside {
            background: #fff;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar-section {
            margin-bottom: 2rem;
        }
        .sidebar-section h3 {
            font-size: 1.4rem;
            color: #2c3e50;
            border-bottom: 2px solid #ffcc00;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .search-form {
            display: flex;
            margin-bottom: 1.5rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #c72e2e;
            color: white;
            border: none;
            padding: 0.8rem 1.2rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #a82525;
        }
        .comment-form, .rating-form {
            background: #f9f9f9;
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            margin-bottom: 1.5rem;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #444;
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 1rem;
            font-family: inherit;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ffcc00;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .submit-btn {
            background-color: #2c3e50;
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 100%;
        }
        .submit-btn:hover {
            background-color: #1a252f;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #7f8c8d;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px dashed #ddd;
        }
        footer {
            background: #1a1a1a;
            color: #ccc;
            padding: 3rem 2rem 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: #ffcc00;
            margin-bottom: 1.2rem;
            font-size: 1.4rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1rem;
        }
        .friend-links a {
            color: #aaa;
            background: #2a2a2a;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-size: 0.9rem;
        }
        .friend-links a:hover {
            background: #c72e2e;
            color: #fff;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #888;
        }
        @media (max-width: 1024px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .header-container { padding: 1rem; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-nav-toggle { display: block; }
            .container { padding: 0 1rem; }
            article { padding: 1.8rem; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            .breadcrumb { padding: 0.8rem 1rem; }
            aside { position: static; }
        }
        @media (max-width: 480px) {
            .my-logo { font-size: 1.8rem; }
            h1 { font-size: 1.8rem; }
            .lead { font-size: 1.1rem; }
            .footer-content { grid-template-columns: 1fr; }
        }
        .text-bold { font-weight: 700; }
        .text-italic { font-style: italic; }
        .text-center { text-align: center; }
        .emoji { font-size: 1.2em; margin-right: 0.3rem; }
