        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0e17;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
            background-image: radial-gradient(circle at 15% 50%, rgba(25, 45, 85, 0.7) 0%, transparent 20%), radial-gradient(circle at 85% 30%, rgba(70, 20, 60, 0.5) 0%, transparent 20%);
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #74c0fc;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, rgba(10, 14, 23, 0.95) 0%, rgba(20, 30, 48, 0.95) 100%);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #1e2a47;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(90deg, #ffd43b, #f76707);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #ffd43b;
            margin: 3px 0;
            border-radius: 2px;
            transition: 0.3s;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: #c0c0c0;
            font-weight: 600;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #ffd43b;
            border-bottom-color: #ffd43b;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #8a8a8a;
            background-color: rgba(20, 30, 48, 0.6);
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: #a5d8ff;
        }
        .search-module {
            background: rgba(30, 42, 71, 0.8);
            border-radius: 50px;
            padding: 25px;
            margin: 30px 0;
            text-align: center;
            border: 1px solid #2d3f6e;
        }
        .search-module h3 {
            color: #ffd43b;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid #3a5bc7;
            border-radius: 30px 0 0 30px;
            background: #1a243f;
            color: #fff;
            font-size: 1rem;
            outline: none;
        }
        .search-btn {
            background: linear-gradient(90deg, #3a5bc7, #5c7cfa);
            color: white;
            border: none;
            border-radius: 0 30px 30px 0;
            padding: 0 30px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        .search-btn:hover {
            background: linear-gradient(90deg, #5c7cfa, #748ffc);
            transform: scale(1.05);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px 0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .main-article {
            background: rgba(20, 30, 48, 0.7);
            border-radius: 15px;
            padding: 40px;
            border: 1px solid #2d3f6e;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 3rem;
            color: #ffd43b;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 0 2px 5px rgba(0,0,0,0.7);
            border-bottom: 3px solid #3a5bc7;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2.2rem;
            color: #74c0fc;
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 5px solid #f76707;
        }
        h3 {
            font-size: 1.8rem;
            color: #a5d8ff;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #b197fc;
            margin: 25px 0 12px;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.3rem;
            color: #d0ebff;
            background: rgba(58, 91, 199, 0.1);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 35px;
            border-left: 5px solid #ffd43b;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255, 212, 59, 0.15), transparent);
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
            border: 1px dashed #ffd43b;
        }
        .release-date-box {
            background: linear-gradient(135deg, #1a237e, #4a148c);
            color: white;
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            margin: 30px auto;
            max-width: 500px;
            border: 3px solid #ffd43b;
            box-shadow: 0 8px 20px rgba(255, 212, 59, 0.3);
        }
        .release-date-box .date {
            font-size: 3.5rem;
            font-weight: bold;
            color: #ffd43b;
            text-shadow: 0 0 10px rgba(255, 212, 59, 0.7);
        }
        .sidebar {
            background: rgba(20, 30, 48, 0.7);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid #2d3f6e;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 35px;
        }
        .sidebar-widget h3 {
            color: #ffa94d;
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3a5bc7;
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 15px;
            padding-left: 20px;
            position: relative;
        }
        .related-links li:before {
            content: '▸';
            color: #ffd43b;
            position: absolute;
            left: 0;
        }
        .interactive-module {
            background: rgba(30, 42, 71, 0.8);
            border-radius: 15px;
            padding: 30px;
            margin: 50px 0;
            border: 1px solid #3a5bc7;
        }
        .interactive-module h2 {
            text-align: center;
            border: none;
        }
        .rating-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 25px 0;
        }
        .stars {
            font-size: 2.5rem;
            color: #495057;
            cursor: pointer;
            margin-bottom: 15px;
        }
        .stars .star {
            margin: 0 5px;
            transition: color 0.2s, transform 0.2s;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffd43b;
            transform: scale(1.2);
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 25px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 8px;
            color: #a5d8ff;
            font-weight: 600;
        }
        .form-input,
        .form-textarea {
            padding: 15px;
            border-radius: 8px;
            border: 2px solid #3a5bc7;
            background: #1a243f;
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .form-input:focus,
        .form-textarea:focus {
            border-color: #ffd43b;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #f76707, #ff922b);
            color: white;
            border: none;
            border-radius: 30px;
            padding: 18px 30px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            align-self: flex-start;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #ff922b, #ffb347);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(247, 103, 7, 0.4);
        }
        .site-footer {
            background: linear-gradient(180deg, #0a0e17 0%, #141e30 100%);
            border-top: 2px solid #1e2a47;
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: #ffd43b;
            margin-bottom: 25px;
            font-size: 1.4rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 15px;
            margin: 10px 0;
            border-left: 4px solid #3a5bc7;
            transition: transform 0.3s, background 0.3s;
        }
        friend-link:hover {
            background: rgba(58, 91, 199, 0.2);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2d3f6e;
            color: #8a8a8a;
            font-size: 0.95rem;
        }
        .update-time {
            color: #ffa94d;
            font-weight: bold;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .main-nav ul {
                flex-direction: column;
                position: fixed;
                top: 80px;
                right: -100%;
                background: rgba(20, 30, 48, 0.98);
                width: 80%;
                height: calc(100vh - 80px);
                padding: 40px 30px;
                transition: right 0.5s ease;
                border-left: 2px solid #3a5bc7;
                z-index: 999;
            }
            .main-nav.active ul {
                right: 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .main-article {
                padding: 25px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input,
            .search-btn {
                border-radius: 30px;
                width: 100%;
            }
            .search-input {
                margin-bottom: 15px;
            }
        }
