        * {
            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: #f0f0f0;
            background: linear-gradient(135deg, #0c1a2a 0%, #1a3a5f 100%);
            min-height: 100vh;
        }
        a {
            color: #00ccff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ffcc00;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .mt-1 { margin-top: 1rem; }
        .mt-2 { margin-top: 2rem; }
        .mt-3 { margin-top: 3rem; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mb-3 { margin-bottom: 3rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .bold { font-weight: 800; color: #ffcc00; }
        .highlight {
            background: rgba(0, 204, 255, 0.15);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            border-left: 4px solid #00ccff;
        }
        .site-header {
            background: rgba(10, 25, 47, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 2px solid #00ccff;
            box-shadow: 0 5px 20px rgba(0, 20, 40, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #00ccff, #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px rgba(0, 204, 255, 0.3);
        }
        .logo a:hover {
            text-shadow: 0 0 20px rgba(255, 204, 0, 0.5);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background: rgba(0, 204, 255, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #00ccff;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(10, 25, 47, 0.98);
            flex-direction: column;
            padding: 1rem;
            border-top: 1px solid #1a3a5f;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 1rem;
            border-bottom: 1px solid #1a3a5f;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #00ccff;
        }
        .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-content {
            background: rgba(20, 40, 70, 0.7);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border: 1px solid #2a4a7a;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: #ffcc00;
            line-height: 1.2;
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
        }
        h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            color: #00ccff;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #2a4a7a;
        }
        h3 {
            font-size: 1.5rem;
            margin: 1.8rem 0 0.8rem;
            color: #aaddff;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #ccddff;
            font-weight: 300;
            padding: 1rem;
            background: rgba(0, 50, 100, 0.3);
            border-radius: 8px;
        }
        .featured-img {
            width: 100%;
            margin: 2rem 0;
            border: 3px solid #00ccff;
            box-shadow: 0 10px 25px rgba(0, 204, 255, 0.2);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: rgba(20, 40, 70, 0.7);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid #2a4a7a;
        }
        .sidebar-widget h3 {
            color: #ffcc00;
            margin-top: 0;
            font-size: 1.3rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem;
            border: 2px solid #00ccff;
            border-radius: 5px 0 0 5px;
            background: #0a192f;
            color: #fff;
        }
        .search-form button {
            background: #00ccff;
            color: #0a192f;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #ffcc00;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .comment-form textarea, .comment-form input, .rating-form select {
            padding: 0.8rem;
            border: 1px solid #2a4a7a;
            border-radius: 5px;
            background: #0a192f;
            color: #fff;
            font-family: inherit;
        }
        .comment-form button, .rating-form button {
            background: linear-gradient(90deg, #00ccff, #0099cc);
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        .comment-form button:hover, .rating-form button:hover {
            background: linear-gradient(90deg, #ffcc00, #ff9900);
            transform: scale(1.02);
        }
        .stars {
            color: #ffcc00;
            font-size: 1.5rem;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            padding: 3rem 0;
            border-top: 2px solid #2a4a7a;
            border-bottom: 2px solid #2a4a7a;
        }
        @media (max-width: 768px) {
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: rgba(30, 60, 100, 0.5);
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: rgba(0, 204, 255, 0.2);
            transform: translateY(-5px);
        }
        .site-footer {
            text-align: center;
            padding: 2rem 0;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-desktop { display: none; }
            h1 { font-size: 2.2rem; }
            .article-content { padding: 1.5rem; }
            .footer-links { grid-template-columns: 1fr; }
        }
