        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a0e17;
            color: #e0e0e0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff6b8b;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        header {
            background: linear-gradient(135deg, #1a237e, #0d47a1);
            padding: 1.5rem 2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo {
            font-size: 2.8rem;
            font-weight: 900;
            color: #ffeb3b;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        }
        .logo span {
            color: #ff6b8b;
        }
        .logo a:hover {
            color: inherit;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }
        .nav-links li a {
            font-size: 1.2rem;
            font-weight: 600;
            padding: 0.8rem 1.2rem;
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.1);
        }
        .nav-links li a:hover {
            background-color: rgba(255, 107, 139, 0.3);
            transform: translateY(-3px);
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            color: #ffeb3b;
            cursor: pointer;
            background: none;
            border: none;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            padding: 1.5rem 2rem;
            background-color: #1e2a47;
            max-width: 1400px;
            margin: 0 auto;
            border-bottom: 2px solid #4dabf7;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            color: #b0bec5;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 1rem;
            color: #4dabf7;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 1024px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: linear-gradient(145deg, #1a1f3a, #252b4a);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 3.5rem;
            color: #ffeb3b;
            margin-bottom: 1.5rem;
            text-align: center;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
        }
        h2 {
            font-size: 2.5rem;
            color: #4dabf7;
            margin: 3rem 0 1.5rem;
            border-left: 6px solid #ff6b8b;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #ffcc80;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.2rem;
            text-align: justify;
            line-height: 1.9;
        }
        .highlight {
            background-color: rgba(255, 235, 59, 0.2);
            padding: 1.5rem;
            border-left: 5px solid #ffeb3b;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 0.5rem;
        }
        .image-container {
            text-align: center;
            margin: 3rem 0;
        }
        .image-container img {
            border-radius: 15px;
            border: 4px solid #4dabf7;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
            max-width: 800px;
            margin: 0 auto;
        }
        .image-caption {
            font-style: italic;
            color: #b0bec5;
            margin-top: 1rem;
        }
        aside {
            background-color: #1e2a47;
            padding: 2rem;
            border-radius: 15px;
            height: fit-content;
            position: sticky;
            top: 150px;
        }
        .sidebar-section {
            margin-bottom: 2.5rem;
        }
        .sidebar-section h3 {
            color: #ffcc80;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        .search-form input[type="text"] {
            width: 100%;
            padding: 1rem;
            border: 2px solid #4dabf7;
            border-radius: 50px;
            background-color: #0a0e17;
            color: #e0e0e0;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #ff6b8b;
        }
        .search-form button {
            width: 100%;
            margin-top: 1rem;
            padding: 1rem;
            border: none;
            border-radius: 50px;
            background: linear-gradient(90deg, #4dabf7, #ff6b8b);
            color: white;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .search-form button:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 107, 139, 0.4);
        }
        .comment-form, .rating-form {
            background-color: #252b4a;
            padding: 1.8rem;
            border-radius: 12px;
            margin-top: 1.5rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            color: #ffcc80;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.9rem;
            border: 1px solid #4dabf7;
            border-radius: 8px;
            background-color: #1a1f3a;
            color: #e0e0e0;
            font-size: 1rem;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.8rem;
            margin: 1rem 0;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2.5rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars label:hover,
        .stars label:hover ~ label,
        .stars input:checked ~ label {
            color: #ffeb3b;
        }
        .submit-btn {
            background: linear-gradient(90deg, #ff6b8b, #ffeb3b);
            color: #0a0e17;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.2rem;
            cursor: pointer;
            width: 100%;
            transition: transform 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-5px);
        }
        footer {
            background-color: #121828;
            padding: 3rem 2rem;
            margin-top: 4rem;
            border-top: 4px solid #4dabf7;
        }
        .footer-links {
            max-width: 1400px;
            margin: 0 auto 2.5rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: #1e2a47;
            padding: 1.2rem;
            border-radius: 10px;
            text-align: center;
            transition: background-color 0.3s, transform 0.3s;
        }
        .web-link:hover {
            background-color: #2a3a5e;
            transform: translateY(-5px);
        }
        .web-link a {
            font-size: 1.1rem;
            color: #ffcc80;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #4dabf7;
            color: #b0bec5;
            font-size: 1rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-links {
                flex-direction: column;
                width: 100%;
                gap: 1rem;
                margin-top: 1.5rem;
                display: none;
            }
            #nav-toggle:checked ~ .nav-links {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 2rem;
                right: 2rem;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            article {
                padding: 2rem;
            }
            main {
                padding: 0 1rem;
            }
            .breadcrumb {
                padding: 1rem;
            }
        }
