        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f9f5ff;
            color: #333;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: #6a0dad;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #4b0082;
            text-decoration: underline;
        }
        ul, ol {
            list-style-position: inside;
            padding-left: 20px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        header {
            background: linear-gradient(135deg, #8a2be2, #5d00a6);
            color: white;
            padding: 1rem 2rem;
            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: 1400px;
            margin: 0 auto;
        }
        .logo a {
            font-size: 2rem;
            font-weight: bold;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover {
            text-decoration: none;
            color: #ffd700;
        }
        .my-logo {
            font-style: italic;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-links {
            display: flex;
            gap: 2rem;
        }
        .nav-links a {
            color: white;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        .nav-links a:hover {
            background: rgba(255,255,255,0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background: #e6d5ff;
            font-size: 0.9rem;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #6a0dad;
        }
        .container {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 2rem;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            flex-grow: 1;
        }
        main {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        aside {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            align-self: start;
        }
        h1 {
            font-size: 2.8rem;
            color: #4b0082;
            margin-bottom: 1.5rem;
            border-bottom: 3px solid #8a2be2;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            color: #6a0dad;
            margin: 2rem 0 1rem;
            padding-left: 10px;
            border-left: 5px solid #ff69b4;
        }
        h3 {
            font-size: 1.5rem;
            color: #8a2be2;
            margin: 1.5rem 0 0.8rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #9370db;
            margin: 1.2rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        strong {
            color: #4b0082;
            font-weight: 700;
        }
        .update-time {
            background: #f0e6ff;
            padding: 0.8rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            font-style: italic;
            color: #555;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .form-section {
            background: #f8f0ff;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .form-section h3 {
            margin-top: 0;
        }
        input, textarea, select, button {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #8a2be2;
            outline: none;
            box-shadow: 0 0 5px rgba(138, 43, 226, 0.3);
        }
        button {
            background: linear-gradient(to right, #8a2be2, #6a0dad);
            color: white;
            border: none;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .rating label {
            cursor: pointer;
            font-size: 1.5rem;
            color: #ffd700;
            transition: color 0.3s ease;
        }
        .rating input[type="radio"] {
            display: none;
        }
        .rating input:checked ~ label {
            color: #ccc;
        }
        .rating label:hover,
        .rating label:hover ~ label {
            color: #ffd700;
        }
        .links-list {
            background: #f0f8ff;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .links-list ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .links-list li {
            background: white;
            padding: 0.8rem;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        .links-list li:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        }
        .featured-image {
            margin: 2rem auto;
            text-align: center;
            max-width: 800px;
        }
        .featured-image figcaption {
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
        }
        footer {
            background: #2d004d;
            color: white;
            padding: 2rem;
            margin-top: 2rem;
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.1);
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            transition: background 0.3s ease;
        }
        friend-link:hover {
            background: rgba(255,255,255,0.2);
        }
        friend-link a {
            color: #ffd700;
            font-weight: 500;
        }
        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255,255,255,0.2);
            font-size: 0.9rem;
            color: #ccc;
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            h1 {
                font-size: 2.4rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0;
                margin-top: 1rem;
            }
            .nav-links a {
                padding: 1rem;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .hamburger {
                display: block;
            }
            #nav-toggle:checked ~ .nav-links {
                display: flex;
            }
            .breadcrumb {
                padding: 1rem;
            }
            .container {
                padding: 0 1rem;
            }
            main, aside {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .links-list ul {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .logo a {
                font-size: 1.5rem;
            }
            .form-section {
                padding: 1rem;
            }
        }
