        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            text-decoration: none;
            color: #2c5aa0;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e63946;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffd700;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: #ff6b6b;
        }
        .logo-text {
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .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: 4px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            color: #ffd700;
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #1a237e;
            flex-direction: column;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
            width: 100%;
        }
        .mobile-nav li {
            margin-bottom: 0.8rem;
        }
        .mobile-nav a {
            color: white;
            font-weight: 600;
            display: block;
            padding: 0.8rem;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .mobile-nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background-color: #e3f2fd;
            padding: 0.8rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: #666;
        }
        .breadcrumb a {
            color: #2c5aa0;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        .article-header {
            margin-bottom: 2.5rem;
            text-align: center;
            padding: 1.5rem;
            background: linear-gradient(to right, #ffffff, #e3f2fd);
            border-radius: 12px;
            border-left: 6px solid #e63946;
        }
        h1 {
            font-size: 2.8rem;
            color: #1a237e;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            color: #666;
            font-size: 0.95rem;
            flex-wrap: wrap;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .article-content h2 {
            font-size: 2rem;
            color: #283593;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #ffd700;
        }
        .article-content h3 {
            font-size: 1.6rem;
            color: #3949ab;
            margin: 2rem 0 1rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 1.5rem;
            border-left: 5px solid #ffd700;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight strong {
            color: #d84315;
        }
        .feature-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .feature-image img {
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .tip-box {
            background-color: #e8f5e9;
            border: 2px solid #4caf50;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1.5rem 0;
            display: flex;
            gap: 1rem;
        }
        .tip-icon {
            color: #4caf50;
            font-size: 2rem;
            flex-shrink: 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: white;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            color: #1a237e;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffd700;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 0.9rem 1rem;
            border: 2px solid #2c5aa0;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-button {
            background-color: #2c5aa0;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background-color 0.3s;
        }
        .search-button:hover {
            background-color: #1a237e;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 2rem;
            margin: 0.5rem 0;
        }
        .stars input {
            display: none;
        }
        .stars label {
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label {
            color: #ffd700;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: #555;
        }
        .form-control {
            padding: 0.8rem 1rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: #2c5aa0;
            box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.2);
        }
        .submit-btn {
            background: linear-gradient(to right, #2c5aa0, #3949ab);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #1a237e, #283593);
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        }
        .comments-section {
            margin-top: 3rem;
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .comments-section h2 {
            font-size: 2rem;
            color: #1a237e;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-list {
            margin-bottom: 2.5rem;
        }
        .comment {
            padding: 1.5rem;
            border-bottom: 1px solid #eee;
            display: flex;
            gap: 1.2rem;
        }
        .comment:last-child {
            border-bottom: none;
        }
        .comment-avatar {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #e3f2fd;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: #2c5aa0;
        }
        .comment-body h4 {
            font-size: 1.2rem;
            color: #333;
            margin-bottom: 0.5rem;
        }
        .comment-meta {
            font-size: 0.9rem;
            color: #777;
            margin-bottom: 0.8rem;
            display: flex;
            gap: 1rem;
        }
        .comment-text {
            line-height: 1.6;
        }
        .footer-links {
            background-color: #1a237e;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
        }
        @media (max-width: 768px) {
            .web-links-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 1.2rem;
            border-radius: 8px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ffd700;
            font-weight: 600;
            display: block;
            text-align: center;
        }
        footer {
            background-color: #0d1440;
            color: #ccc;
            padding: 2.5rem 0;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .copyright {
            font-size: 0.95rem;
            line-height: 1.6;
        }
        .copyright a {
            color: #ffd700;
        }
        .text-center { text-align: center; }
        .emoji { font-size: 1.2em; }
        .bold { font-weight: 900; color: #1a237e; }
        .divider {
            height: 3px;
            background: linear-gradient(to right, transparent, #ffd700, transparent);
            margin: 2.5rem 0;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            .article-content h2 { font-size: 1.8rem; }
            .article-content h3 { font-size: 1.5rem; }
            .article-content { padding: 1.8rem; }
            .desktop-nav { display: none; }
            .mobile-nav-toggle { display: block; }
            .header-container { padding: 0 15px; }
            .content-grid { gap: 1.5rem; }
        }
