        * { 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: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
        }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(90deg, #FF4B8C 0%, #FF9A3D 100%);
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(255, 75, 140, 0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: white;
            text-decoration: none;
            text-shadow: 3px 3px 0 #FF2B73;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .breadcrumb {
            padding: 10px 0;
            background-color: #fff;
            border-bottom: 1px solid #eee;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #FF4B8C;
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .search-container {
            padding: 2rem 0;
            text-align: center;
            background-color: #fff;
            margin: 1rem 0;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid #FF9A3D;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-input:focus { border-color: #FF4B8C; }
        .search-btn {
            background: linear-gradient(90deg, #FF4B8C, #FF9A3D);
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .search-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(255, 75, 140, 0.4);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 768px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-body {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        .article-body h1 {
            color: #FF4B8C;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .article-body h2 {
            color: #FF7B2B;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px dashed #FFE4E9;
        }
        .article-body h3 {
            color: #555;
            margin: 1.8rem 0 1rem;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .article-body .highlight {
            background-color: #FFF9E6;
            border-left: 5px solid #FF9A3D;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 10px 10px 0;
        }
        .article-body emoji {
            font-size: 1.3em;
            margin-right: 8px;
        }
        .feature-img {
            width: 100%;
            border-radius: 15px;
            margin: 2rem 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .feature-img:hover {
            transform: scale(1.01);
        }
        .internal-link {
            color: #FF4B8C;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px dotted #FFB8D9;
        }
        .internal-link:hover {
            border-bottom-style: solid;
            color: #FF2B73;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            color: #FF4B8C;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #FFE4E9;
        }
        .rating-form label {
            display: block;
            margin: 10px 0 5px;
            font-weight: bold;
        }
        .rating-stars {
            direction: rtl;
            display: inline-block;
        }
        .rating-stars input { display: none; }
        .rating-stars label {
            color: #ddd;
            font-size: 1.8rem;
            padding: 0 3px;
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating-stars input:checked ~ label,
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: #FFD700;
        }
        .comment-form,
        .rating-form,
        .score-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-input:focus,
        .form-textarea:focus {
            border-color: #FF9A3D;
            outline: none;
        }
        .form-textarea { min-height: 120px; resize: vertical; }
        .form-submit {
            align-self: flex-start;
            background: linear-gradient(90deg, #36D1DC, #5B86E5);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(91, 134, 229, 0.4);
        }
        .site-footer {
            background: #2C3E50;
            color: #ecf0f1;
            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 h4 {
            color: #FF9A3D;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .friend-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        friend-link a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s, padding-left 0.3s;
            display: block;
        }
        friend-link a:hover {
            color: #FF9A3D;
            padding-left: 8px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #34495e;
            font-size: 0.9rem;
            color: #95a5a6;
        }
        @media (max-width: 992px) {
            .article-body h1 { font-size: 2.3rem; }
            .article-body { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .nav-toggle { display: block; }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #FF4B8C;
                padding: 1rem;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            .main-nav.active ul { display: flex; }
            .header-inner { position: relative; }
            .search-form { flex-direction: column; }
            .search-btn { width: 100%; padding: 15px; }
        }
        @media (max-width: 480px) {
            .article-body { padding: 1.5rem; }
            .article-body h1 { font-size: 2rem; }
            .sidebar-widget { padding: 1.5rem; }
        }
