* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #f9f4ff 0%, #fff0f9 100%);
            color: #333;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(90deg, #ff6b9d, #c44569, #6a0572);
            color: white;
            padding: 1.5rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #ffde59;
        }
        .search-box {
            display: flex;
            flex: 0 1 400px;
        }
        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 25px 0 0 25px;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background: #ffde59;
            color: #333;
            border: none;
            padding: 12px 20px;
            border-radius: 0 25px 25px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #ffcc00;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin-top: 1rem;
            flex-wrap: wrap;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 20px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        nav ul li a:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-3px);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #fff;
            opacity: 0.9;
        }
        .breadcrumb a {
            color: #ffde59;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 8px 20px rgba(106,5,114,0.1);
        }
        .article-header h1 {
            font-size: 3rem;
            color: #6a0572;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            color: #777;
            font-size: 0.95rem;
            flex-wrap: wrap;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        }
        .article-body h2 {
            color: #c44569;
            font-size: 2.2rem;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 10px;
            border-bottom: 3px dashed #ffde59;
        }
        .article-body h3 {
            color: #6a0572;
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-body b {
            color: #ff6b9d;
            font-weight: 700;
        }
        .article-body em {
            background: linear-gradient(90deg, #ffde59, #ffcc00);
            padding: 2px 8px;
            border-radius: 5px;
            font-style: normal;
            font-weight: bold;
        }
        .highlight-box {
            background: #f9f0ff;
            border-left: 5px solid #6a0572;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 15px 15px 0;
        }
        .image-wrapper {
            text-align: center;
            margin: 3rem 0;
        }
        .image-wrapper img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .image-wrapper figcaption {
            margin-top: 10px;
            font-style: italic;
            color: #666;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 2rem 0;
            padding: 1.5rem;
            background: #fff8e1;
            border-radius: 15px;
        }
        .link-list a {
            color: #c44569;
            text-decoration: none;
            padding: 8px 15px;
            border: 2px solid #ffcc00;
            border-radius: 25px;
            transition: all 0.3s;
            font-weight: 600;
        }
        .link-list a:hover {
            background: #ffcc00;
            color: #333;
            transform: scale(1.05);
        }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            align-self: start;
        }
        .sidebar h3 {
            color: #6a0572;
            margin-bottom: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffde59;
        }
        .user-rating, .user-comment {
            margin-bottom: 2.5rem;
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin-bottom: 15px;
        }
        .rating-stars i {
            color: #ffcc00;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating-stars i:hover {
            color: #ff9900;
        }
        .user-rating form, .user-comment form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .user-rating input, .user-comment input, .user-comment textarea {
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .user-rating input:focus, .user-comment input:focus, .user-comment textarea:focus {
            border-color: #6a0572;
        }
        .user-comment textarea {
            min-height: 150px;
            resize: vertical;
        }
        button[type="submit"] {
            background: linear-gradient(90deg, #6a0572, #c44569);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        button[type="submit"]:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(106,5,114,0.3);
        }
        .web-links {
            background: #2d132c;
            color: white;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            padding: 1rem;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            transition: background 0.3s;
        }
        .web-link:hover {
            background: rgba(255,255,255,0.2);
        }
        .web-link a {
            color: #ffde59;
            text-decoration: none;
            font-weight: 600;
            display: block;
            padding: 5px 0;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background: #1a0b1a;
            color: #aaa;
            text-align: center;
            padding: 2rem 0;
            font-size: 0.9rem;
        }
        footer p {
            margin-bottom: 10px;
        }
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1rem;
        }
        .social-icons a {
            color: #ffde59;
            font-size: 1.5rem;
            transition: transform 0.3s;
        }
        .social-icons a:hover {
            transform: scale(1.2);
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                align-items: stretch;
                gap: 1rem;
            }
            .logo {
                text-align: center;
            }
            .search-box {
                flex: 1;
                margin: 0 10px;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 20px;
            }
            nav ul {
                display: none;
                flex-direction: column;
                gap: 1rem;
                margin-top: 1rem;
                background: rgba(106,5,114,0.95);
                padding: 1.5rem;
                border-radius: 15px;
            }
            nav ul.active {
                display: flex;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .article-body {
                padding: 1.5rem;
            }
            .article-body h2 {
                font-size: 1.8rem;
            }
            .article-body h3 {
                font-size: 1.5rem;
            }
        }
