* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #e53935;
            --primary-dark: #b71c1c;
            --secondary: #1a237e;
            --dark: #121212;
            --light: #f5f5f5;
            --gray: #333;
            --light-gray: #777;
            --transition: all 0.3s ease;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --radius: 8px;
        }
        body {
            background-color: #0a0a0a;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ff6f60;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 100%);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
            border-bottom: 2px solid var(--primary);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(45deg, #e53935, #ff8a80);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: #fff;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
        }
        nav a:hover {
            background-color: rgba(229, 57, 53, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--light-gray);
        }
        .breadcrumb a {
            color: var(--light-gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        main {
            padding: 2rem 0;
            background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
        }
        article {
            background: rgba(30, 30, 30, 0.8);
            border-radius: var(--radius);
            padding: 3rem;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
            border: 1px solid #333;
        }
        h1 {
            color: #fff;
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: center;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
            border-bottom: 3px solid var(--primary);
            padding-bottom: 1rem;
        }
        h2 {
            color: #ffccbc;
            font-size: 2.2rem;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #444;
        }
        h3 {
            color: #b0bec5;
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: #cfd8dc;
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(229, 57, 53, 0.1);
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .legend-card {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        .card {
            background: #222;
            border-radius: var(--radius);
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid #444;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(229, 57, 53, 0.2);
            border-color: var(--primary);
        }
        .card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-bottom: 2px solid var(--primary);
        }
        .card-content {
            padding: 1.5rem;
        }
        .update-time {
            text-align: center;
            color: var(--light-gray);
            font-style: italic;
            margin-bottom: 2rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--radius);
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: var(--radius);
            margin: 2rem 0;
            border: 3px solid var(--primary);
        }
        .interactive-section {
            background: rgba(26, 35, 126, 0.1);
            border-radius: var(--radius);
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid var(--secondary);
        }
        .interactive-section h2 {
            color: #8c9eff;
            border-bottom-color: var(--secondary);
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            max-width: 600px;
            margin: 0 auto;
        }
        input, textarea, select {
            padding: 1rem;
            border-radius: var(--radius);
            border: 1px solid #444;
            background: #111;
            color: white;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary);
        }
        button {
            background: linear-gradient(45deg, var(--primary), var(--primary-dark));
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: var(--radius);
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        button:hover {
            background: linear-gradient(45deg, #ff5252, #d32f2f);
            transform: scale(1.05);
        }
        .rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating label:hover,
        .rating label:hover ~ label,
        .rating input:checked ~ label {
            color: #ffd700;
        }
        footer {
            background: #000;
            padding: 3rem 0 1.5rem;
            border-top: 2px solid var(--primary);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: #fff;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .friend-link {
            display: inline-block;
            background: rgba(255, 255, 255, 0.05);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            margin: 0.3rem;
            border: 1px solid #333;
        }
        .friend-link:hover {
            background: rgba(229, 57, 53, 0.2);
            border-color: var(--primary);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: var(--light-gray);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            article { padding: 2rem; }
            .legend-card { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
        }
        @media (max-width: 768px) {
            .header-content { flex-direction: column; align-items: flex-start; }
            nav ul { flex-direction: column; width: 100%; display: none; margin-top: 1rem; }
            nav ul.active { display: flex; }
            .hamburger { display: block; position: absolute; top: 1.5rem; right: 20px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            article { padding: 1.5rem; }
            .legend-card { grid-template-columns: 1fr; }
        }
