        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #2a0a40;
            --primary-accent: #8a2be2;
            --secondary-accent: #ff00aa;
            --text-light: #f0e6ff;
            --text-gray: #ccc;
            --bg-card: rgba(42, 10, 64, 0.85);
            --border-glow: rgba(138, 43, 226, 0.5);
            --transition: all 0.3s ease;
        }
        body {
            background: linear-gradient(135deg, #0c001f 0%, #1a0033 50%, #0c001f 100%);
            color: var(--text-light);
            line-height: 1.7;
            min-height: 100vh;
            background-attachment: fixed;
        }
        a {
            color: var(--secondary-accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ff66cc;
            text-shadow: 0 0 8px var(--secondary-accent);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .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;
        }
        .site-header {
            background: linear-gradient(to bottom, rgba(42, 10, 64, 0.95) 0%, rgba(20, 5, 35, 0.9) 100%);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            border-bottom: 2px solid var(--border-glow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: -1px;
        }
        .logo a:hover {
            text-shadow: 0 0 15px rgba(138, 43, 226, 0.7);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 600;
        }
        .nav-desktop a:hover {
            background: rgba(255, 0, 170, 0.15);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: var(--bg-card);
            border: 1px solid var(--border-glow);
            border-radius: 10px;
            padding: 1rem;
            margin-top: 1rem;
            position: absolute;
            top: 100%;
            right: 20px;
            width: 250px;
            z-index: 1001;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-gray);
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--text-light);
        }
        main {
            padding: 2rem 0 4rem;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px dashed var(--border-glow);
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, #ff00aa, #8a2be2);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            .article-header h1 {
                font-size: 2rem;
            }
        }
        .meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            color: var(--text-gray);
            font-size: 0.95rem;
            flex-wrap: wrap;
        }
        .meta span i {
            margin-right: 0.5rem;
            color: var(--primary-accent);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: var(--bg-card);
            border-radius: 15px;
            padding: 2.5rem;
            border: 1px solid var(--border-glow);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .article-content h2 {
            color: var(--secondary-accent);
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-glow);
            font-size: 1.8rem;
        }
        .article-content h3 {
            color: #cc99ff;
            margin: 2rem 0 1rem;
            font-size: 1.4rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 0, 170, 0.1);
            border-left: 4px solid var(--secondary-accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-image figcaption {
            font-style: italic;
            color: var(--text-gray);
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .death-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--primary-accent);
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
        }
        .stat-card .number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--secondary-accent);
            display: block;
            line-height: 1;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: var(--text-gray);
            margin-top: 0.5rem;
        }
        .interactive-section {
            background: rgba(20, 5, 35, 0.7);
            border-radius: 10px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid var(--border-glow);
        }
        .interactive-section h3 {
            margin-top: 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: var(--bg-card);
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid var(--border-glow);
        }
        .sidebar-widget h3 {
            color: var(--primary-accent);
            margin-bottom: 1rem;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid var(--primary-accent);
            border-right: none;
            border-radius: 20px 0 0 20px;
            color: var(--text-light);
        }
        .search-box button {
            background: var(--primary-accent);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 20px 20px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: var(--secondary-accent);
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed rgba(255,255,255,0.1);
        }
        .related-links li:last-child {
            border-bottom: none;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
        }
        .stars .star {
            transition: var(--transition);
        }
        .stars .star:hover,
        .stars .star.active {
            color: gold;
            transform: scale(1.1);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            padding: 0.8rem 1rem;
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid var(--primary-accent);
            border-radius: 8px;
            color: var(--text-light);
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent));
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .submit-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 0, 170, 0.4);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .web-link {
            background: rgba(42, 10, 64, 0.5);
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid transparent;
            transition: var(--transition);
        }
        .web-link:hover {
            border-color: var(--border-glow);
            background: rgba(42, 10, 64, 0.8);
        }
        .site-footer {
            background: rgba(10, 2, 20, 0.95);
            padding: 3rem 0 2rem;
            border-top: 2px solid var(--border-glow);
            text-align: center;
        }
        .footer-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }
        .copyright {
            color: var(--text-gray);
            font-size: 0.9rem;
            width: 100%;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
