        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #e6e6e6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #a5d8ff;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background: #4dabf7;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease, transform 0.2s;
        }
        .btn:hover {
            background: #339af0;
            transform: translateY(-2px);
        }
        header {
            background: rgba(0, 0, 0, 0.85);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #ff6b6b;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo a {
            color: inherit;
            text-decoration: none;
        }
        .logo a:hover {
            text-decoration: none;
            color: #ff8787;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            color: #e6e6e6;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .nav-desktop a:hover {
            background: rgba(255, 255, 255, 0.1);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #e6e6e6;
        }
        #nav-toggle {
            display: none;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(0, 0, 0, 0.95);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            gap: 15px;
            border-top: 1px solid #444;
        }
        #nav-toggle:checked ~ .nav-mobile {
            display: flex;
        }
        .breadcrumb {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #fff;
        }
        main {
            flex: 1;
            padding: 40px 0;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 768px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #ff6b6b;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            margin: 30px 0 15px;
            color: #4dabf7;
            border-left: 5px solid #4dabf7;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.5rem;
            margin: 25px 0 10px;
            color: #a5d8ff;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 107, 107, 0.1);
            border-left: 4px solid #ff6b6b;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 30px auto;
            text-align: center;
            max-width: 800px;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: #aaa;
        }
        .link-inline {
            font-weight: bold;
            color: #ff6b6b;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        aside {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-section {
            margin-bottom: 30px;
        }
        .sidebar-section h3 {
            margin-top: 0;
            color: #ff6b6b;
            font-size: 1.3rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .search-form input, .comment-form textarea, .comment-form input, .rating-form select {
            padding: 12px;
            border: 1px solid #444;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: #e6e6e6;
            font-size: 1rem;
        }
        .search-form input:focus, .comment-form textarea:focus, .comment-form input:focus, .rating-form select:focus {
            outline: none;
            border-color: #4dabf7;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin-bottom: 10px;
        }
        .star {
            font-size: 1.5rem;
            color: #ffd43b;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .star:hover {
            transform: scale(1.2);
        }
        footer {
            background: rgba(0, 0, 0, 0.9);
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }
        @media (max-width: 992px) {
            .footer-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 576px) {
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            padding: 12px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            text-align: center;
            transition: background 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-wrapper {
                gap: 30px;
            }
            aside {
                position: static;
            }
        }
