        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            color: #ff6b6b;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff9e6d;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
        }
        header {
            background-color: #1a1f2e;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ff4757;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        }
        .logo a:hover {
            color: #ff6b81;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 25px;
        }
        nav ul li a {
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        nav ul li a:hover {
            background-color: #2d3548;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ff4757;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #ff9e6d;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        main {
            padding: 30px 0;
            background: linear-gradient(to bottom, #0f1419, #1a1f2e);
        }
        article {
            background-color: #1e2535;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.6);
            margin-bottom: 40px;
        }
        h1 {
            font-size: 3.5rem;
            color: #ff9e6d;
            margin-bottom: 25px;
            text-align: center;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
            line-height: 1.2;
        }
        h2 {
            font-size: 2.5rem;
            color: #6c5ce7;
            margin-top: 40px;
            margin-bottom: 20px;
            border-left: 5px solid #ff6b6b;
            padding-left: 15px;
        }
        h3 {
            font-size: 2rem;
            color: #a29bfe;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        h4 {
            font-size: 1.6rem;
            color: #dfe6e9;
            margin-top: 25px;
            margin-bottom: 12px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background-color: #2d3548;
            padding: 25px;
            border-radius: 10px;
            margin: 25px 0;
            border-left: 5px solid #ff6b6b;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 10px;
        }
        b, strong {
            color: #ffd93d;
            font-weight: 700;
        }
        .featured-image {
            width: 80%;
            margin: 30px auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.8);
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-image img:hover {
            transform: scale(1.03);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 1rem;
        }
        .content-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .link-card {
            background-color: #2d3548;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .link-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(0,0,0,0.5);
        }
        .link-card a {
            font-size: 1.3rem;
            color: #a29bfe;
        }
        .interactive-section {
            margin: 50px 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .search-box, .comment-form, .rating-form {
            background-color: #2d3548;
            padding: 25px;
            border-radius: 15px;
        }
        .search-box h3, .comment-form h3, .rating-form h3 {
            color: #6c5ce7;
            margin-bottom: 20px;
        }
        form input, form textarea, form select {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 2px solid #444;
            border-radius: 8px;
            background-color: #1e2535;
            color: #e0e0e0;
            font-size: 1rem;
        }
        form button {
            background-color: #ff6b6b;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background-color 0.3s ease;
        }
        form button:hover {
            background-color: #ff4757;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars label:hover,
        .stars label:hover ~ label {
            color: #ffd93d;
        }
        .stars input:checked ~ label {
            color: #ffd93d;
        }
        footer {
            background-color: #1a1f2e;
            padding: 40px 0;
            text-align: center;
            border-top: 3px solid #6c5ce7;
        }
        friend-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        friend-link a {
            background-color: #2d3548;
            padding: 12px 25px;
            border-radius: 8px;
            font-size: 1.1rem;
            color: #a29bfe;
        }
        friend-link a:hover {
            background-color: #6c5ce7;
            color: white;
        }
        .copyright {
            color: #aaa;
            font-size: 1rem;
            margin-top: 20px;
        }
        .update-time {
            color: #ff9e6d;
            font-weight: bold;
        }
        @media (max-width: 992px) {
            h1 { font-size: 3rem; }
            h2 { font-size: 2.2rem; }
            h3 { font-size: 1.8rem; }
            article { padding: 30px; }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #2d3548;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
                text-align: center;
            }
            .hamburger {
                display: block;
            }
            .featured-image {
                width: 100%;
            }
            .interactive-section {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 576px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            p { font-size: 1.1rem; }
            article { padding: 20px; }
            .logo a { font-size: 1.8rem; }
        }
