        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0c1a2d 0%, #152642 100%);
            color: #e0e0e0;
            line-height: 1.7;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
            position: relative;
        }
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="%231a2d4a" opacity="0.1"/>') no-repeat center center;
            background-size: cover;
            z-index: -1;
        }
        header {
            background: rgba(12, 26, 45, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ffd700;
            padding: 15px 0;
            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;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffd700;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            background: linear-gradient(90deg, #ffd700, #ffed4e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: all 0.3s ease;
        }
        .logo a:hover {
            transform: scale(1.05);
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
        }
        .logo span {
            color: #4dabf7;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            color: #ffd700;
            cursor: pointer;
            background: none;
            border: none;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            color: #b0c4de;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
            position: relative;
        }
        nav a:hover, nav a.active {
            color: #ffd700;
            background: rgba(255, 215, 0, 0.1);
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: #ffd700;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        nav a:hover::after {
            width: 80%;
        }
        .breadcrumb {
            padding: 15px 0;
            color: #8fa3bf;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #4dabf7;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 40px;
            padding: 30px 0;
        }
        article {
            background: rgba(22, 38, 61, 0.9);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border: 1px solid #2a4066;
        }
        h1 {
            color: #ffd700;
            font-size: 2.8rem;
            margin-bottom: 25px;
            line-height: 1.2;
            text-align: center;
            border-bottom: 2px solid #2a4066;
            padding-bottom: 20px;
        }
        h2 {
            color: #4dabf7;
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #2a4066;
        }
        h3 {
            color: #6bc1ff;
            font-size: 1.6rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.15rem;
            text-align: justify;
        }
        strong {
            color: #ffd700;
            font-weight: 700;
        }
        em {
            color: #6bc1ff;
            font-style: italic;
        }
        .highlight {
            background: rgba(255, 215, 0, 0.1);
            border-left: 4px solid #ffd700;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.4rem;
            margin-right: 8px;
            vertical-align: middle;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .article-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid #2a4066;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s ease;
        }
        .article-img:hover {
            transform: scale(1.02);
        }
        figcaption {
            font-style: italic;
            color: #8fa3bf;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        aside {
            background: rgba(22, 38, 61, 0.9);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid #2a4066;
            align-self: start;
            position: sticky;
            top: 120px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }
        .widget {
            margin-bottom: 40px;
        }
        .widget h3 {
            color: #ffd700;
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #2a4066;
        }
        .search-form input {
            width: 100%;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #2a4066;
            background: #152642;
            color: #e0e0e0;
            font-size: 1rem;
            margin-bottom: 15px;
        }
        .search-form button {
            width: 100%;
            padding: 15px;
            background: linear-gradient(90deg, #ffd700, #ffb300);
            color: #0c1a2d;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-form button:hover {
            background: linear-gradient(90deg, #ffb300, #ffd700);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 215, 0, 0.3);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffd700;
            margin-bottom: 15px;
            cursor: pointer;
        }
        .stars span {
            margin: 0 5px;
            transition: color 0.2s;
        }
        .stars span:hover,
        .stars span.active {
            color: #ffb300;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #2a4066;
            background: #152642;
            color: #e0e0e0;
            font-size: 1rem;
            margin-bottom: 15px;
            resize: vertical;
            min-height: 150px;
        }
        .comment-form button {
            padding: 15px 30px;
            background: linear-gradient(90deg, #4dabf7, #1c7ed6);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .comment-form button:hover {
            background: linear-gradient(90deg, #1c7ed6, #4dabf7);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(77, 171, 247, 0.3);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin: 50px 0;
        }
        .web-link {
            background: rgba(22, 38, 61, 0.9);
            border: 1px solid #2a4066;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(42, 64, 102, 0.9);
            border-color: #4dabf7;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        .web-link a {
            color: #6bc1ff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
        }
        .web-link a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        footer {
            background: rgba(12, 26, 45, 0.95);
            border-top: 2px solid #ffd700;
            padding: 40px 0 20px;
            margin-top: 50px;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-links a {
            color: #b0c4de;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #ffd700;
        }
        .copyright {
            color: #8fa3bf;
            font-size: 0.9rem;
            border-top: 1px solid #2a4066;
            padding-top: 20px;
            margin-top: 20px;
        }
        @media (max-width: 1024px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .mobile-toggle {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
                display: none;
                margin-top: 20px;
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 25px;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .web-links {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.8rem;
            }
            .logo a {
                font-size: 1.8rem;
            }
        }
