        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #1a1a2e;
            --secondary-color: #16213e;
            --accent-color: #0f4c75;
            --highlight-color: #00a8cc;
            --text-primary: #e6e6e6;
            --text-secondary: #b3b3b3;
            --border-color: #2d4059;
            --card-bg: rgba(22, 33, 62, 0.8);
            --transition-speed: 0.3s;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-primary);
            background: linear-gradient(135deg, var(--primary-color) 0%, #0d1b2a 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(10, 15, 30, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--highlight-color);
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--highlight-color);
            text-decoration: none;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            transition: all var(--transition-speed);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover {
            color: #fff;
            text-shadow: 0 0 15px var(--highlight-color);
        }
        .logo i {
            font-size: 2rem;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all var(--transition-speed);
            position: relative;
        }
        .desktop-nav a:hover,
        .desktop-nav a.active {
            color: var(--highlight-color);
            background-color: rgba(15, 76, 117, 0.2);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background-color: var(--highlight-color);
            transition: all var(--transition-speed);
            transform: translateX(-50%);
        }
        .desktop-nav a:hover::after {
            width: 80%;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            color: var(--text-primary);
            cursor: pointer;
            background: none;
            border: none;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: rgba(10, 15, 30, 0.98);
            flex-direction: column;
            padding: 20px;
            border-top: 1px solid var(--border-color);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav a {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 1.2rem;
            padding: 12px 20px;
            display: block;
            border-radius: 5px;
            transition: all var(--transition-speed);
        }
        .mobile-nav a:hover {
            background-color: var(--accent-color);
            color: white;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: rgba(22, 33, 62, 0.6);
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-secondary);
        }
        .breadcrumb a {
            color: var(--highlight-color);
            text-decoration: none;
            transition: color var(--transition-speed);
        }
        .breadcrumb a:hover {
            color: #fff;
            text-decoration: underline;
        }
        .breadcrumb .separator {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        main {
            padding: 40px 0;
        }
        .article-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .article-container {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        article h1 {
            font-size: 2.8rem;
            color: var(--highlight-color);
            margin-bottom: 20px;
            line-height: 1.3;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
        }
        article h2 {
            font-size: 2rem;
            color: #00b7eb;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
        }
        article h3 {
            font-size: 1.6rem;
            color: #4cc9f0;
            margin: 30px 0 15px;
        }
        article p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        article emoji {
            font-size: 1.3em;
            margin: 0 5px;
        }
        .lead-paragraph {
            font-size: 1.3rem;
            color: #f8f9fa;
            background: linear-gradient(90deg, rgba(15, 76, 117, 0.2) 0%, transparent 100%);
            padding: 25px;
            border-left: 5px solid var(--highlight-color);
            border-radius: 0 10px 10px 0;
            margin-bottom: 35px;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(0, 168, 204, 0.1) 0%, rgba(15, 76, 117, 0.1) 100%);
            border: 1px solid var(--highlight-color);
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
        }
        .highlight-box h4 {
            color: var(--highlight-color);
            font-size: 1.4rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .stat-card {
            display: inline-block;
            background: var(--secondary-color);
            border-radius: 8px;
            padding: 15px 25px;
            margin: 15px 15px 15px 0;
            border-left: 4px solid var(--highlight-color);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }
        .stat-card .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--highlight-color);
            display: block;
            line-height: 1;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .featured-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
            border: 2px solid var(--border-color);
            transition: transform var(--transition-speed);
        }
        .featured-image:hover {
            transform: scale(1.01);
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        .content-link {
            color: var(--highlight-color);
            text-decoration: none;
            font-weight: 600;
            transition: all var(--transition-speed);
            border-bottom: 1px dotted var(--highlight-color);
        }
        .content-link:hover {
            color: #fff;
            border-bottom-style: solid;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 25px;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--highlight-color);
            margin-bottom: 20px;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form {
            display: flex;
            margin-top: 15px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--border-color);
            border-right: none;
            border-radius: 5px 0 0 5px;
            color: var(--text-primary);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background-color var(--transition-speed);
        }
        .search-form button:hover {
            background-color: var(--highlight-color);
        }
        .rating-form,
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin: 10px 0;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: color var(--transition-speed);
        }
        .rating-stars input:checked ~ label,
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: #ffc107;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            color: var(--text-secondary);
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 12px 15px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-primary);
            font-size: 1rem;
            font-family: inherit;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--highlight-color) 100%);
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: 5px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all var(--transition-speed);
            margin-top: 10px;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(0, 168, 204, 0.3);
        }
        footer {
            background-color: rgba(5, 10, 20, 0.95);
            padding: 50px 0 20px;
            margin-top: 60px;
            border-top: 2px solid var(--highlight-color);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        .web-link {
            background-color: rgba(22, 33, 62, 0.5);
            padding: 20px;
            border-radius: 8px;
            transition: all var(--transition-speed);
            border: 1px solid transparent;
        }
        .web-link:hover {
            border-color: var(--highlight-color);
            transform: translateY(-5px);
        }
        .web-link a {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: color var(--transition-speed);
        }
        .web-link a:hover {
            color: var(--highlight-color);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            article {
                padding: 25px;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
            .header-container,
            .breadcrumb ul {
                padding: 0 15px;
            }
            .footer-links {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }
        @media (max-width: 480px) {
            .logo a {
                font-size: 1.8rem;
            }
            .stat-card {
                display: block;
                margin: 15px 0;
            }
            .footer-links {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease-out forwards;
        }
        @media print {
            .mobile-toggle,
            .sidebar-widget,
            footer {
                display: none;
            }
            body {
                color: #000;
                background: #fff;
            }
            article {
                box-shadow: none;
                border: 1px solid #ddd;
            }
        }
