        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f7fe;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #ff6b8b;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff3e6d;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            padding: 20px 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: 2rem;
            font-weight: 800;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        .logo a:hover {
            color: #ffdf6b;
        }
        .nav-desktop {
            display: flex;
            gap: 25px;
        }
        .nav-desktop a {
            color: white;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #2575fc;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            padding: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #ddd;
        }
        .breadcrumb a {
            color: #ffdf6b;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 40px 0;
            background-color: white;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            padding-right: 20px;
        }
        h1 {
            font-size: 2.8rem;
            color: #6a11cb;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #2575fc;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffdf6b;
        }
        h3 {
            font-size: 1.5rem;
            color: #ff6b8b;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #fff9e6;
            padding: 15px;
            border-left: 5px solid #ffdf6b;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: #666;
        }
        .link-inline {
            font-weight: 600;
            color: #6a11cb;
            border-bottom: 2px dotted #ff6b8b;
        }
        .link-inline:hover {
            border-bottom-style: solid;
        }
        aside {
            background-color: #f0f7ff;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: fit-content;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            color: #2575fc;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        .search-form input {
            width: 100%;
            padding: 12px;
            border: 2px solid #6a11cb;
            border-radius: 8px;
            font-size: 1rem;
            margin-bottom: 10px;
        }
        .search-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(to right, #6a11cb, #2575fc);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }
        .search-form button:hover {
            opacity: 0.9;
        }
        .comment-form textarea, .score-form select {
            width: 100%;
            padding: 12px;
            border: 2px solid #ff6b8b;
            border-radius: 8px;
            font-size: 1rem;
            margin-bottom: 10px;
            resize: vertical;
        }
        .comment-form input, .score-form input {
            width: 100%;
            padding: 12px;
            border: 2px solid #ff6b8b;
            border-radius: 8px;
            font-size: 1rem;
            margin-bottom: 10px;
        }
        .comment-form button, .score-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(to right, #ff6b8b, #ff3e6d);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }
        .comment-form button:hover, .score-form button:hover {
            opacity: 0.9;
        }
        footer {
            background-color: #2d2d3a;
            color: #ccc;
            padding: 40px 0 20px;
        }
        .internal-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        @media (max-width: 992px) {
            .internal-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 576px) {
            .internal-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background-color: #3a3a4a;
            padding: 15px;
            border-radius: 8px;
            transition: background-color 0.3s ease;
        }
        .web-link:hover {
            background-color: #4a4a5a;
        }
        .web-link a {
            color: #ffdf6b;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }
        .text-center {
            text-align: center;
        }
        .bold {
            font-weight: 800;
            color: #2575fc;
        }
        .spacing-control {
            margin-bottom: 25px;
        }
