* { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #f9e6ff 100%);
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a { color: #ff6b9d; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #d43f8d; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; }
        .site-header {
            background: linear-gradient(90deg, #ff6b9d, #ffcc00);
            padding: 1.5rem 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;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-family: 'Comic Sans MS', cursive;
        }
        .logo span { color: #9c27b0; }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 20px;
        }
        .desktop-nav a:hover {
            background: rgba(255, 255, 255, 0.2);
            text-decoration: none;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background: #ff6b9d;
            width: 100%;
            margin-top: 1rem;
            border-radius: 10px;
            overflow: hidden;
        }
        .mobile-nav.active { display: block; }
        .mobile-nav ul { list-style: none; }
        .mobile-nav li { border-bottom: 1px solid rgba(255,255,255,0.2); }
        .mobile-nav a {
            display: block;
            color: white;
            padding: 1rem;
            font-weight: 600;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #666;
        }
        .breadcrumb a { color: #666; }
        .breadcrumb a:hover { color: #ff6b9d; }
        .search-box {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 2rem 0;
            text-align: center;
        }
        .search-box h2 { color: #ff6b9d; margin-bottom: 1rem; }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #ffcc00;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            outline: none;
        }
        .search-btn {
            background: linear-gradient(90deg, #ffcc00, #ff6b9d);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 30px 30px 0;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .search-btn:hover { transform: scale(1.05); }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        .article-content h1 {
            color: #9c27b0;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        .article-content h2 {
            color: #ff6b9d;
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px dashed #ffcc00;
        }
        .article-content h3 {
            color: #ff9800;
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: #fff9e6;
            border-left: 5px solid #ffcc00;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
            font-weight: 600;
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .tip-card {
            background: #f9f9f9;
            padding: 1.5rem;
            border-radius: 15px;
            border-top: 5px solid #ff6b9d;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .tip-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255,107,157,0.2);
        }
        .tip-card i { color: #ff6b9d; font-size: 2rem; margin-bottom: 1rem; }
        .featured-image {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .featured-image img {
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: #9c27b0;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffcc00;
        }
        .sidebar ul { list-style: none; }
        .sidebar li { margin-bottom: 1rem; }
        .sidebar a { color: #555; display: block; padding: 0.5rem 0; }
        .sidebar a:hover { color: #ff6b9d; padding-left: 5px; }
        .rating-widget, .comment-widget {
            background: #f9f0ff;
            padding: 1.5rem;
            border-radius: 15px;
            margin-top: 2rem;
        }
        .stars { color: #ffcc00; font-size: 1.5rem; margin: 1rem 0; }
        .rating-btn, .comment-btn {
            background: #9c27b0;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            width: 100%;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 1rem;
        }
        .rating-btn:hover, .comment-btn:hover { background: #7b1fa2; }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .web-link {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            text-align: center;
            transition: transform 0.3s;
        }
        .web-link:hover { transform: scale(1.03); }
        .web-link a { color: #555; font-weight: 600; }
        .site-footer {
            background: linear-gradient(90deg, #333, #555);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-radius: 20px 20px 0 0;
            text-align: center;
        }
        .site-footer a { color: #ffcc00; }
        .copyright {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.2);
            font-size: 0.9rem;
            color: #ccc;
        }
        @media (max-width: 768px) {
            .header-content { flex-direction: column; align-items: flex-start; }
            .desktop-nav { display: none; }
            .mobile-menu-btn { display: block; position: absolute; top: 1.5rem; right: 15px; }
            .logo { margin-bottom: 1rem; }
            .article-content { padding: 1.5rem; }
            .article-content h1 { font-size: 2.2rem; }
            .tips-grid { grid-template-columns: 1fr; }
            .sidebar { position: static; }
        }
