        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #4da6ff;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #80c1ff;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            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, #1a2332 0%, #0f1419 100%);
            padding: 1rem 0;
            border-bottom: 2px solid #2a3a5a;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0,0,0,0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #ff6b6b, #4ecdc4, #45b7d1);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .logo span {
            color: #ffd166;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #b0b7c3;
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover,
        .nav-desktop a.active {
            color: #4da6ff;
            border-bottom-color: #4da6ff;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #4da6ff;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1a2332;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            border-top: 1px solid #2a3a5a;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #b0b7c3;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid #2a3a5a;
            font-weight: 600;
        }
        .nav-mobile a:hover {
            color: #4da6ff;
            background-color: rgba(77, 166, 255, 0.1);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #141b26;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #8a9bb2;
        }
        .breadcrumb a:hover {
            color: #4da6ff;
        }
        .breadcrumb span {
            color: #b0b7c3;
            margin: 0 0.5rem;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: #161e29;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
            border: 1px solid #2a3a5a;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffffff;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            background: linear-gradient(to right, #ffd166, #4ecdc4);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        h2 {
            font-size: 2rem;
            color: #4da6ff;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #2a3a5a;
        }
        h3 {
            font-size: 1.5rem;
            color: #ffd166;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #b0b7c3;
            font-weight: 500;
            padding: 1.5rem;
            background-color: #1a2332;
            border-left: 5px solid #4da6ff;
            border-radius: 0 8px 8px 0;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: rgba(255, 209, 102, 0.1);
            border-left: 4px solid #ffd166;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        strong {
            color: #ffd166;
            font-weight: 700;
        }
        .featured-image {
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            margin: 2.5rem 0;
            border: 3px solid #2a3a5a;
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #8a9bb2;
            padding: 0.8rem;
            background-color: #1a2332;
            border-radius: 0 0 8px 8px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: #161e29;
            border-radius: 12px;
            padding: 1.8rem;
            border: 1px solid #2a3a5a;
        }
        .widget h3 {
            margin-top: 0;
            color: #4ecdc4;
            font-size: 1.4rem;
        }
        .search-box input {
            width: 100%;
            padding: 0.9rem 1.2rem;
            background-color: #1a2332;
            border: 2px solid #2a3a5a;
            border-radius: 50px;
            color: #e0e0e0;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .search-box input:focus {
            outline: none;
            border-color: #4da6ff;
            box-shadow: 0 0 0 3px rgba(77, 166, 255, 0.2);
        }
        .search-box button {
            background: linear-gradient(to right, #4da6ff, #4ecdc4);
            color: white;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: 100%;
            margin-top: 1rem;
        }
        .search-box button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(77, 166, 255, 0.3);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #ffd166;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars span {
            margin: 0 0.1rem;
            transition: color 0.2s ease;
        }
        .stars span:hover,
        .stars span.active {
            color: #ffb347;
        }
        #rating-value {
            font-size: 1.2rem;
            color: #4ecdc4;
            font-weight: bold;
            margin-top: 0.5rem;
            display: block;
        }
        .rating-btn {
            background: linear-gradient(to right, #ff6b6b, #ff8e53);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            margin-top: 1rem;
            transition: transform 0.3s ease;
            width: 100%;
        }
        .rating-btn:hover {
            transform: translateY(-3px);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            background-color: #1a2332;
            border: 2px solid #2a3a5a;
            border-radius: 8px;
            color: #e0e0e0;
            font-size: 1rem;
            min-height: 120px;
            resize: vertical;
            margin-bottom: 1rem;
        }
        .comment-form input {
            width: 100%;
            padding: 0.9rem;
            background-color: #1a2332;
            border: 2px solid #2a3a5a;
            border-radius: 8px;
            color: #e0e0e0;
            margin-bottom: 1rem;
        }
        .comment-form button {
            background: linear-gradient(to right, #9d50bb, #6e48aa);
            color: white;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: transform 0.3s ease;
            width: 100%;
        }
        .comment-form button:hover {
            transform: translateY(-3px);
        }
        .web-links-section {
            background-color: #141b26;
            padding: 3rem 0;
            margin-top: 3rem;
            border-top: 2px solid #2a3a5a;
            border-bottom: 2px solid #2a3a5a;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: #1a2332;
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 4px solid #4da6ff;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #212d40;
        }
        .web-link a {
            color: #b0b7c3;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: #4da6ff;
        }
        .site-footer {
            background-color: #0f1419;
            padding: 3rem 0 2rem;
            border-top: 2px solid #2a3a5a;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .copyright {
            color: #8a9bb2;
            font-size: 0.95rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #2a3a5a;
            width: 100%;
        }
        .text-center { text-align: center; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
