        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f0f1a;
            color: #e0e0ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #8a2be2;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #b57edc;
            text-shadow: 0 0 8px rgba(138, 43, 226, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #0c0c1a 100%);
            padding: 1rem 0;
            border-bottom: 2px solid #8a2be2;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 900;
            color: #ff6b35;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px #ff6b35;
        }
        .logo span {
            color: #8a2be2;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        nav a:hover {
            background-color: rgba(138, 43, 226, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #e0e0ff;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #151525;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #aaaaff;
        }
        .breadcrumb i {
            margin: 0 0.5rem;
        }
        .search-bar {
            margin: 2rem auto;
            max-width: 600px;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            background-color: #1e1e3a;
            color: #fff;
            font-size: 1rem;
        }
        .search-button {
            background: linear-gradient(to right, #8a2be2, #ff6b35);
            color: white;
            border: none;
            padding: 1rem 2rem;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        .search-button:hover {
            background: linear-gradient(to right, #9b4de8, #ff8c5a);
            transform: scale(1.05);
        }
        main {
            padding: 2rem 0;
            min-height: 100vh;
        }
        article {
            background: rgba(25, 25, 45, 0.8);
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border-left: 5px solid #8a2be2;
        }
        h1 {
            color: #ff6b35;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
        }
        h2 {
            color: #8a2be2;
            font-size: 2.2rem;
            margin: 2rem 0 1rem;
            border-bottom: 2px dashed #444466;
            padding-bottom: 0.5rem;
        }
        h3 {
            color: #b57edc;
            font-size: 1.8rem;
            margin: 1.5rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 107, 53, 0.1);
            border-left: 4px solid #ff6b35;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 0.5rem;
        }
        .image-container {
            margin: 2.5rem auto;
            text-align: center;
            position: relative;
        }
        .image-container img {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .caption {
            margin-top: 0.8rem;
            font-style: italic;
            color: #aaaaff;
            font-size: 0.95rem;
        }
        .user-interaction {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .comment-box, .rating-box {
            background: rgba(30, 30, 50, 0.9);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid #444466;
        }
        .comment-box h3, .rating-box h3 {
            color: #ff6b35;
        }
        textarea, select, .stars {
            width: 100%;
            padding: 1rem;
            margin-top: 1rem;
            background-color: #1a1a2e;
            border: 1px solid #555577;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
        }
        .submit-button {
            background: #8a2be2;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            margin-top: 1rem;
            transition: background 0.3s;
            width: 100%;
        }
        .submit-button:hover {
            background: #9b4de8;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            background: transparent;
            border: none;
        }
        .star {
            font-size: 2.5rem;
            color: #444466;
            cursor: pointer;
            transition: color 0.3s, transform 0.2s;
        }
        .star:hover, .star.active {
            color: #ffcc00;
            transform: scale(1.2);
        }
        .footer-links {
            background-color: #151525;
            padding: 3rem 0 2rem;
            margin-top: 3rem;
        }
        .web-link {
            display: inline-block;
            background: rgba(255, 255, 255, 0.05);
            margin: 0.8rem;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            border: 1px solid #333355;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(138, 43, 226, 0.2);
            transform: translateY(-5px);
            border-color: #8a2be2;
        }
        .links-container {
            text-align: center;
        }
        footer {
            background-color: #0c0c1a;
            padding: 2rem 0;
            text-align: center;
            border-top: 1px solid #333355;
            font-size: 0.9rem;
            color: #8888aa;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .social-icons a {
            font-size: 1.5rem;
            margin: 0 1rem;
            color: #aaaaff;
            transition: color 0.3s, transform 0.3s;
        }
        .social-icons a:hover {
            color: #8a2be2;
            transform: scale(1.2);
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            .user-interaction {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #1a1a2e;
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
            nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            article {
                padding: 1.5rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: 10px;
            }
            .search-input, .search-button {
                width: 100%;
                border-radius: 0;
            }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            .logo a { font-size: 1.5rem; }
            .breadcrumb { font-size: 0.8rem; }
            .web-link {
                display: block;
                margin: 0.8rem 0;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, .user-interaction, .footer-links {
            animation: fadeIn 0.8s ease-out;
        }
