        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #f0f0f0;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            min-height: 100vh;
        }
        a {
            color: #00b4d8;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #90e0ef;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .header {
            background: rgba(0, 0, 0, 0.9);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ff6b6b;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo a {
            color: inherit;
            text-decoration: none;
        }
        .logo a:hover {
            color: #ff8e8e;
        }
        .nav {
            display: flex;
            gap: 2rem;
        }
        .nav a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .nav a:hover {
            background: rgba(255, 107, 107, 0.2);
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.05);
            padding: 0.8rem 2rem;
            font-size: 0.95rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb a:hover {
            color: #fff;
        }
        .breadcrumb span {
            margin: 0 0.5rem;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: #f0f0f0;
            border-radius: 2px;
            transition: 0.3s;
        }
        #nav-toggle {
            display: none;
        }
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 3rem;
        }
        @media (max-width: 768px) {
            .container {
                grid-template-columns: 1fr;
            }
        }
        .main-content {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
        article {
            margin-bottom: 3rem;
        }
        h1 {
            font-size: 3.5rem;
            color: #ff6b6b;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }
        h2 {
            font-size: 2.5rem;
            color: #4d96ff;
            margin: 2.5rem 0 1rem;
            border-bottom: 3px solid #4d96ff;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #90e0ef;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            color: #e0e0e0;
        }
        .highlight {
            background: rgba(255, 107, 107, 0.1);
            padding: 1.5rem;
            border-left: 5px solid #ff6b6b;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 0.5rem;
        }
        .sidebar {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 2rem;
            align-self: start;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            font-size: 1.5rem;
            color: #ffd166;
            margin-bottom: 1rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #444;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: #f0f0f0;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #00b4d8;
            box-shadow: 0 0 8px rgba(0, 180, 216, 0.5);
        }
        button {
            padding: 0.8rem 1.5rem;
            background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            margin: 1rem 0;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars label:hover,
        .stars input:checked ~ label {
            color: #ffd166;
        }
        .featured-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 15px;
            border: 3px solid #4d96ff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            max-height: 500px;
            object-fit: cover;
            width: 100%;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            margin: 3rem 0;
            padding: 2rem;
            background: rgba(0, 0, 0, 0.7);
            border-radius: 10px;
        }
        @media (max-width: 1024px) {
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 600px) {
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            text-align: center;
            transition: background 0.3s;
        }
        .web-link:hover {
            background: rgba(255, 107, 107, 0.2);
        }
        .footer {
            text-align: center;
            padding: 2rem;
            background: rgba(0, 0, 0, 0.9);
            color: #aaa;
            font-size: 0.9rem;
            border-top: 1px solid #444;
        }
        .footer p {
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(0, 0, 0, 0.95);
                padding: 1rem;
                box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
            }
            #nav-toggle:checked ~ .nav {
                display: flex;
            }
            .header-container {
                flex-wrap: wrap;
            }
        }
        .bold {
            font-weight: bold;
            color: #ffd166;
        }
        .italic {
            font-style: italic;
            color: #ccc;
        }
        .center {
            text-align: center;
        }
        .spacer {
            margin: 3rem 0;
            border-top: 2px dashed #444;
        }
