        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #e94560;
            --accent-light: #ff7b9c;
            --light: #f1f1f1;
            --gray: #8a8a8a;
            --dark-gray: #333;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(0,0,0,0.1);
            --border-radius: 10px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--dark-gray);
            background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
            border-bottom: 3px solid var(--accent);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            color: var(--accent);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            transition: var(--transition);
        }
        .my-logo:hover {
            color: var(--accent-light);
            transform: scale(1.05);
        }
        .my-logo i {
            margin-right: 10px;
            font-size: 2.5rem;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: var(--light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: var(--border-radius);
            transition: var(--transition);
            position: relative;
        }
        .desktop-nav a:hover,
        .desktop-nav a.active {
            background-color: var(--accent);
            color: white;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--accent-light);
            transition: var(--transition);
        }
        .desktop-nav a:hover::after {
            width: 80%;
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(26, 26, 46, 0.98);
            padding: 20px;
            box-shadow: var(--shadow);
            border-top: 2px solid var(--accent);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav a {
            color: var(--light);
            text-decoration: none;
            font-size: 1.2rem;
            display: block;
            padding: 12px 20px;
            border-radius: var(--border-radius);
            transition: var(--transition);
            border-left: 4px solid transparent;
        }
        .mobile-nav a:hover,
        .mobile-nav a.active {
            background: var(--secondary);
            border-left-color: var(--accent);
            padding-left: 25px;
        }
        .breadcrumb {
            background: rgba(255,255,255,0.05);
            padding: 12px 0;
            margin-bottom: 30px;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li {
            color: var(--gray);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--accent-light);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            color: white;
            text-decoration: underline;
        }
        .breadcrumb i {
            margin: 0 8px;
            font-size: 0.8rem;
        }
        .main-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        @media (max-width: 992px) {
            .main-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(255, 255, 255, 0.97);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255,255,255,0.1);
        }
        h1 {
            color: var(--primary);
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
            text-align: center;
            border-bottom: 3px solid var(--accent);
            padding-bottom: 20px;
        }
        h2 {
            color: var(--secondary);
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed var(--accent);
        }
        h3 {
            color: var(--secondary);
            font-size: 1.6rem;
            margin: 30px 0 15px;
        }
        h4 {
            color: var(--accent);
            font-size: 1.3rem;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--secondary);
            font-weight: 600;
            background: linear-gradient(90deg, rgba(233,69,96,0.1) 0%, transparent 100%);
            padding: 20px;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--accent);
            margin: 30px 0;
        }
        .highlight {
            background: linear-gradient(120deg, #ffecd2 0%, #fcb69f 100%);
            padding: 25px;
            border-radius: var(--border-radius);
            border: 2px solid var(--accent);
            margin: 30px 0;
            box-shadow: var(--shadow);
        }
        .highlight h3 {
            color: #d32f2f;
            margin-top: 0;
        }
        .info-box {
            background: #e3f2fd;
            border-left: 5px solid #2196f3;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        ul, ol {
            margin: 20px 0 20px 30px;
        }
        li {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        .content-link {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px dotted var(--accent);
            transition: var(--transition);
        }
        .content-link:hover {
            color: #c2185b;
            border-bottom-style: solid;
            background: rgba(233,69,96,0.1);
        }
        .article-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: var(--border-radius);
            margin: 30px auto;
            display: block;
            box-shadow: var(--shadow);
            border: 3px solid white;
            transition: transform 0.5s ease;
        }
        .article-img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: -20px;
            margin-bottom: 30px;
            font-size: 0.95rem;
        }
        .interactive-section {
            background: var(--primary);
            color: white;
            padding: 30px;
            border-radius: var(--border-radius);
            margin: 40px 0;
        }
        .interactive-section h3 {
            color: white;
            border-bottom: 2px solid var(--accent-light);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--light);
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border-radius: 8px;
            border: 2px solid rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--accent-light);
            background: rgba(255,255,255,0.15);
        }
        .form-control::placeholder {
            color: rgba(255,255,255,0.6);
        }
        .btn {
            background: linear-gradient(45deg, var(--accent), var(--accent-light));
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 4px 10px rgba(233,69,96,0.3);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(233,69,96,0.4);
            background: linear-gradient(45deg, var(--accent-light), var(--accent));
        }
        .btn-block {
            display: block;
            width: 100%;
        }
        .rating-widget {
            background: rgba(255,255,255,0.95);
            padding: 25px;
            border-radius: var(--border-radius);
            margin: 30px 0;
            box-shadow: var(--shadow);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #ffc107;
            transform: scale(1.2);
        }
        aside {
            background: rgba(255, 255, 255, 0.97);
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: var(--shadow);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
            padding-bottom: 25px;
            border-bottom: 1px solid #eee;
        }
        .sidebar-widget:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }
        .related-links ul {
            list-style: none;
            margin: 0;
        }
        .related-links li {
            margin-bottom: 12px;
            padding: 0;
        }
        .related-links a {
            color: var(--dark-gray);
            text-decoration: none;
            display: block;
            padding: 12px 15px;
            border-radius: 8px;
            background: #f8f9fa;
            transition: var(--transition);
            border-left: 4px solid transparent;
        }
        .related-links a:hover {
            background: #e9ecef;
            border-left-color: var(--accent);
            padding-left: 20px;
        }
        .toc {
            background: #f8f9fa;
            padding: 20px;
            border-radius: var(--border-radius);
            border: 1px solid #dee2e6;
        }
        .toc ul {
            list-style: none;
            margin: 15px 0 0 0;
        }
        .toc li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }
        .toc li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--accent);
        }
        .toc a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        .toc a:hover {
            color: var(--accent);
            text-decoration: underline;
        }
        footer {
            background: var(--primary);
            color: var(--light);
            padding: 50px 0 20px;
            margin-top: 60px;
            border-top: 5px solid var(--accent);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        .footer-section h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-section h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }
        friend-link {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            color: var(--accent-light);
            padding: 8px 15px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        friend-link:hover {
            background: var(--accent);
            color: white;
            border-color: white;
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: var(--gray);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
            article {
                padding: 25px;
            }
            .header-content {
                padding: 12px 0;
            }
            .my-logo {
                font-size: 1.8rem;
            }
            .my-logo i {
                font-size: 2rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        .text-center { text-align: center; }
        .text-accent { color: var(--accent); }
        .mb-30 { margin-bottom: 30px; }
        .mt-30 { margin-top: 30px; }
        .py-20 { padding-top: 20px; padding-bottom: 20px; }
        .last-updated {
            font-size: 0.9rem;
            color: var(--gray);
            font-style: italic;
            margin-top: 40px;
            padding-top: 15px;
            border-top: 1px dashed #ddd;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .search-container {
            background: rgba(255,255,255,0.95);
            padding: 20px;
            border-radius: var(--border-radius);
            margin: 30px 0;
            box-shadow: var(--shadow);
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 20px;
            border: 2px solid #ddd;
            border-radius: 50px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-form input:focus {
            outline: none;
            border-color: var(--accent);
        }
        .comments-section {
            margin-top: 50px;
        }
        .comment {
            background: #f9f9f9;
            padding: 20px;
            border-radius: var(--border-radius);
            margin-bottom: 20px;
            border-left: 4px solid var(--accent);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            color: var(--gray);
            font-size: 0.9rem;
        }
        [title] {
            position: relative;
            cursor: help;
        }
        [title]:hover::after {
            content: attr(title);
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: white;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 0.9rem;
            white-space: nowrap;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
