        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        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: linear-gradient(135deg, #1a237e 0%, #4a148c 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', Impact, sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            text-decoration: none;
            color: #00e5ff;
            text-transform: uppercase;
            letter-spacing: -1px;
            text-shadow: 2px 2px 0 #7b1fa2;
            transition: all 0.3s ease;
        }
        .my-logo:hover {
            color: #ffeb3b;
            text-shadow: 3px 3px 0 #1a237e;
            transform: scale(1.05);
        }
        .breadcrumb {
            padding: 12px 20px;
            background-color: #e3f2fd;
            font-size: 0.9rem;
            margin-bottom: 10px;
            border-radius: 0 0 8px 8px;
        }
        .breadcrumb a {
            color: #1a237e;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #666;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
            transition: background-color 0.3s, transform 0.2s;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #4a148c;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease-in-out;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            .main-nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
            }
            .main-nav ul {
                flex-direction: column;
                padding: 20px;
                gap: 15px;
            }
            .main-nav a {
                display: block;
                padding: 15px;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
        }
        .article-header {
            text-align: center;
            padding: 3rem 1rem;
            background: linear-gradient(to right, #0d47a1, #311b92);
            color: white;
            margin-bottom: 2rem;
            border-radius: 0 0 20px 20px;
        }
        .article-header h1 {
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            font-size: 0.95rem;
            opacity: 0.9;
            margin-top: 1.5rem;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 20px 0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.06);
        }
        .article-content h1,
        .article-content h2,
        .article-content h3,
        .article-content h4 {
            color: #1a237e;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        .article-content h1 { font-size: 2.8rem; }
        .article-content h2 { font-size: 2.2rem; border-left: 5px solid #00e5ff; padding-left: 15px; }
        .article-content h3 { font-size: 1.8rem; color: #4a148c; }
        .article-content h4 { font-size: 1.4rem; color: #7b1fa2; }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content p.lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #0d47a1;
        }
        .article-content emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .article-content strong {
            color: #d50000;
            font-weight: 700;
        }
        .article-content blockquote {
            border-left: 4px solid #00e5ff;
            padding-left: 20px;
            margin: 2rem 0;
            font-style: italic;
            color: #555;
            background-color: #f1f8ff;
            padding: 20px;
            border-radius: 0 10px 10px 0;
        }
        .article-content img.featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 12px;
            margin: 2.5rem auto;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .sidebar {
            background: white;
            padding: 1.8rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.06);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            color: #1a237e;
            margin-bottom: 1.2rem;
            padding-bottom: 8px;
            border-bottom: 2px solid #00e5ff;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 2px solid #b39ddb;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-form button {
            background: #7b1fa2;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #4a148c;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #ffc107;
            margin: 10px 0;
            cursor: pointer;
        }
        .stars span {
            margin: 0 2px;
            transition: color 0.2s;
        }
        .stars span:hover,
        .stars span.active {
            color: #ff9800;
        }
        #rating-value {
            font-weight: bold;
            color: #1a237e;
            margin-left: 10px;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #b39ddb;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            resize: vertical;
            min-height: 120px;
            margin-bottom: 15px;
        }
        .comment-form button {
            background: #1a237e;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: #0d47a1;
        }
        .site-footer {
            background: #1a237e;
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-widget h4 {
            color: #00e5ff;
            margin-bottom: 1.2rem;
        }
        .friend-links {
            list-style: none;
        }
        .friend-links li {
            margin-bottom: 10px;
        }
        .friend-links a {
            color: #bbdefb;
            text-decoration: none;
            transition: color 0.3s;
        }
        .friend-links a:hover {
            color: #ffeb3b;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #3949ab;
            font-size: 0.9rem;
            color: #bbdefb;
        }
        friend-link {
            display: inline-block;
            background: #4a148c;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            margin: 5px;
            font-size: 0.9rem;
            text-decoration: none;
        }
        friend-link:hover {
            background: #7b1fa2;
        }
