        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #ff4655;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ff6b7a;
            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;
        }
        section {
            padding: 60px 0;
        }
        h1, h2, h3, h4 {
            color: #ffffff;
            margin-bottom: 1rem;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 {
            font-size: 3.5rem;
            background: linear-gradient(90deg, #ff4655, #ff8a00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1.5rem;
        }
        h2 {
            font-size: 2.5rem;
            border-left: 5px solid #ff4655;
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #ffcc00;
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #66ccff;
            margin-top: 1.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        strong {
            color: #ffcc00;
            font-weight: 700;
        }
        em {
            color: #66ccff;
            font-style: italic;
        }
        blockquote {
            border-left: 4px solid #ff4655;
            padding: 20px;
            margin: 30px 0;
            background-color: rgba(255, 70, 85, 0.05);
            font-style: italic;
            border-radius: 0 8px 8px 0;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        header {
            background-color: rgba(15, 20, 25, 0.95);
            border-bottom: 2px solid #ff4655;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff4655, #ff8a00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: #ff4655;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ff4655;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            color: #e0e0e0;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            position: relative;
        }
        nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ff4655;
            transition: width 0.3s ease;
        }
        nav a:hover:after {
            width: 100%;
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: rgba(255, 255, 255, 0.03);
            border-bottom: 1px solid #333;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-bottom: 0;
            margin-right: 10px;
        }
        .breadcrumb li:not(:last-child):after {
            content: '›';
            margin-left: 10px;
            color: #888;
        }
        .hero {
            background: radial-gradient(circle at 70% 30%, rgba(255, 70, 85, 0.15), transparent 50%),
                        linear-gradient(to bottom, rgba(15, 20, 25, 0.9), #0f1419);
            text-align: center;
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #cccccc;
        }
        .search-section {
            background-color: rgba(30, 35, 40, 0.7);
            padding: 30px 0;
            text-align: center;
        }
        .search-form {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(255, 70, 85, 0.2);
        }
        .search-form input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            background-color: #1a1f25;
            color: white;
            font-size: 1.1rem;
        }
        .search-form button {
            background: linear-gradient(90deg, #ff4655, #ff8a00);
            color: white;
            border: none;
            padding: 0 35px;
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .search-form button:hover {
            background: linear-gradient(90deg, #ff8a00, #ff4655);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        main {
            background-color: rgba(30, 35, 40, 0.5);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        aside {
            background-color: rgba(30, 35, 40, 0.5);
            border-radius: 15px;
            padding: 25px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            color: #aaa;
            font-size: 0.95rem;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #444;
        }
        .featured-image {
            margin: 30px 0;
            text-align: center;
        }
        .featured-image figcaption {
            margin-top: 10px;
            font-style: italic;
            color: #aaa;
            font-size: 0.9rem;
        }
        .interactive-box {
            background: linear-gradient(135deg, rgba(255, 70, 85, 0.1), rgba(30, 35, 40, 0.8));
            border: 1px solid #ff4655;
            border-radius: 10px;
            padding: 25px;
            margin: 40px 0;
        }
        .interactive-box h3 {
            color: #ffcc00;
            margin-top: 0;
        }
        .rating-section, .comment-section {
            margin-top: 40px;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
        }
        .stars i {
            transition: color 0.2s ease;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffcc00;
        }
        input, textarea, select {
            padding: 15px;
            background-color: #1a1f25;
            border: 1px solid #444;
            border-radius: 8px;
            color: white;
            font-size: 1rem;
        }
        button[type="submit"] {
            background: linear-gradient(90deg, #ff4655, #ff8a00);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        button[type="submit"]:hover {
            background: linear-gradient(90deg, #ff8a00, #ff4655);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 70, 85, 0.3);
        }
        .related-links {
            margin: 40px 0;
        }
        .related-links h3 {
            color: #66ccff;
        }
        .related-links ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        .related-links li {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 15px;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .related-links li:hover {
            transform: translateX(5px);
            background-color: rgba(255, 70, 85, 0.1);
        }
        .related-links a {
            color: #e0e0e0;
            display: block;
            font-weight: 600;
        }
        .related-links a:hover {
            color: #ff4655;
        }
        footer {
            background-color: #0a0e12;
            border-top: 2px solid #ff4655;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        .footer-logo {
            flex: 1;
            min-width: 250px;
        }
        .footer-logo .logo {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        .friend-links {
            flex: 2;
            min-width: 300px;
        }
        friend-link {
            display: block;
            background-color: rgba(255, 255, 255, 0.03);
            padding: 12px 20px;
            margin-bottom: 10px;
            border-radius: 5px;
            border-left: 3px solid #ff4655;
            transition: all 0.3s ease;
        }
        friend-link:hover {
            background-color: rgba(255, 70, 85, 0.1);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
            width: 100%;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            h1 {
                font-size: 3rem;
            }
            h2 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(15, 20, 25, 0.98);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                gap: 15px;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s ease;
                z-index: 999;
                border-bottom: 2px solid #ff4655;
            }
            nav.active ul {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .header-container, .breadcrumb {
                padding-left: 15px;
                padding-right: 15px;
            }
            main, aside {
                padding: 25px 20px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            .hero {
                padding: 60px 15px;
            }
            .search-form {
                flex-direction: column;
                border-radius: 15px;
            }
            .search-form input, .search-form button {
                width: 100%;
                border-radius: 0;
            }
        }
