:root {
            --primary-dark: #1a1f2e;
            --primary-accent: #e53935;
            --secondary-accent: #4fc3f7;
            --text-primary: #f5f5f5;
            --text-secondary: #b0bec5;
            --background-card: #252a3a;
            --border-color: #37474f;
            --success-color: #4caf50;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-primary);
            background: linear-gradient(135deg, var(--primary-dark) 0%, #0d1117 100%);
            min-height: 100vh;
        }
        a {
            color: var(--secondary-accent);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--primary-accent);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(26, 31, 46, 0.95);
            border-bottom: 2px solid var(--primary-accent);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -1px;
        }
        .search-form {
            display: flex;
            flex-grow: 1;
            max-width: 400px;
            margin: 0 30px;
        }
        .search-form input {
            flex-grow: 1;
            padding: 10px 15px;
            border: 1px solid var(--border-color);
            border-radius: 4px 0 0 4px;
            background: var(--background-card);
            color: var(--text-primary);
        }
        .search-form button {
            background: var(--primary-accent);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            background-color: var(--background-card);
            border-radius: 4px;
            overflow: hidden;
        }
        nav ul li {
            flex: 1;
        }
        nav ul li a {
            display: block;
            padding: 15px 20px;
            text-align: center;
            font-weight: 600;
            border-right: 1px solid var(--border-color);
        }
        nav ul li:last-child a {
            border-right: none;
        }
        nav ul li a:hover {
            background-color: var(--primary-accent);
            color: white;
        }
        .breadcrumb {
            padding: 10px 0;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            padding: 30px 0;
        }
        article {
            background: var(--background-card);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
            color: var(--text-primary);
            border-bottom: 3px solid var(--primary-accent);
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            margin: 30px 0 15px;
            color: var(--secondary-accent);
            padding-left: 10px;
            border-left: 5px solid var(--secondary-accent);
        }
        h3 {
            font-size: 1.5rem;
            margin: 25px 0 10px;
            color: var(--text-primary);
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight {
            background: rgba(79, 195, 247, 0.1);
            border-left: 4px solid var(--secondary-accent);
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 4px 4px 0;
        }
        .voice-line-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            background: rgba(255, 255, 255, 0.05);
        }
        .voice-line-table th, .voice-line-table td {
            border: 1px solid var(--border-color);
            padding: 12px 15px;
            text-align: left;
        }
        .voice-line-table th {
            background-color: var(--primary-accent);
            color: white;
            font-weight: 600;
        }
        .voice-line-table tr:nth-child(even) {
            background-color: rgba(255, 255, 255, 0.02);
        }
        .voice-line-table tr:hover {
            background-color: rgba(79, 195, 247, 0.1);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
            border: 2px solid var(--border-color);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-secondary);
            margin-top: -10px;
            margin-bottom: 20px;
        }
        aside {
            background: var(--background-card);
            border-radius: 10px;
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--primary-accent);
        }
        .user-interaction {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 10px 0;
        }
        .star {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: gold;
        }
        .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 10px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 4px;
            color: var(--text-primary);
        }
        .comment-form button {
            background: var(--primary-accent);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 4px;
            cursor: pointer;
            width: 100%;
            font-weight: bold;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
            padding: 40px 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            margin-top: 40px;
        }
        .web-link {
            background: var(--background-card);
            padding: 15px;
            border-radius: 6px;
            transition: transform 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: rgba(79, 195, 247, 0.1);
        }
        .web-link a {
            display: block;
            text-align: center;
            font-weight: 600;
        }
        footer {
            text-align: center;
            padding: 30px 0;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .footer-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                max-width: 100%;
                margin: 15px 0 0 0;
            }
            .mobile-toggle {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                margin-top: 15px;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li a {
                border-right: none;
                border-bottom: 1px solid var(--border-color);
            }
            h1 {
                font-size: 2.2rem;
            }
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
        }
