        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(90deg, #1a237e 0%, #283593 100%);
            color: white;
            padding: 1rem 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 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffd700;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #ff5722;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            border-radius: 2px;
            transition: 0.3s;
        }
        .breadcrumb {
            background: #e8eaf6;
            padding: 1rem 0;
            margin-bottom: 2rem;
            border-bottom: 1px solid #c5cae9;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb a {
            color: #3949ab;
            text-decoration: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: #757575;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 768px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        .article-header {
            margin-bottom: 2.5rem;
            border-bottom: 2px solid #e0e0e0;
            padding-bottom: 1.5rem;
        }
        .article-header h1 {
            font-size: 2.5rem;
            color: #1a237e;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        .meta-info {
            display: flex;
            gap: 1.5rem;
            color: #666;
            font-size: 0.9rem;
            flex-wrap: wrap;
        }
        .meta-info span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .content-section {
            margin-bottom: 3rem;
        }
        h2 {
            color: #283593;
            font-size: 1.8rem;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffd700;
        }
        h3 {
            color: #3949ab;
            font-size: 1.4rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(90deg, #e3f2fd, #bbdefb);
            padding: 1.5rem;
            border-left: 4px solid #2196f3;
            border-radius: 0 8px 8px 0;
            margin: 2rem 0;
        }
        .stats-box {
            background: #f5f5f5;
            border-radius: 8px;
            padding: 1.5rem;
            margin: 2rem 0;
            border: 1px solid #e0e0e0;
        }
        .stats-box ul {
            list-style-position: inside;
            margin-left: 1rem;
        }
        .stats-box li {
            margin-bottom: 0.8rem;
        }
        .article-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        .article-image:hover {
            transform: scale(1.01);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: -1rem;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }
        .user-actions {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid #dee2e6;
        }
        .action-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: #495057;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #ced4da;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #2196f3;
            box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .rating {
            display: flex;
            gap: 0.5rem;
            direction: rtl;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating label:hover,
        .rating label:hover ~ label,
        .rating input:checked ~ label {
            color: #ffd700;
        }
        button {
            background: linear-gradient(90deg, #2196f3, #1976d2);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        button:hover {
            background: linear-gradient(90deg, #1976d2, #1565c0);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(33, 150, 243, 0.2);
        }
        aside {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar-section {
            margin-bottom: 2.5rem;
        }
        .sidebar-section h3 {
            color: #1a237e;
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffd700;
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
        }
        .related-links a {
            color: #3949ab;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: color 0.3s;
        }
        .related-links a:hover {
            color: #ff5722;
        }
        .exclusive-data {
            background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid #a5d6a7;
        }
        .long-tail-links {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        .long-tail-links h2 {
            color: #1a237e;
            margin-bottom: 1.5rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background: #f8f9fa;
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 4px solid #2196f3;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: #e3f2fd;
            transform: translateX(5px);
        }
        .web-link a {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 500;
            display: block;
        }
        .web-link a:hover {
            color: #2196f3;
        }
        footer {
            background: linear-gradient(90deg, #1a237e 0%, #283593 100%);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: #ffd700;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #bbdefb;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bbdefb;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 1rem;
            }
            .article-header h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: #1a237e;
                flex-direction: column;
                padding: 2rem;
                gap: 1rem;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            }
            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            .article-header h1 {
                font-size: 1.8rem;
            }
            article {
                padding: 1.5rem;
            }
            .web-links-container {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .meta-info {
                flex-direction: column;
                gap: 0.5rem;
            }
            .article-header h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 3px;
        }
        .important {
            background: linear-gradient(90deg, #fff9c4, #fff59d);
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid #ffd54f;
            margin: 1.5rem 0;
            font-weight: 600;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .content-section {
            animation: fadeInUp 0.6s ease-out;
        }
