        * { 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: #f9f9f9;
            max-width: 120rem;
            margin: 0 auto;
            padding: 0 1rem;
        }
        img { max-width: 100%; height: auto; display: block; }
        .site-header {
            background: linear-gradient(135deg, #1a237e 0%, #311b92 100%);
            color: white;
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 120rem;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-decoration: none;
            color: #ffeb3b;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Impact', 'Arial Black', sans-serif;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            transition: color 0.3s ease;
        }
        .my-logo:hover { color: #ffc107; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
            transition: color 0.3s;
        }
        .main-nav a:hover { color: #ffeb3b; }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #ffeb3b;
            transition: width 0.3s;
        }
        .main-nav a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
            padding: 0.5rem;
        }
        .hamburger span {
            width: 30px;
            height: 4px;
            background: white;
            border-radius: 2px;
            transition: 0.3s;
        }
        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }
        .breadcrumb {
            background-color: #e8eaf6;
            padding: 1rem 2rem;
            margin: 1rem auto;
            max-width: 120rem;
            border-radius: 5px;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #311b92;
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .search-container {
            max-width: 50rem;
            margin: 3rem auto;
            padding: 2rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(49, 27, 146, 0.1);
            text-align: center;
        }
        .search-container form {
            display: flex;
            gap: 0.5rem;
        }
        .search-container input[type="search"] {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 2px solid #d1c4e9;
            border-radius: 50px;
            font-size: 1.1rem;
            transition: border-color 0.3s;
        }
        .search-container input:focus {
            outline: none;
            border-color: #673ab7;
        }
        .search-container button {
            background: linear-gradient(to right, #673ab7, #311b92);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .search-container button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(103, 58, 183, 0.4);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            max-width: 120rem;
            margin: 2rem auto;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-area {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        h1 {
            color: #1a237e;
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 5px solid #ffeb3b;
            padding-bottom: 1rem;
        }
        h2 {
            color: #311b92;
            font-size: 2.2rem;
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 3px solid #d1c4e9;
        }
        h3 {
            color: #512da8;
            font-size: 1.7rem;
            margin: 2.5rem 0 1rem;
        }
        h4 {
            color: #673ab7;
            font-size: 1.4rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.15rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead { font-size: 1.4rem; font-weight: 600; color: #444; }
        .highlight { background-color: #fff9c4; padding: 0.2rem 0.5rem; border-radius: 3px; }
        .content-link {
            color: #673ab7;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px dotted #673ab7;
            transition: color 0.3s, border-bottom 0.3s;
        }
        .content-link:hover {
            color: #311b92;
            border-bottom: 2px solid #311b92;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 12px;
            margin: 2.5rem 0;
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
            transition: transform 0.5s ease;
        }
        .featured-image:hover { transform: scale(1.02); }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget { margin-bottom: 3rem; }
        .widget h3 {
            font-size: 1.5rem;
            color: #1a237e;
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid #ffeb3b;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ffc107;
            cursor: pointer;
        }
        .star:hover { transform: scale(1.2); }
        input, textarea, select {
            padding: 1rem;
            border: 2px solid #d1c4e9;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #673ab7;
        }
        .submit-btn {
            background: linear-gradient(to right, #ff9800, #ff5722);
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(255, 87, 34, 0.4);
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: #777;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }
        .site-footer {
            background: #1a237e;
            color: white;
            padding: 4rem 2rem 2rem;
            margin-top: 5rem;
            border-radius: 20px 20px 0 0;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            max-width: 120rem;
            margin: 0 auto;
        }
        .footer-logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ffeb3b;
            margin-bottom: 1.5rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            list-style: none;
        }
        .friend-links a {
            color: #bbdefb;
            text-decoration: none;
            padding: 0.5rem 1rem;
            background: rgba(255,255,255,0.1);
            border-radius: 5px;
            transition: background 0.3s, color 0.3s;
        }
        .friend-links a:hover {
            background: #ffeb3b;
            color: #1a237e;
        }
        .copyright {
            text-align: center;
            padding-top: 3rem;
            margin-top: 3rem;
            border-top: 1px solid #3949ab;
            color: #c5cae9;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .header-container { padding: 0 1rem; }
            .main-nav {
                position: fixed;
                top: 90px;
                left: 0;
                width: 100%;
                background: #1a237e;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.5s ease;
                z-index: 999;
            }
            .main-nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .main-nav ul {
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
            }
            .hamburger { display: flex; }
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.9rem; }
            h3 { font-size: 1.5rem; }
            .article-area { padding: 2rem; }
            .search-container form { flex-direction: column; }
            .search-container button { width: 100%; }
        }
