        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a0a0a;
            color: #e0e0e0;
            line-height: 1.8;
            background-image: linear-gradient(rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.95)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%231a1a1a"/><path d="M0 50L50 0L100 50L50 100Z" fill="%23111111" opacity="0.3"/></svg>');
        }
        a {
            color: #ff4655;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ff7b85;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(255, 70, 85, 0.2);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(20, 20, 20, 0.95);
            border-bottom: 3px solid #ff4655;
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.8rem;
            background: linear-gradient(90deg, #ff4655, #ff8e53);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 15px rgba(255, 70, 85, 0.5);
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: unset;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
            background-color: #151515;
            border-bottom: 1px solid #333;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb a:hover {
            color: #ff4655;
        }
        .breadcrumb i {
            margin: 0 8px;
        }
        .main-nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background-color: rgba(255, 70, 85, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ff4655;
            cursor: pointer;
            padding: 0.5rem;
        }
        .search-container {
            background: linear-gradient(135deg, #1a1a1a, #222);
            padding: 3rem;
            border-radius: 12px;
            margin: 3rem 0;
            border-left: 6px solid #ff4655;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        }
        .search-container h2 {
            margin-bottom: 1.5rem;
            color: #ff8e53;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: 2px solid #444;
            border-radius: 50px;
            background-color: #111;
            color: #fff;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .search-input:focus {
            outline: none;
            border-color: #ff4655;
        }
        .search-btn {
            padding: 1rem 2rem;
            background: linear-gradient(90deg, #ff4655, #ff8e53);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .search-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 70, 85, 0.4);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 3rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: rgba(25, 25, 25, 0.8);
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
            border: 1px solid #333;
        }
        h1 {
            font-size: 3.2rem;
            color: #ff4655;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px #000;
            border-bottom: 4px solid #ff8e53;
            padding-bottom: 1rem;
        }
        .meta-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
            border-bottom: 1px dashed #444;
            margin-bottom: 2.5rem;
            font-size: 0.95rem;
            color: #aaa;
        }
        .last-updated {
            color: #ff8e53;
            font-weight: bold;
        }
        h2 {
            font-size: 2.4rem;
            color: #ff8e53;
            margin: 3rem 0 1.5rem;
            padding-left: 15px;
            border-left: 5px solid #ff4655;
        }
        h3 {
            font-size: 1.8rem;
            color: #e0e0e0;
            margin: 2.5rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #ccc;
            margin: 2rem 0 1rem;
            font-style: italic;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.1rem;
            text-align: justify;
            padding: 0 0.5rem;
        }
        .highlight {
            background-color: rgba(255, 70, 85, 0.15);
            border-left: 4px solid #ff4655;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
            font-weight: bold;
        }
        .feature-img {
            margin: 3rem auto;
            max-width: 800px;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #999;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        aside {
            background-color: rgba(30, 30, 30, 0.9);
            border-radius: 12px;
            padding: 2rem;
            align-self: start;
            position: sticky;
            top: 140px;
            border: 1px solid #444;
        }
        .sidebar-section {
            margin-bottom: 2.5rem;
        }
        .sidebar-section h3 {
            font-size: 1.5rem;
            color: #ff8e53;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #444;
        }
        .internal-links ul {
            list-style: none;
            padding-left: 1rem;
        }
        .internal-links li {
            margin-bottom: 1rem;
            padding-left: 1rem;
            position: relative;
        }
        .internal-links li:before {
            content: '⚔️';
            position: absolute;
            left: -1rem;
            top: 2px;
        }
        .interactive-section {
            background: linear-gradient(135deg, #1a1a1a, #252525);
            border-radius: 12px;
            padding: 2.5rem;
            margin-top: 4rem;
            border: 1px solid #444;
        }
        .interactive-section h2 {
            margin-top: 0;
        }
        .rating-form, .comment-form {
            margin-top: 2rem;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 1rem 0;
            direction: rtl;
        }
        .star {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star:hover ~ .star {
            color: #ff8e53;
        }
        .star.active {
            color: #ff4655;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            color: #ccc;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 1rem;
            background-color: #111;
            border: 2px solid #444;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #ff4655;
        }
        .submit-btn {
            background: linear-gradient(90deg, #ff4655, #ff8e53);
            color: white;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            display: block;
            margin: 2rem auto 0;
        }
        .submit-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(255, 70, 85, 0.4);
        }
        footer {
            background-color: #111;
            border-top: 3px solid #ff4655;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #ff8e53;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        friend-link {
            display: block;
            background-color: #1a1a1a;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            border-left: 4px solid #ff4655;
            transition: transform 0.3s;
        }
        friend-link:hover {
            transform: translateX(10px);
            background-color: #222;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .my-logo {
                font-size: 2.2rem;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 20px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
                gap: 0;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                width: 100%;
            }
            .nav-links a {
                display: block;
                padding: 1rem;
                border-bottom: 1px solid #333;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            article, .search-container, .interactive-section {
                padding: 2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-btn {
                width: 100%;
            }
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 70, 85, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(255, 70, 85, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 70, 85, 0); }
        }
        .pulse-highlight {
            animation: pulse 2s infinite;
            border-radius: 8px;
            padding: 1rem;
        }
        .emoji-heading {
            font-size: 1.8rem;
            margin-right: 10px;
        }
        .special-list {
            list-style: none;
            padding-left: 0;
        }
        .special-list li {
            padding: 0.8rem 0;
            border-bottom: 1px dashed #444;
            padding-left: 2.5rem;
            position: relative;
        }
        .special-list li:before {
            content: '🔥';
            position: absolute;
            left: 0;
            top: 0.8rem;
        }
