        * {
            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, #0a0a16 0%, #1a1a2e 100%);
            color: #e0e0ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #4fc3f7;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #29b6f6;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(90deg, #00bcd4, #0097a7);
            color: white;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
        }
        .btn:hover {
            background: linear-gradient(90deg, #0097a7, #00838f);
            box-shadow: 0 6px 20px rgba(0, 188, 212, 0.5);
            transform: translateY(-3px);
        }
        section {
            padding: 60px 0;
        }
        h1, h2, h3, h4 {
            color: #bb86fc;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(90deg, #bb86fc, #03dac6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid #03dac6;
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #82b1ff;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .highlight {
            background: rgba(187, 134, 252, 0.1);
            border-left: 4px solid #bb86fc;
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin: 25px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 8px;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #82b1ff;
        }
        header {
            background: rgba(10, 10, 22, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #33334d;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #00bcd4, #bb86fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .logo a {
            background: none;
            -webkit-text-fill-color: inherit;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.05rem;
            color: #e0e0ff;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            border-bottom: 2px solid #4fc3f7;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #e0e0ff;
        }
        .hero {
            text-align: center;
            padding: 80px 20px;
            background: radial-gradient(circle at center, #1a1a2e 0%, #0a0a16 100%);
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #b0b0d0;
        }
        .search-box {
            max-width: 600px;
            margin: 40px auto;
            background: rgba(30, 30, 46, 0.8);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .search-box h3 {
            text-align: center;
            margin-bottom: 20px;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 30px 0 0 30px;
            background: #2d2d44;
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            background: linear-gradient(90deg, #bb86fc, #9c64ff);
            color: white;
            border: none;
            border-radius: 0 30px 30px 0;
            padding: 0 25px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(90deg, #9c64ff, #7b4cff);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .main-content {
            background: rgba(26, 26, 46, 0.7);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }
        .sidebar {
            background: rgba(30, 30, 46, 0.7);
            padding: 25px;
            border-radius: 15px;
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            margin-bottom: 20px;
            color: #03dac6;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid #33334d;
        }
        .sidebar a {
            color: #e0e0ff;
            display: block;
        }
        .rating-section, .comment-section {
            background: rgba(30, 30, 46, 0.8);
            padding: 30px;
            border-radius: 15px;
            margin-top: 40px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 20px 0;
        }
        .star {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        .rating-form, .comment-form {
            display: grid;
            gap: 15px;
            margin-top: 20px;
        }
        .rating-form input,
        .comment-form input,
        .comment-form textarea {
            padding: 15px;
            border: 1px solid #444;
            border-radius: 8px;
            background: #2d2d44;
            color: white;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
            padding: 40px 0;
        }
        .web-link {
            background: rgba(45, 45, 68, 0.6);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: rgba(59, 59, 89, 0.8);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #82b1ff;
            font-weight: 500;
        }
        footer {
            background: #0a0a16;
            padding: 40px 20px;
            text-align: center;
            border-top: 1px solid #33334d;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 30px;
        }
        .copyright {
            color: #888;
            font-size: 0.9rem;
            margin-top: 20px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 22, 0.98);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease;
                z-index: 999;
            }
            .nav-links.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .nav-links li {
                margin: 15px 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .web-links {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                border-radius: 30px;
                margin-bottom: 10px;
            }
            .search-form button {
                border-radius: 30px;
                padding: 15px;
            }
        }
