        * {
            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: #f5f7fa;
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            color: #0077cc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff4d00;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
        }
        .site-header {
            background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
            color: #fff;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            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;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-family: 'Arial Black', sans-serif;
            background: linear-gradient(90deg, #ff4d00, #ffcc00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .logo a:hover {
            background: linear-gradient(90deg, #ffcc00, #ff4d00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #e0e0ff;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover {
            color: #ffcc00;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #ff4d00;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #2d2d44;
            padding: 0.8rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        .search-section {
            background: linear-gradient(90deg, #2d2d44, #3a3a5e);
            padding: 2rem 0;
            text-align: center;
        }
        .search-box {
            max-width: 600px;
            margin: 0 auto;
        }
        .search-box h2 {
            color: #fff;
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1rem;
            outline: none;
        }
        .search-button {
            background: linear-gradient(90deg, #ff4d00, #ff9900);
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: background 0.3s ease;
        }
        .search-button:hover {
            background: linear-gradient(90deg, #ff9900, #ff4d00);
        }
        .main-content {
            padding: 3rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: #fff;
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        article h1 {
            font-size: 2.8rem;
            color: #1a1a2e;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .article-meta {
            color: #666;
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .article-meta span {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .article-meta i {
            color: #ff4d00;
        }
        .article-content h2, .article-content h3 {
            color: #2d2d44;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #f0f0f0;
        }
        .article-content h2 {
            font-size: 2rem;
        }
        .article-content h3 {
            font-size: 1.6rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fff9e6;
            border-left: 5px solid #ffcc00;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .image-wrapper {
            margin: 2.5rem auto;
            text-align: center;
        }
        .image-wrapper img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .image-wrapper img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .inline-link {
            font-weight: 700;
            color: #ff4d00;
            border-bottom: 1px dotted #ff4d00;
        }
        .inline-link:hover {
            border-bottom: 2px solid #ff4d00;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: #fff;
            border-radius: 10px;
            padding: 1.8rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            color: #2d2d44;
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid #ffcc00;
            font-size: 1.4rem;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            margin-bottom: 1rem;
        }
        .stars .star:hover,
        .stars .star:hover ~ .star {
            color: #ddd;
        }
        .stars[data-rating="1"] .star:nth-child(-n+1) { color: #ffcc00; }
        .stars[data-rating="2"] .star:nth-child(-n+2) { color: #ffcc00; }
        .stars[data-rating="3"] .star:nth-child(-n+3) { color: #ffcc00; }
        .stars[data-rating="4"] .star:nth-child(-n+4) { color: #ffcc00; }
        .stars[data-rating="5"] .star:nth-child(-n+5) { color: #ffcc00; }
        .rating-submit {
            background: #2d2d44;
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .rating-submit:hover {
            background: #ff4d00;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-submit {
            background: linear-gradient(90deg, #0077cc, #00aaff);
            color: white;
            border: none;
            padding: 0.9rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .comment-submit:hover {
            background: linear-gradient(90deg, #00aaff, #0077cc);
        }
        .internal-links {
            background: #2d2d44;
            color: #fff;
            padding: 3rem 0;
            margin-top: 2rem;
        }
        .internal-links h2 {
            text-align: center;
            margin-bottom: 2rem;
            font-size: 2rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            padding: 1.5rem;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ffcc00;
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
            margin-bottom: 0.5rem;
        }
        .web-link p {
            color: #ccc;
            font-size: 0.95rem;
        }
        .site-footer {
            background: #0a0a0f;
            color: #aaa;
            padding: 3rem 0 1.5rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff4d00, #ffcc00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .footer-copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #777;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #1a1a2e;
                padding: 1rem;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            .main-nav.active ul {
                display: flex;
            }
            .main-nav ul li {
                margin: 0.5rem 0;
            }
            article {
                padding: 2rem;
            }
            article h1 {
                font-size: 2.2rem;
            }
        }
