        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #f0f0f0;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4cc9f0;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #f72585;
            text-shadow: 0 0 8px rgba(247, 37, 133, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #f72585;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, #f72585, #4cc9f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .logo a {
            background: none;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        nav a:hover {
            background: rgba(247, 37, 133, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4cc9f0;
        }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(255, 255, 255, 0.05);
            margin-bottom: 30px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: #4cc9f0;
        }
        .search-bar {
            max-width: 600px;
            margin: 30px auto;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border: 1px solid #4cc9f0;
        }
        .search-bar h2 {
            text-align: center;
            margin-bottom: 15px;
            color: #4cc9f0;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid #4361ee;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            padding: 15px 25px;
            background: linear-gradient(90deg, #4361ee, #3a0ca3);
            color: white;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s;
        }
        .search-form button:hover {
            transform: scale(1.05);
            background: linear-gradient(90deg, #3a0ca3, #4361ee);
        }
        main {
            flex: 1;
            padding: 20px 0 40px;
        }
        article {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 40px;
            border-left: 6px solid #f72585;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            color: #4cc9f0;
            line-height: 1.3;
            text-align: center;
        }
        h2 {
            font-size: 2.2rem;
            margin: 40px 0 20px;
            color: #f72585;
            border-bottom: 2px solid #4361ee;
            padding-bottom: 10px;
        }
        h3 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: #4cc9f0;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(76, 201, 240, 0.2);
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid #f72585;
            margin: 25px 0;
        }
        .highlight strong {
            color: #f72585;
            font-size: 1.3rem;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 8px;
            vertical-align: middle;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            max-width: 800px;
            width: 100%;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
            border: 3px solid #4361ee;
        }
        .image-caption {
            font-style: italic;
            margin-top: 10px;
            color: #aaa;
        }
        .interactive {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .comment-box, .rating-box {
            background: rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid #4361ee;
        }
        .comment-box h3, .rating-box h3 {
            color: #f72585;
            margin-bottom: 20px;
        }
        .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 15px;
            margin-bottom: 15px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid #4361ee;
            color: white;
            font-size: 1rem;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
            font-size: 2rem;
            color: #ffd700;
        }
        .rating-stars i {
            cursor: pointer;
            transition: transform 0.3s;
        }
        .rating-stars i:hover {
            transform: scale(1.3);
        }
        .submit-btn {
            display: block;
            width: 100%;
            padding: 15px;
            background: linear-gradient(90deg, #f72585, #b5179e);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-5px);
            background: linear-gradient(90deg, #b5179e, #f72585);
        }
        .footer-links {
            background: rgba(0, 0, 0, 0.7);
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin-bottom: 30px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 10px;
            border-left: 4px solid #4cc9f0;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(76, 201, 240, 0.2);
            transform: translateX(10px);
        }
        .web-link a {
            font-size: 1.1rem;
            display: block;
        }
        footer {
            background: #0d0d1a;
            text-align: center;
            padding: 30px 0;
            border-top: 2px solid #f72585;
        }
        .copyright {
            font-size: 1rem;
            color: #aaa;
            margin-top: 20px;
        }
        .social-icons {
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            gap: 20px;
            font-size: 1.8rem;
        }
        .social-icons a:hover {
            color: #f72585;
            transform: scale(1.2);
            display: inline-block;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            .header-container { padding: 10px 0; }
            nav ul { gap: 15px; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background: rgba(0, 0, 0, 0.95);
                width: 100%;
                padding: 20px;
                transition: left 0.5s;
                border-top: 2px solid #f72585;
            }
            nav ul.show { left: 0; }
            .search-form { flex-direction: column; }
            .interactive { grid-template-columns: 1fr; }
            .web-link-container { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .logo { font-size: 2rem; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            p { font-size: 1.1rem; }
            .container { padding: 0 15px; }
        }
