        * {
            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: #e8e6e3;
            background-color: #0f1419;
            background-image: radial-gradient(circle at 15% 50%, #1a2633 0%, #0f1419 40%);
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a {
            color: #6ab0ff;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffcc6a;
            text-shadow: 0 0 8px rgba(255, 204, 106, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        header {
            padding: 1.5rem 0;
            border-bottom: 1px solid #2a3a50;
            margin-bottom: 2rem;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-family: 'Georgia', serif;
            font-size: 2.5rem;
            font-weight: bold;
            background: linear-gradient(90deg, #ffcc6a, #b8860b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .logo a:hover {
            background: linear-gradient(90deg, #b8860b, #ffcc6a);
            -webkit-background-clip: text;
            background-clip: text;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background-color: rgba(106, 176, 255, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffcc6a;
            background: none;
            border: none;
        }
        .breadcrumb {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #a0a6b0;
        }
        .breadcrumb a {
            color: #a0a6b0;
        }
        .breadcrumb a:hover {
            color: #ffcc6a;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(26, 38, 51, 0.7);
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid #2a3a50;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 2.8rem;
            color: #ffcc6a;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2rem;
            color: #6ab0ff;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #2a3a50;
        }
        h3 {
            font-size: 1.5rem;
            color: #a0d2ff;
            margin: 1.8rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            color: #d4dae3;
            font-weight: 500;
            padding: 1rem;
            background: rgba(42, 58, 80, 0.5);
            border-left: 4px solid #ffcc6a;
            border-radius: 4px;
        }
        .highlight {
            background-color: rgba(255, 204, 106, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid #ffcc6a;
            margin: 1.5rem 0;
        }
        .info-box {
            background-color: rgba(26, 115, 232, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid #6ab0ff;
            margin: 1.5rem 0;
        }
        .float-img {
            float: right;
            margin: 1rem 0 1rem 2rem;
            max-width: 50%;
            border: 2px solid #2a3a50;
        }
        @media (max-width: 768px) {
            .float-img {
                float: none;
                max-width: 100%;
                margin: 1rem 0;
            }
        }
        ul, ol {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        strong {
            color: #ffcc6a;
            font-weight: 700;
        }
        em {
            color: #a0d2ff;
            font-style: italic;
        }
        aside {
            background: rgba(26, 38, 51, 0.7);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid #2a3a50;
            align-self: start;
            position: sticky;
            top: 20px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            font-size: 1.3rem;
            color: #ffcc6a;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #2a3a50;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            background-color: #1a2633;
            border: 1px solid #2a3a50;
            border-radius: 6px;
            color: #e8e6e3;
            font-size: 1rem;
            width: 100%;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #6ab0ff;
            box-shadow: 0 0 0 3px rgba(106, 176, 255, 0.2);
        }
        button, .btn {
            background: linear-gradient(135deg, #6ab0ff, #1a73e8);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            display: inline-block;
        }
        button:hover, .btn:hover {
            background: linear-gradient(135deg, #1a73e8, #6ab0ff);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(26, 115, 232, 0.4);
        }
        .star-rating {
            display: flex;
            justify-content: space-between;
            margin: 1rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #ffcc6a;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 2rem;
            background: rgba(26, 38, 51, 0.7);
            border-radius: 12px;
            border: 1px solid #2a3a50;
        }
        @media (max-width: 1024px) {
            .footer-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
        }
        .web-link {
            padding: 1rem;
            background: rgba(42, 58, 80, 0.5);
            border-radius: 6px;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-3px);
            background-color: rgba(106, 176, 255, 0.1);
        }
        .web-link a {
            display: block;
            font-weight: 600;
        }
        footer {
            text-align: center;
            padding: 2rem 0;
            border-top: 1px solid #2a3a50;
            color: #a0a6b0;
            font-size: 0.9rem;
        }
        .copyright {
            margin-top: 1rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .logo {
                margin-bottom: 1rem;
            }
            nav {
                width: 100%;
                justify-content: space-between;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: rgba(26, 38, 51, 0.95);
                position: absolute;
                top: 120px;
                left: 0;
                padding: 1rem;
                border-radius: 0 0 12px 12px;
                z-index: 1000;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            article, aside {
                padding: 1.5rem;
            }
        }
