        * {
            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-color: #f8f9fa;
            background-image: linear-gradient(to bottom right, #f8f9fa, #e9ecef);
            padding-top: 80px; 
        }
        a {
            text-decoration: none;
            color: #0d6efd;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #084298;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul {
            list-style-type: none;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(106, 17, 203, 0.3);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(106, 17, 203, 0.4);
        }
        .section {
            padding: 60px 0;
        }
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: #212529;
            position: relative;
        }
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #6a11cb, #2575fc);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        .highlight {
            background: linear-gradient(120deg, #ffd54f 0%, #ffd54f 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            padding: 0 4px;
            font-weight: 700;
        }
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(13, 13, 13, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(to right, #ff7e5f, #feb47b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .logo a:hover {
            background: linear-gradient(to right, #feb47b, #ff7e5f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .desktop-nav ul {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            color: #e9ecef;
            font-weight: 500;
            position: relative;
            padding: 5px 0;
        }
        .desktop-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(to right, #ff7e5f, #feb47b);
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover:after {
            width: 100%;
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: rgba(13, 13, 13, 0.98);
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .mobile-nav a {
            color: #e9ecef;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid #444;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 15px 0;
            margin-bottom: 30px;
            border-radius: 0 0 10px 10px;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child):after {
            content: '/';
            margin-left: 10px;
            color: #6c757d;
        }
        .breadcrumb a {
            color: #495057;
        }
        .breadcrumb a:hover {
            color: #0d6efd;
        }
        .search-bar {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 40px;
            text-align: center;
        }
        .search-bar h2 {
            margin-bottom: 15px;
            color: #212529;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid #dee2e6;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-input:focus {
            border-color: #6a11cb;
        }
        .search-btn {
            padding: 15px 30px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .search-btn:hover {
            background: linear-gradient(135deg, #5a0cb9 0%, #1c6ae4 100%);
        }
        .main-content {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            padding: 40px;
            margin-bottom: 50px;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            border-bottom: 1px solid #dee2e6;
            padding-bottom: 30px;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: #212529;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: #6c757d;
            font-size: 0.95rem;
        }
        .article-meta i {
            margin-right: 5px;
        }
        .content-block {
            margin-bottom: 50px;
        }
        .content-block h2 {
            font-size: 2rem;
            color: #343a40;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #dee2e6;
        }
        .content-block h3 {
            font-size: 1.6rem;
            color: #495057;
            margin: 25px 0 15px;
        }
        .content-block p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #444;
            text-align: justify;
        }
        .content-block ul, .content-block ol {
            margin-left: 30px;
            margin-bottom: 20px;
        }
        .content-block li {
            margin-bottom: 10px;
            color: #444;
        }
        .featured-image {
            margin: 30px auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            max-width: 800px;
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            color: #6c757d;
            padding: 10px;
            background: #f8f9fa;
        }
        .pull-quote {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-left: 5px solid #6a11cb;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 15px 15px 0;
            font-size: 1.3rem;
            color: #495057;
            font-style: italic;
        }
        .stats-box {
            background: linear-gradient(to right bottom, #6a11cb, #2575fc);
            color: white;
            padding: 25px;
            border-radius: 15px;
            margin: 30px 0;
            text-align: center;
        }
        .stats-box h4 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        .rating-section, .comments-section {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 15px;
            margin-top: 50px;
            border: 1px solid #e9ecef;
        }
        .rating-form, .comment-form {
            display: grid;
            gap: 20px;
            max-width: 600px;
            margin: 30px auto 0;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 8px;
            font-weight: 600;
            color: #495057;
        }
        .form-control {
            padding: 12px 15px;
            border: 1px solid #ced4da;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s;
        }
        .form-control:focus {
            border-color: #6a11cb;
            box-shadow: 0 0 0 0.2rem rgba(106, 17, 203, 0.25);
            outline: none;
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 2rem;
            color: #ffc107;
            margin: 10px 0;
        }
        .star-rating i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 50px 0;
        }
        .web-link {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .web-link a {
            color: #212529;
            font-weight: 500;
            display: block;
        }
        .web-link a:hover {
            color: #0d6efd;
        }
        .main-footer {
            background-color: #212529;
            color: #e9ecef;
            padding: 50px 0 20px;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #495057;
            width: 100%;
            color: #adb5bd;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .article-header h1 {
                font-size: 2.3rem;
            }
            .section-title {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .desktop-nav {
                display: none;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .section {
                padding: 40px 0;
            }
            .main-content {
                padding: 25px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: 50px;
                margin-bottom: 10px;
            }
            .search-btn {
                border-radius: 50px;
            }
            .content-block h2 {
                font-size: 1.8rem;
            }
            .content-block h3 {
                font-size: 1.4rem;
            }
            .footer-links {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }
        @media (max-width: 576px) {
            .article-header h1 {
                font-size: 1.7rem;
            }
            .article-meta {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .content-block h2 {
                font-size: 1.6rem;
            }
        }
