        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.65;
            color: #333;
            background-color: #fefefe;
            max-width: 100vw;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            padding: 1.2rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-decoration: none;
            color: white;
            letter-spacing: -0.5px;
            background: linear-gradient(to right, #ffecd2, #fcb69f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #e6f0ff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0.8rem;
            border-radius: 6px;
            transition: all 0.25s ease;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background-color: rgba(255, 255, 255, 0.15);
            color: white;
            transform: translateY(-2px);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.95rem;
            color: #6c757d;
            background-color: #f8f9fa;
            border-bottom: 1px solid #e9ecef;
        }
        .breadcrumb a {
            color: #6a11cb;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .hero {
            background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
            padding: 4rem 2rem;
            text-align: center;
            border-radius: 0 0 30px 30px;
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 3.2rem;
            color: #1a1a2e;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            color: #495057;
            max-width: 800px;
            margin: 0 auto 2.5rem;
        }
        .search-box {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            box-shadow: 0 10px 30px rgba(106, 17, 203, 0.2);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-box input {
            flex-grow: 1;
            padding: 1.2rem 2rem;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-box button {
            background: linear-gradient(to right, #6a11cb, #2575fc);
            color: white;
            border: none;
            padding: 0 2.5rem;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .search-box button:hover {
            opacity: 0.9;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 3.5rem;
            padding: 2rem 0 5rem;
        }
        main article {
            padding-right: 1.5rem;
        }
        h1, h2, h3, h4 {
            color: #1a1a2e;
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }
        h1 { font-size: 2.8rem; }
        h2 {
            font-size: 2.2rem;
            padding-bottom: 0.7rem;
            border-bottom: 3px solid #6a11cb;
        }
        h3 { font-size: 1.8rem; color: #2575fc; }
        h4 { font-size: 1.5rem; color: #495057; }
        p {
            margin-bottom: 1.6rem;
            font-size: 1.125rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fff9db;
            border-left: 5px solid #ffd43b;
            padding: 1.8rem;
            margin: 2.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .inline-link {
            color: #6a11cb;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px dotted #6a11cb;
            transition: all 0.2s;
        }
        .inline-link:hover {
            color: #2575fc;
            border-bottom-style: solid;
        }
        .feature-img {
            margin: 3rem auto;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease;
        }
        .feature-img:hover {
            transform: translateY(-10px);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: #6c757d;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .content-block {
            margin-bottom: 3.5rem;
        }
        aside {
            background-color: #f8f9fa;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 140px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-top: 0;
            color: #1a1a2e;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #adb5bd;
        }
        .links-list {
            list-style: none;
        }
        .links-list li {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #dee2e6;
        }
        .links-list a {
            text-decoration: none;
            color: #495057;
            display: flex;
            align-items: center;
            transition: color 0.2s;
        }
        .links-list a:hover {
            color: #6a11cb;
        }
        .links-list i {
            margin-right: 10px;
            color: #6a11cb;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffd43b;
            margin: 1rem 0;
        }
        .rate-btn {
            background-color: #6a11cb;
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 100%;
        }
        .rate-btn:hover {
            background-color: #2575fc;
        }
        .comment-section {
            background-color: #f8f9fa;
            padding: 2.5rem;
            border-radius: 15px;
            margin-top: 4rem;
        }
        .comment-section h3 {
            text-align: center;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            padding: 1rem;
            border: 1px solid #ced4da;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #6a11cb;
            outline: none;
            box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.2);
        }
        .submit-btn {
            background: linear-gradient(to right, #6a11cb, #2575fc);
            color: white;
            border: none;
            padding: 1.2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .submit-btn:hover {
            opacity: 0.9;
        }
        footer {
            background-color: #1a1a2e;
            color: #adb5bd;
            padding: 4rem 0 2rem;
            margin-top: 5rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-col h4 {
            color: #f8f9fa;
            font-size: 1.3rem;
            margin-bottom: 1.8rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.9rem;
        }
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #6a11cb;
        }
        friend-link {
            display: block;
            background-color: rgba(255,255,255,0.05);
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            border-left: 4px solid #6a11cb;
        }
        friend-link a {
            color: #ffd43b !important;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 3rem;
            margin-top: 3rem;
            border-top: 1px solid #2d3748;
            color: #6c757d;
            font-size: 0.95rem;
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.1rem; }
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.9rem; }
            h3 { font-size: 1.6rem; }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #6a11cb;
                padding: 1.5rem;
                border-radius: 0 0 15px 15px;
                box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .search-box {
                flex-direction: column;
                border-radius: 20px;
            }
            .search-box input,
            .search-box button {
                width: 100%;
                border-radius: 0;
                padding: 1.2rem;
            }
            .search-box button {
                border-radius: 0 0 20px 20px;
            }
        }
        @media (max-width: 480px) {
            .hero { padding: 3rem 1rem; }
            .hero h1 { font-size: 2rem; }
            .content-wrapper, .comment-section { padding-left: 0; padding-right: 0; }
            .header-container { flex-wrap: wrap; }
            .my-logo { font-size: 1.8rem; }
        }
        .emoji { font-size: 1.3em; vertical-align: middle; }
        .bold { font-weight: 800; color: #1a1a2e; }
        .last-updated {
            font-size: 0.95rem;
            color: #6c757d;
            text-align: right;
            margin-top: 1rem;
            font-style: italic;
        }
