* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #ff9900;
            --secondary-color: #1a1a2e;
            --accent-color: #00cc66;
            --text-color: #f0f0f0;
            --light-bg: #2d2d44;
            --dark-bg: #161625;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-color);
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
            min-height: 100vh;
        }
        header {
            background-color: rgba(22, 22, 37, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
            padding: 1rem 2rem;
        }
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--primary-color), #ff6600);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent-color);
            font-size: 2.5rem;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: var(--transition);
            position: relative;
        }
        .nav-desktop a:hover {
            color: var(--primary-color);
            background-color: rgba(255, 153, 0, 0.1);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background-color: var(--primary-color);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        .nav-desktop a:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-color);
            cursor: pointer;
            padding: 0.5rem;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--dark-bg);
            flex-direction: column;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: var(--text-color);
            text-decoration: none;
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }
        .nav-mobile a:hover {
            color: var(--primary-color);
            background-color: rgba(255, 153, 0, 0.1);
            padding-left: 1.5rem;
        }
        .breadcrumb {
            max-width: 1400px;
            margin: 1rem auto;
            padding: 0 2rem;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        .search-container {
            background-color: var(--light-bg);
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 2px solid rgba(255, 153, 0, 0.3);
            border-radius: 50px;
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--text-color);
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.2);
        }
        .search-button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 1rem 2rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-button:hover {
            background-color: #ff8800;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(255, 136, 0, 0.3);
        }
        .article-content {
            background-color: rgba(45, 45, 68, 0.7);
            border-radius: 15px;
            padding: 3rem;
            box-shadow: var(--shadow);
            backdrop-filter: blur(5px);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            line-height: 1.3;
        }
        h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1.5rem;
            color: var(--accent-color);
            border-left: 5px solid var(--primary-color);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
            color: #ffcc80;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 153, 0, 0.15);
            border-left: 4px solid var(--primary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .highlight strong {
            color: var(--primary-color);
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 5px;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-item {
            background-color: rgba(0, 204, 102, 0.1);
            border: 2px solid var(--accent-color);
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            transition: var(--transition);
        }
        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 204, 102, 0.2);
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--accent-color);
            display: block;
            margin-bottom: 0.5rem;
        }
        .stat-label {
            font-size: 1.1rem;
            color: #ccc;
        }
        .article-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            border: 3px solid rgba(255, 153, 0, 0.3);
            transition: var(--transition);
        }
        .article-image:hover {
            transform: scale(1.01);
            border-color: var(--primary-color);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: -1.5rem;
            margin-bottom: 2rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: var(--light-bg);
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
        }
        .widget-title {
            color: var(--primary-color);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid rgba(255, 153, 0, 0.3);
        }
        .rating-container {
            text-align: center;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 1.5rem;
        }
        .rating-star {
            font-size: 2.2rem;
            color: #555;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-star:hover,
        .rating-star.active {
            color: gold;
            transform: scale(1.2);
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-input {
            padding: 0.8rem;
            border-radius: 5px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--text-color);
        }
        .rating-submit {
            background-color: var(--accent-color);
            color: white;
            border: none;
            border-radius: 5px;
            padding: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-submit:hover {
            background-color: #00b359;
        }
        .comments-container {
            background-color: var(--light-bg);
            border-radius: 10px;
            padding: 2rem;
            margin-top: 3rem;
            box-shadow: var(--shadow);
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }
        .comment-input {
            padding: 1rem;
            border-radius: 5px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--text-color);
            font-family: inherit;
            min-height: 150px;
            resize: vertical;
        }
        .comment-submit {
            align-self: flex-start;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 5px;
            padding: 1rem 2.5rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-submit:hover {
            background-color: #ff8800;
            transform: translateY(-2px);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 0 2rem;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }
        .web-link {
            background-color: rgba(255, 153, 0, 0.1);
            border: 1px solid rgba(255, 153, 0, 0.3);
            border-radius: 8px;
            padding: 1.2rem;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255, 153, 0, 0.2);
            transform: translateX(5px);
        }
        .web-link a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background-color: var(--dark-bg);
            padding: 3rem 2rem 2rem;
            margin-top: 4rem;
            border-top: 3px solid var(--primary-color);
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--primary-color), #ff6600);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                padding: 0.8rem 1rem;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .container {
                padding: 1rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2rem;
            }
            .breadcrumb {
                padding: 0 1rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-button {
                justify-content: center;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: 1fr;
                padding: 0 1rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            p {
                font-size: 1rem;
            }
            .logo {
                font-size: 1.8rem;
            }
            .logo i {
                font-size: 2rem;
            }
            .article-content {
                padding: 1rem;
            }
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .important {
            animation: pulse 2s infinite;
            color: #ff3333;
            font-weight: 900;
        }
        .text-center {
            text-align: center;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .d-block {
            display: block;
        }
        .d-flex {
            display: flex;
            align-items: center;
            gap: 10px;
        }
