        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ff4655;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(90deg, #ff4655, #ff8a00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            transition: transform 0.3s;
        }
        .logo a:hover { transform: scale(1.05); }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: #ccc;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
            transition: all 0.3s;
            position: relative;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #ff4655;
            background: rgba(255, 70, 85, 0.1);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 12px;
            width: 0;
            height: 2px;
            background: #ff4655;
            transition: width 0.3s;
        }
        .main-nav a:hover::after { width: calc(100% - 24px); }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #ff4655;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
            border-bottom: 1px solid #333;
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: #ff8a00;
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb i { margin: 0 8px; }
        .search-section {
            background: rgba(30, 30, 46, 0.7);
            padding: 25px;
            border-radius: 12px;
            margin: 30px auto;
            text-align: center;
            border: 1px solid #444;
            max-width: 800px;
        }
        .search-section h2 {
            color: #ff8a00;
            margin-bottom: 15px;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid #444;
            border-radius: 8px 0 0 8px;
            background: #1e1e2e;
            color: #fff;
            font-size: 1rem;
        }
        .search-button {
            background: linear-gradient(90deg, #ff4655, #ff6b6b);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        .search-button:hover { background: linear-gradient(90deg, #ff2d3f, #ff5252); }
        main { flex-grow: 1; padding: 30px 0; }
        article {
            background: rgba(20, 20, 35, 0.8);
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #333;
        }
        h1 {
            color: #ff4655;
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
            text-align: center;
            border-bottom: 3px solid #ff4655;
            padding-bottom: 20px;
        }
        h2 {
            color: #00c9ff;
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #00c9ff;
        }
        h3 {
            color: #ff8a00;
            font-size: 1.6rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #b0b0ff;
            font-weight: 500;
            background: rgba(0, 201, 255, 0.05);
            padding: 20px;
            border-left: 5px solid #00c9ff;
            border-radius: 0 8px 8px 0;
            margin-bottom: 30px;
        }
        .highlight {
            background: rgba(255, 70, 85, 0.15);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #ff4655;
            margin: 25px 0;
        }
        .highlight strong { color: #ffcc00; }
        .info-box {
            background: rgba(0, 201, 255, 0.1);
            border-left: 5px solid #00c9ff;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        ul, ol { padding-left: 30px; margin-bottom: 1.5em; }
        li { margin-bottom: 0.7em; }
        a { color: #00c9ff; }
        a:hover { color: #ffcc00; text-decoration: none; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .release-date-banner {
            text-align: center;
            background: linear-gradient(90deg, #ff2d3f, #ff8a00);
            color: white;
            padding: 25px;
            border-radius: 12px;
            margin: 40px 0;
            font-size: 1.8rem;
            font-weight: bold;
            box-shadow: 0 5px 15px rgba(255, 70, 85, 0.4);
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .feature-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            border: 3px solid #444;
            box-shadow: 0 10px 20px rgba(0,0,0,0.7);
            transition: transform 0.5s;
        }
        .feature-img:hover { transform: scale(1.02); }
        .img-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .interactive-section {
            background: rgba(40, 40, 60, 0.7);
            border-radius: 12px;
            padding: 30px;
            margin: 50px 0;
            border: 1px solid #555;
        }
        .interactive-section h2 { color: #ffcc00; }
        .rating-form, .comment-form {
            display: grid;
            gap: 20px;
            margin-top: 20px;
        }
        .stars {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star.active, .star:hover { color: #ffcc00; }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #b0b0ff;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 15px;
            border-radius: 8px;
            border: 2px solid #444;
            background: #1e1e2e;
            color: #fff;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: #00c9ff;
        }
        .submit-btn {
            background: linear-gradient(90deg, #00c9ff, #0099cc);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            justify-self: start;
            font-size: 1.1rem;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #00b7e6, #0088aa);
            box-shadow: 0 5px 15px rgba(0, 201, 255, 0.3);
        }
        .long-tail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 50px 0 30px;
            padding: 30px;
            background: rgba(10, 10, 20, 0.8);
            border-radius: 12px;
            border-top: 3px solid #ff4655;
        }
        .web-link {
            background: rgba(50, 50, 70, 0.5);
            padding: 15px;
            border-radius: 8px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(255, 70, 85, 0.2);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ffcc00;
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover { color: #fff; text-decoration: underline; }
        .site-footer {
            background: rgba(5, 5, 10, 0.95);
            color: #aaa;
            text-align: center;
            padding: 40px 20px;
            border-top: 2px solid #333;
            margin-top: 50px;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 25px;
        }
        .footer-links a {
            color: #00c9ff;
            text-decoration: none;
        }
        .footer-links a:hover { color: #ffcc00; }
        .copyright { font-size: 0.9rem; color: #777; }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 15, 0.98);
                flex-direction: column;
                padding: 20px;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease-in-out;
            }
            .main-nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .main-nav ul {
                flex-direction: column;
                gap: 15px;
            }
            .header-content { padding: 0 10px; }
            .logo a { font-size: 1.8rem; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.4rem; }
            article { padding: 25px 20px; }
            .search-form { flex-direction: column; }
            .search-input { border-radius: 8px; margin-bottom: 10px; }
            .search-button { border-radius: 8px; padding: 15px; }
            .release-date-banner { font-size: 1.4rem; padding: 20px; }
            .long-tail-links { grid-template-columns: 1fr; padding: 20px; }
            .footer-links { flex-direction: column; gap: 15px; }
        }
