        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            color: #333;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #0d6efd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff6b6b;
        }
        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);
            white-space: nowrap;
            border: 0;
        }
        .site-header {
            background: #1a1a2e;
            color: #fff;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #FFD700, #FF6B6B);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
        }
        .logo a:hover {
            opacity: 0.9;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .main-nav a {
            color: #e0e0e0;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0.2rem;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #FFD700;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after,
        .main-nav a:focus::after {
            width: 100%;
        }
        .burger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            background: #f8f9fa;
            padding: 0.8rem 0;
            border-bottom: 1px solid #dee2e6;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin: 0 0.5rem;
            color: #6c757d;
        }
        .breadcrumb a {
            color: #495057;
        }
        .breadcrumb a:hover {
            color: #1a1a2e;
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)), url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0zNiAxOGMtOS45NDEgMC0xOCA4LjA1OS0xOCAxOHM4LjA1OSAxOCAxOCAxOCAxOC04LjA1OSAxOC0xOC04LjA1OS0xOC0xOC0xOHptMCAyYzguODM3IDAgMTYgNy4xNjMgMTYgMTZzLTcuMTYzIDE2LTE2IDE2LTE2LTcuMTYzLTE2LTE2IDcuMTNjLTE2IDE2LTE2eiIgZmlsbD0iI2Q5ZWRmOSIvPjwvZz48L3N2Zz4=');
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        .article-header h1 {
            font-size: 3rem;
            color: #1a1a2e;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-header .meta {
            color: #6c757d;
            font-size: 1rem;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .article-header .meta span {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: #fff;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        .article-content h2 {
            font-size: 2.2rem;
            color: #2d3436;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #FFD700;
        }
        .article-content h3 {
            font-size: 1.7rem;
            color: #3a506b;
            margin: 2rem 0 1rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content emoji {
            font-size: 1.3em;
            margin: 0 0.2rem;
        }
        .highlight {
            background-color: #fff9db;
            padding: 1.5rem;
            border-left: 5px solid #FFD700;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .image-block {
            margin: 2.5rem 0;
            text-align: center;
        }
        .image-block img {
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        .image-block img:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }
        .image-caption {
            margin-top: 0.8rem;
            font-style: italic;
            color: #6c757d;
            font-size: 0.95rem;
        }
        .inline-links {
            font-weight: 600;
            color: #1a1a2e;
            border-bottom: 2px dotted #0d6efd;
        }
        .inline-links:hover {
            border-bottom-style: solid;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: #fff;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        .widget h3 {
            font-size: 1.5rem;
            color: #2d3436;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #74b9ff;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.9rem 1rem;
            border: 2px solid #dee2e6;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .search-form input:focus {
            outline: none;
            border-color: #74b9ff;
        }
        .search-form button {
            background: #1a1a2e;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #2d3436;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            cursor: pointer;
            margin-bottom: 0.5rem;
        }
        .star-rating .star {
            color: #dee2e6;
            transition: color 0.2s;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #FFD700;
        }
        .rating-widget input, .rating-widget textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #dee2e6;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .rating-widget input:focus, .rating-widget textarea:focus {
            outline: none;
            border-color: #74b9ff;
        }
        .rating-widget button {
            background: #0d6efd;
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 8px;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-widget button:hover {
            background: #0b5ed7;
        }
        .comments-list {
            max-height: 400px;
            overflow-y: auto;
            padding-right: 0.5rem;
        }
        .comment {
            padding: 1rem 0;
            border-bottom: 1px solid #f1f1f1;
        }
        .comment:last-child {
            border-bottom: none;
        }
        .comment-author {
            font-weight: bold;
            color: #2d3436;
        }
        .comment-date {
            font-size: 0.85rem;
            color: #6c757d;
        }
        .comment-text {
            margin-top: 0.5rem;
        }
        .footer-links-section {
            background: #2d3436;
            color: #fff;
            padding: 3rem 0 2rem;
        }
        .footer-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 1.2rem;
            border-radius: 8px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #74b9ff;
            font-size: 1.05rem;
            display: block;
        }
        .web-link a:hover {
            color: #FFD700;
        }
        .site-footer {
            background: #1a1a2e;
            color: #adb5bd;
            text-align: center;
            padding: 2rem 0;
        }
        .copyright {
            font-size: 0.95rem;
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            .burger {
                display: block;
            }
            .main-nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: #1a1a2e;
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease-in-out;
                z-index: 999;
            }
            .main-nav.active ul {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .content-grid {
                gap: 2rem;
            }
            .article-content {
                padding: 1.8rem;
            }
            .article-content h2 {
                font-size: 1.9rem;
            }
            .article-content h3 {
                font-size: 1.5rem;
            }
        }
