        * {
            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.8;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-padding {
            padding: 60px 0;
        }
        .text-center { text-align: center; }
        .text-accent { color: #00e5ff; }
        .bg-dark { background-color: #111127; }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(90deg, #00e5ff, #0088cc);
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 229, 255, 0.5);
        }
        .site-header {
            background: rgba(10, 10, 22, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #222244;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo a {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(to right, #00e5ff, #aa00ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            letter-spacing: 1px;
        }
        .my-logo span {
            color: #ffaa00;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            color: #b0b0ff;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
            position: relative;
        }
        .nav-desktop a:hover,
        .nav-desktop a.active {
            color: #00e5ff;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #00e5ff;
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #00e5ff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: rgba(10, 10, 22, 0.98);
            flex-direction: column;
            padding: 20px;
            display: none;
            z-index: 999;
            border-top: 1px solid #222244;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #b0b0ff;
            text-decoration: none;
            padding: 15px;
            border-bottom: 1px solid #222244;
            font-size: 1.1rem;
        }
        .nav-mobile a:hover {
            background: #1a1a2e;
            color: #00e5ff;
        }
        .breadcrumb {
            padding: 15px 20px;
            background: #111127;
            font-size: 0.9rem;
            border-bottom: 1px solid #222244;
        }
        .breadcrumb a {
            color: #80a0ff;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #ccc;
            margin: 0 8px;
        }
        .hero {
            padding: 80px 20px;
            text-align: center;
            background: radial-gradient(circle at center, #1a1a3a 0%, #0a0a16 70%);
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="%2300e5ff" opacity="0.03"/></svg>');
            background-size: cover;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #00e5ff, #ff00cc);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ccccff;
        }
        .search-section {
            padding: 40px 20px;
            background: #111127;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid #00aaff;
        }
        .search-form input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            background: #0a0a1a;
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            padding: 0 30px;
            background: linear-gradient(90deg, #00aaff, #0088cc);
            color: white;
            border: none;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(90deg, #00ccff, #0099dd);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 20px;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        article {
            background: rgba(17, 17, 39, 0.7);
            border-radius: 15px;
            padding: 40px;
            border: 1px solid #222244;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .article-meta {
            color: #8888cc;
            margin-bottom: 30px;
            font-size: 0.95rem;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        h2, h3, h4 {
            color: #00e5ff;
            margin-top: 40px;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        h2 { font-size: 2.2rem; border-left: 5px solid #ffaa00; padding-left: 15px; }
        h3 { font-size: 1.8rem; }
        h4 { font-size: 1.4rem; color: #ffaa00; }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: #ccccff;
            text-align: justify;
        }
        .highlight-box {
            background: linear-gradient(135deg, #112233, #223344);
            border-left: 5px solid #00e5ff;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .inline-link {
            color: #80a0ff;
            text-decoration: none;
            border-bottom: 1px dashed #80a0ff;
            transition: all 0.2s;
        }
        .inline-link:hover {
            color: #00e5ff;
            border-bottom: 1px solid #00e5ff;
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            margin: 30px auto;
            border: 2px solid #00aaff;
            box-shadow: 0 10px 25px rgba(0, 170, 255, 0.2);
        }
        .content-link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 40px 0;
            justify-content: center;
        }
        .content-link-list a {
            padding: 10px 20px;
            background: #222244;
            color: #b0b0ff;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.3s;
        }
        .content-link-list a:hover {
            background: #00aaff;
            color: white;
            transform: translateY(-3px);
        }
        aside {
            background: rgba(17, 17, 39, 0.7);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid #222244;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 40px;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #00aaff;
        }
        .trailer-list li {
            list-style: none;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #333355;
        }
        .trailer-list a {
            color: #b0b0ff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: color 0.3s;
        }
        .trailer-list a:hover {
            color: #00e5ff;
        }
        .rating-section, .comment-section {
            background: rgba(10, 10, 22, 0.8);
            border-radius: 15px;
            padding: 30px;
            margin-top: 40px;
            border: 1px solid #222244;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            margin: 20px 0;
            justify-content: center;
        }
        .star-rating input { display: none; }
        .star-rating label {
            font-size: 2rem;
            color: #444466;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffaa00;
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #aaaaee;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 15px;
            background: #0a0a1a;
            border: 1px solid #333355;
            border-radius: 8px;
            color: white;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: #00aaff;
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .site-footer {
            background: #0a0a16;
            border-top: 1px solid #222244;
            padding: 60px 20px 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #00e5ff;
            margin-bottom: 20px;
        }
        .footer-links a {
            display: block;
            color: #8888cc;
            text-decoration: none;
            margin-bottom: 12px;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #00e5ff;
        }
        friend-link {
            display: block;
            padding: 15px;
            background: #111127;
            border-radius: 8px;
            margin-bottom: 15px;
            border-left: 4px solid #00aaff;
        }
        friend-link a {
            color: #b0b0ff;
            text-decoration: none;
            font-weight: 600;
        }
        friend-link a:hover {
            color: #00e5ff;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #222244;
            color: #666699;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.2rem; }
            .hero p { font-size: 1rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            article, aside { padding: 25px; }
            .main-content { padding: 20px 15px; }
            .form-control { padding: 12px; }
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeInUp 0.8s ease-out;
        }
