        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #2c3e50;
            background-color: #f8f9fa;
            background-image: linear-gradient(to bottom, #e3f2fd, #f8f9fa);
        }
        h1, h2, h3, h4 {
            font-family: Georgia, 'Times New Roman', Times, serif;
            color: #1a237e;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 4px solid #ff9800;
            padding-bottom: 0.5rem;
            margin-top: 1.5rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #283593;
            margin-top: 2.5rem;
            padding-left: 0.5rem;
            border-left: 5px solid #4caf50;
        }
        h3 {
            font-size: 1.8rem;
            color: #3949ab;
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.5rem;
            color: #5c6bc0;
            margin-top: 1.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #1565c0;
            background: #e3f2fd;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0d47a1 0%, #1a237e 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-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Papyrus', fantasy;
            font-size: 2.2rem;
            font-weight: bold;
            color: #ffcc00;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            transition: color 0.3s;
        }
        .my-logo:hover {
            color: #ffeb3b;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: #bbdefb;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        nav a:hover, nav a.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e8eaf6;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #3949ab;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        .highlight {
            background-color: #fffde7;
            border-left: 5px solid #ffc107;
            padding: 1.5rem;
            margin: 2rem 0;
        }
        .info-box {
            background: #e8f5e9;
            border: 2px solid #4caf50;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
            float: right;
            width: 300px;
            margin-left: 2rem;
        }
        .info-box h3 {
            margin-top: 0;
            color: #2e7d32;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin: 1.5rem 0;
            border: 3px solid #ddd;
        }
        .caption {
            font-size: 0.9rem;
            color: #666;
            text-align: center;
            margin-top: -0.5rem;
            margin-bottom: 1.5rem;
        }
        aside {
            background: white;
            padding: 1.8rem;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            font-size: 1.5rem;
            color: #1a237e;
            border-bottom: 2px solid #ff9800;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .search-box, .comment-form, .score-form {
            background: #f5f5f5;
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }
        button {
            background: linear-gradient(to right, #0d47a1, #1a237e);
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        button:hover {
            background: linear-gradient(to right, #1565c0, #283593);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .internal-link {
            color: #1a237e;
            font-weight: 600;
            text-decoration: none;
            border-bottom: 2px dotted #ff9800;
            transition: color 0.3s;
        }
        .internal-link:hover {
            color: #ff9800;
        }
        footer {
            background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
            color: #bbdefb;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #ffcc00;
            border-bottom: 2px solid #ffcc00;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: #bbdefb;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        friend-link {
            display: block;
            background: #0d47a1;
            padding: 1rem;
            border-radius: 8px;
            margin: 1rem 0;
        }
        friend-link a {
            color: #ffcc00 !important;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #3949ab;
            font-size: 0.9rem;
            color: #90caf9;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            nav ul {
                flex-direction: column;
                gap: 0.5rem;
                width: 100%;
                display: none;
                margin-top: 1rem;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.2rem;
                right: 20px;
            }
            .info-box {
                float: none;
                width: 100%;
                margin-left: 0;
            }
            .footer-content {
                flex-direction: column;
            }
        }
