        * {
            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: #e0e0e0;
            background: linear-gradient(135deg, #0c1a2a 0%, #1a1a2e 50%, #16213e 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        .site-header {
            background: rgba(10, 15, 30, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #2a3f6e;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.5rem;
            color: #4ecdc4;
            text-decoration: none;
            text-shadow: 0 0 10px rgba(78, 205, 196, 0.7);
            letter-spacing: 1.5px;
            transition: all 0.3s ease;
        }
        .logo a:hover {
            color: #ff6b6b;
            text-shadow: 0 0 15px rgba(255, 107, 107, 0.8);
        }
        .logo .tagline {
            font-size: 0.85rem;
            color: #88d3ce;
            letter-spacing: 3px;
            margin-top: -5px;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #b0b7d0;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
            transition: all 0.3s;
        }
        .nav-desktop a:hover,
        .nav-desktop a.active {
            color: #4ecdc4;
            border-bottom-color: #ff6b6b;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #4ecdc4;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background: rgba(16, 22, 46, 0.98);
            backdrop-filter: blur(15px);
            flex-direction: column;
            padding: 20px;
            display: flex;
            gap: 20px;
            transform: translateY(-100%);
            opacity: 0;
            transition: transform 0.4s ease, opacity 0.4s ease;
            z-index: 999;
            border-top: 1px solid #2a3f6e;
        }
        .nav-mobile.active {
            transform: translateY(0);
            opacity: 1;
        }
        .nav-mobile a {
            color: #b0b7d0;
            text-decoration: none;
            font-size: 1.3rem;
            padding: 12px;
            border-left: 4px solid transparent;
            transition: all 0.3s;
        }
        .nav-mobile a:hover {
            color: #4ecdc4;
            border-left-color: #ff6b6b;
            background: rgba(255, 107, 107, 0.1);
            padding-left: 20px;
        }
        .breadcrumb {
            padding: 15px 0;
            color: #88a0d0;
            font-size: 0.9rem;
            margin-top: 10px;
        }
        .breadcrumb a {
            color: #88d3ce;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px 0;
        }
        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(20, 27, 50, 0.7);
            border-radius: 15px;
            padding: 40px;
            border: 1px solid #2a3f6e;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        h1 {
            color: #ffd166;
            font-size: 2.8rem;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            border-bottom: 3px solid #ff6b6b;
            padding-bottom: 15px;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
        }
        h2 {
            color: #4ecdc4;
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 5px solid #ff6b6b;
        }
        h3 {
            color: #ffb347;
            font-size: 1.6rem;
            margin: 30px 0 15px;
        }
        h4 {
            color: #88d3ce;
            font-size: 1.3rem;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #b0b7d0;
            background: rgba(42, 63, 110, 0.3);
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid #ffd166;
            margin-bottom: 35px;
        }
        strong {
            color: #ffd166;
            font-weight: 700;
        }
        em {
            color: #88d3ce;
            font-style: italic;
        }
        blockquote {
            border-left: 4px solid #ff6b6b;
            padding-left: 25px;
            margin: 30px 0;
            color: #c5cae9;
            font-style: italic;
            background: rgba(255, 107, 107, 0.05);
            padding: 20px;
            border-radius: 0 10px 10px 0;
        }
        .highlight-box {
            background: linear-gradient(to right, rgba(30, 60, 114, 0.8), rgba(42, 63, 110, 0.9));
            border: 1px solid #4ecdc4;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: inset 0 0 15px rgba(78, 205, 196, 0.2);
        }
        .tip {
            background: rgba(255, 209, 102, 0.1);
            border-left: 5px solid #ffd166;
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin: 25px 0;
        }
        .tip i {
            color: #ffd166;
            margin-right: 10px;
        }
        ul, ol {
            margin: 20px 0 20px 30px;
        }
        li {
            margin-bottom: 10px;
            padding-left: 10px;
        }
        li strong {
            color: #ffb347;
        }
        .boss-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: rgba(30, 35, 60, 0.8);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .boss-table th {
            background: linear-gradient(to right, #2a3f6e, #1e2a4a);
            color: #ffd166;
            padding: 18px 15px;
            text-align: left;
            font-size: 1.1rem;
        }
        .boss-table td {
            padding: 15px;
            border-bottom: 1px solid #3a4a7a;
            color: #d0d7f0;
        }
        .boss-table tr:hover {
            background: rgba(78, 205, 196, 0.1);
        }
        .article-image {
            margin: 35px auto;
            max-width: 800px;
            text-align: center;
        }
        .article-image img {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
            transition: transform 0.5s ease;
        }
        .article-image img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-size: 0.95rem;
            color: #88a0d0;
            margin-top: 10px;
            font-style: italic;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        @media (max-width: 1024px) {
            .sidebar {
                flex-direction: row;
                flex-wrap: wrap;
            }
            .widget {
                flex: 1 1 300px;
            }
        }
        .widget {
            background: rgba(20, 27, 50, 0.7);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid #2a3f6e;
        }
        .widget-title {
            color: #ffb347;
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3a4a7a;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 14px;
            border: 2px solid #2a3f6e;
            border-radius: 8px 0 0 8px;
            background: rgba(30, 35, 60, 0.9);
            color: #e0e0e0;
            font-size: 1rem;
        }
        .search-button {
            background: linear-gradient(to bottom, #ff6b6b, #e05555);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-button:hover {
            background: linear-gradient(to bottom, #ff8e8e, #ff6b6b);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
            transform: scale(1.2);
        }
        .rating-form .form-group {
            margin-bottom: 15px;
        }
        .rating-form input,
        .rating-form textarea {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            border: 2px solid #2a3f6e;
            background: rgba(30, 35, 60, 0.9);
            color: #e0e0e0;
            font-size: 1rem;
            margin-top: 5px;
        }
        .rating-form button {
            width: 100%;
            padding: 14px;
            background: linear-gradient(to right, #4ecdc4, #2a9d8f);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-form button:hover {
            background: linear-gradient(to right, #5edfd6, #3aada0);
        }
        .comments-section {
            margin-top: 50px;
        }
        .comment {
            background: rgba(30, 35, 60, 0.6);
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 25px;
            border-left: 4px solid #4ecdc4;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            color: #88a0d0;
            font-size: 0.9rem;
        }
        .comment-author {
            color: #ffb347;
            font-weight: bold;
        }
        .comment-form textarea {
            height: 150px;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 50px 0;
        }
        .web-link {
            background: rgba(20, 27, 50, 0.7);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #3a4a7a;
            transition: all 0.3s;
        }
        .web-link:hover {
            border-color: #4ecdc4;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        .web-link a {
            color: #88d3ce;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
        }
        .web-link a:hover {
            color: #ff6b6b;
            text-decoration: underline;
        }
        .web-link p {
            color: #b0b7d0;
            font-size: 0.95rem;
            margin-top: 10px;
            margin-bottom: 0;
        }
        .site-footer {
            background: rgba(10, 15, 30, 0.98);
            border-top: 2px solid #2a3f6e;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        .footer-section {
            flex: 1 1 250px;
        }
        .footer-section h4 {
            color: #ffd166;
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        .footer-links a {
            display: block;
            color: #b0b7d0;
            text-decoration: none;
            margin-bottom: 12px;
            transition: color 0.3s, padding-left 0.3s;
        }
        .footer-links a:hover {
            color: #4ecdc4;
            padding-left: 8px;
        }
        .copyright {
            text-align: center;
            padding: 25px 0 0;
            margin-top: 40px;
            border-top: 1px solid #2a3f6e;
            color: #88a0d0;
            font-size: 0.9rem;
            width: 100%;
        }
        .copyright a {
            color: #4ecdc4;
        }
        @media (max-width: 768px) {
            .article-content {
                padding: 25px;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .widget {
                padding: 20px;
            }
            .footer-container {
                flex-direction: column;
                gap: 30px;
            }
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .fade-in {
            animation: fadeInUp 0.8s ease-out;
        }
        @media print {
            .site-header, .sidebar, .comments-section, .site-footer, .search-form, .rating-form {
                display: none;
            }
            body {
                color: black;
                background: white;
            }
            .article-content {
                border: none;
                box-shadow: none;
                padding: 0;
            }
        }
