        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #1a1a2e;
            color: #e0e0e0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #7289da;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ffffff;
            text-shadow: 0 0 8px rgba(114, 137, 218, 0.7);
            transform: translateY(-1px);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        .last-updated {
            text-align: center;
            font-size: 0.9em;
            color: #8a8a8a;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #333;
        }
        header {
            background: linear-gradient(135deg, #2d2d44 0%, #1a1a2e 100%);
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #7289da, #5a6fb5);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        nav.desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav.desktop-nav a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
        }
        nav.desktop-nav a:hover {
            background-color: rgba(114, 137, 218, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #7289da;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #2d2d44;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            border-top: 2px solid #7289da;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 15px;
            border-bottom: 1px solid #3a3a5a;
            font-weight: 600;
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
            background-color: #252536;
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #fff;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .hero {
            text-align: center;
            padding: 80px 20px;
            background: radial-gradient(ellipse at center, #2d2d44 0%, #1a1a2e 70%);
            border-bottom: 3px solid #7289da;
        }
        h1 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            background: linear-gradient(90deg, #fff, #7289da);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 40px;
            color: #b0b0d0;
        }
        .search-box {
            max-width: 700px;
            margin: 40px auto;
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid #444;
        }
        .search-box h2 {
            margin-bottom: 20px;
            color: #fff;
            font-size: 1.8rem;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-form input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid #444;
            border-radius: 50px;
            background-color: #2a2a3e;
            color: #fff;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .search-form input:focus {
            outline: none;
            border-color: #7289da;
        }
        .search-form button {
            padding: 15px 30px;
            background: linear-gradient(90deg, #7289da, #5a6fb5);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .search-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(114, 137, 218, 0.4);
        }
        .content-section {
            background-color: #232339;
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border-left: 5px solid #7289da;
        }
        h2 {
            font-size: 2.5rem;
            color: #ffffff;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3a3a5a;
        }
        h3 {
            font-size: 1.8rem;
            color: #b0b0ff;
            margin: 35px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #d0d0ff;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(114, 137, 218, 0.1);
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid #7289da;
            margin: 25px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #2a2a40, #1f1f30);
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: transform 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-8px);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: #7289da;
            margin-bottom: 15px;
        }
        .stat-card h4 {
            color: #fff;
            margin-bottom: 10px;
        }
        .feature-img {
            margin: 30px auto;
            max-width: 900px;
            border: 3px solid #444;
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }
        .rating-comment-section {
            background-color: #252536;
            border-radius: 15px;
            padding: 40px;
            margin-top: 60px;
        }
        .rating-box, .comment-box {
            margin-bottom: 40px;
        }
        .rating-box h3, .comment-box h3 {
            color: #fff;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 20px 0;
            font-size: 2rem;
            color: #444;
            cursor: pointer;
        }
        .stars .star {
            transition: color 0.2s, transform 0.2s;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffcc00;
            transform: scale(1.2);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 20px;
        }
        .rating-form input, .comment-form input, .comment-form textarea {
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #555;
            background-color: #2a2a3e;
            color: #fff;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .rating-form button, .comment-form button {
            align-self: flex-start;
            padding: 15px 35px;
            background: linear-gradient(90deg, #7289da, #5a6fb5);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .rating-form button:hover, .comment-form button:hover {
            background: linear-gradient(90deg, #5a6fb5, #7289da);
            box-shadow: 0 5px 15px rgba(114, 137, 218, 0.4);
        }
        footer {
            background: linear-gradient(180deg, #1a1a2e 0%, #0d0d1a 100%);
            padding: 60px 0 30px;
            margin-top: 80px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: #7289da;
            margin-bottom: 20px;
        }
        .footer-links h4 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        friend-link {
            display: block;
            background-color: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 10px;
            transition: background-color 0.3s;
        }
        friend-link:hover {
            background-color: rgba(114, 137, 218, 0.2);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav.desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.9rem; }
            h3 { font-size: 1.6rem; }
            .content-section, .rating-comment-section {
                padding: 25px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            .hero { padding: 50px 20px; }
            .stat-card { padding: 20px; }
        }
