* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a2980, #26d0ce);
            color: white;
            padding: 1rem 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;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: transform 0.3s ease;
        }
        .logo a:hover {
            transform: scale(1.05);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        .desktop-nav a:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: #1a2980;
            padding: 1rem;
            margin-top: 1rem;
            border-radius: 10px;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            display: block;
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: background 0.3s;
        }
        .mobile-nav a:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #ccc;
        }
        .breadcrumb a {
            color: #ffcc00;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 2rem;
            padding: 2rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
        }
        h1 {
            font-size: 3rem;
            color: #1a2980;
            margin-bottom: 1rem;
        }
        .article-meta {
            color: #666;
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }
        .search-box {
            max-width: 600px;
            margin: 2rem auto;
            display: flex;
            gap: 0;
        }
        .search-box input {
            flex: 1;
            padding: 1rem;
            border: 2px solid #26d0ce;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background: #26d0ce;
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #1a9f9d;
        }
        .content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        .article-content {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
        }
        .article-content h2 {
            color: #1a2980;
            margin: 2rem 0 1rem;
            font-size: 2rem;
            border-left: 5px solid #ffcc00;
            padding-left: 1rem;
        }
        .article-content h3 {
            color: #26d0ce;
            margin: 1.5rem 0 0.8rem;
            font-size: 1.5rem;
        }
        .article-content p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .article-content strong {
            color: #e63946;
            font-weight: bold;
        }
        .article-content emoji {
            font-size: 1.3rem;
            margin-right: 0.5rem;
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 1.5rem 0;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        .featured-image:hover {
            transform: scale(1.02);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .rating-form, .comment-form {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
        }
        .rating-form h3, .comment-form h3 {
            color: #1a2980;
            margin-bottom: 1rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars label:hover,
        .stars input:checked ~ label {
            color: #ffcc00;
        }
        .rating-form button, .comment-form button {
            background: #1a2980;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
            width: 100%;
        }
        .rating-form button:hover, .comment-form button:hover {
            background: #26d0ce;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            margin-bottom: 1rem;
            font-size: 1rem;
            min-height: 120px;
            resize: vertical;
        }
        .internal-links {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
        }
        .internal-links h3 {
            color: #1a2980;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background: #f1f8ff;
            padding: 1rem;
            border-radius: 8px;
            transition: transform 0.3s ease, background 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: #e3f2fd;
        }
        .web-link a {
            color: #1a2980;
            text-decoration: none;
            font-weight: bold;
            display: block;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background: #1a2980;
            color: white;
            padding: 2rem 0;
            text-align: center;
            margin-top: 2rem;
        }
        .copyright {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-top: 1rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .content {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.2rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .article-content h3 {
                font-size: 1.3rem;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
