        * {
            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, #0c2461 0%, #1e3799 50%, #4a69bd 100%);
            color: #f7f7f7;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #ffdd59;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ffaf40;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(12, 36, 97, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid #ffdd59;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffdd59;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(90deg, #ffdd59, #ffaf40);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .logo:hover {
            animation: glow 1s ease-in-out infinite alternate;
        }
        @keyframes glow {
            from { text-shadow: 0 0 5px #ffdd59; }
            to { text-shadow: 0 0 15px #ffaf40, 0 0 20px #ffdd59; }
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background: rgba(255, 221, 89, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ffdd59;
            cursor: pointer;
            padding: 5px;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(12, 36, 97, 0.98);
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }
        .nav-mobile.active {
            display: block;
        }
        .nav-mobile ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .nav-mobile a {
            display: block;
            padding: 12px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-size: 1.2rem;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #ccc;
        }
        .breadcrumb a { color: #ffdd59; }
        .breadcrumb span { color: #aaa; margin: 0 8px; }
        main {
            flex: 1;
            padding: 30px 0 50px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-wrapper { grid-template-columns: 1fr; }
        }
        article {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        h1 {
            font-size: 3rem;
            color: #ffdd59;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2.2rem;
            color: #4a69bd;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffdd59;
        }
        h3 {
            font-size: 1.8rem;
            color: #ffaf40;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.4rem;
            font-weight: 300;
            color: #d1d8e0;
            background: rgba(74, 105, 189, 0.2);
            padding: 25px;
            border-left: 5px solid #ffdd59;
            border-radius: 0 10px 10px 0;
            margin-bottom: 40px;
        }
        .highlight {
            background: rgba(255, 221, 89, 0.15);
            padding: 25px;
            border-radius: 10px;
            border: 1px solid rgba(255, 221, 89, 0.3);
            margin: 30px 0;
        }
        .highlight strong {
            color: #ffdd59;
            font-size: 1.2rem;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .stat {
            background: rgba(26, 37, 107, 0.7);
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            border-top: 5px solid #ffaf40;
            transition: transform 0.3s ease;
        }
        .stat:hover {
            transform: translateY(-10px);
            background: rgba(26, 37, 107, 0.9);
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: #ffdd59;
            line-height: 1;
        }
        .stat-desc {
            font-size: 1.1rem;
            margin-top: 10px;
            color: #d1d8e0;
        }
        .featured-image {
            margin: 40px auto;
            max-width: 800px;
            position: relative;
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 8px;
            vertical-align: middle;
        }
        aside {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            align-self: start;
            position: sticky;
            top: 140px;
        }
        .widget {
            margin-bottom: 40px;
        }
        .widget-title {
            font-size: 1.5rem;
            color: #ffdd59;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #4a69bd;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 8px 0 0 8px;
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            background: #ffdd59;
            color: #0c2461;
            border: none;
            border-radius: 0 8px 8px 0;
            padding: 0 25px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background: #ffaf40;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ffdd59;
            cursor: pointer;
        }
        .rating-stars .star:hover {
            color: #ffaf40;
            transform: scale(1.2);
        }
        textarea, input[type="text"], input[type="email"] {
            padding: 15px;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 1rem;
            width: 100%;
        }
        button[type="submit"] {
            background: linear-gradient(90deg, #4a69bd, #1e3799);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        button[type="submit"]:hover {
            background: linear-gradient(90deg, #1e3799, #0c2461);
            transform: scale(1.02);
        }
        .footer-links {
            background: rgba(12, 36, 97, 0.8);
            padding: 50px 0 30px;
            margin-top: 50px;
        }
        .web-link {
            display: inline-block;
            background: rgba(255, 255, 255, 0.05);
            margin: 10px;
            padding: 15px 25px;
            border-radius: 50px;
            border: 1px solid rgba(255, 221, 89, 0.3);
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255, 221, 89, 0.15);
            transform: translateY(-5px);
            border-color: #ffdd59;
        }
        .links-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 1000px;
            margin: 0 auto;
        }
        .site-footer {
            background: #0c2461;
            text-align: center;
            padding: 30px 0;
            border-top: 3px solid #ffdd59;
        }
        .copyright {
            color: #aaa;
            font-size: 0.95rem;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            article, aside { padding: 25px; }
            .lead { font-size: 1.2rem; padding: 20px; }
            .stat-number { font-size: 2.8rem; }
            .content-wrapper { gap: 30px; }
        }
