        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #e0e0e0;
            background: #0c0c0c;
            background-image: radial-gradient(circle at 1px 1px, rgba(100, 100, 100, 0.2) 1px, transparent 0);
            background-size: 40px 40px;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ffd43b;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            border-bottom: 3px solid #ffd43b;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffd43b;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }
        .logo a:hover {
            transform: none;
            color: #ffd43b;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.05);
        }
        .nav-desktop a:hover {
            background: rgba(255, 212, 59, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #ffd43b;
            cursor: pointer;
            background: none;
            border: none;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            gap: 15px;
            background: #1a1a2e;
            padding: 20px;
            border-radius: 10px;
            margin-top: 15px;
            border: 1px solid #333;
        }
        .nav-mobile.active {
            display: flex;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #aaa;
            background: rgba(26, 26, 46, 0.8);
            border-bottom: 1px solid #333;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffd43b;
        }
        main {
            padding: 30px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(26, 26, 46, 0.9);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid #333;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffd43b;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 1px 1px 3px #000;
        }
        h2 {
            font-size: 2rem;
            color: #4dabf7;
            margin-top: 40px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #444;
        }
        h3 {
            font-size: 1.5rem;
            color: #a5d8ff;
            margin-top: 25px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 212, 59, 0.1);
            border-left: 4px solid #ffd43b;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        aside {
            background: rgba(22, 33, 62, 0.9);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid #333;
            align-self: start;
            position: sticky;
            top: 150px;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            color: #ffd43b;
            font-size: 1.4rem;
            margin-bottom: 15px;
        }
        .search-form input {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #555;
            background: #0c0c0c;
            color: #fff;
            margin-bottom: 10px;
        }
        .search-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(to right, #4dabf7, #339af0);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background: linear-gradient(to right, #339af0, #228be6);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-form select, .comment-form textarea, .comment-form input {
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #555;
            background: #0c0c0c;
            color: #fff;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .rating-form button, .comment-form button {
            padding: 12px;
            background: linear-gradient(to right, #40c057, #2f9e44);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .rating-form button:hover, .comment-form button:hover {
            background: linear-gradient(to right, #2f9e44, #2b8a3e);
        }
        .stars {
            color: #ffd43b;
            font-size: 1.5rem;
        }
        .image-section {
            text-align: center;
            margin: 40px 0;
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: #aaa;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
            margin: 40px 0;
            background: rgba(26, 26, 46, 0.9);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid #333;
        }
        @media (max-width: 768px) {
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 12px;
            border-radius: 8px;
            text-align: center;
            transition: background 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255, 212, 59, 0.2);
        }
        footer {
            background: linear-gradient(135deg, #1a1a2e 0%, #0c0c0c 100%);
            padding: 30px 0;
            text-align: center;
            border-top: 3px solid #ffd43b;
        }
        .copyright {
            color: #aaa;
            font-size: 0.9rem;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article, aside {
                padding: 20px;
            }
        }
