        * {
            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: #e0e0e0;
            background-color: #0a0a14;
            background-image: linear-gradient(to bottom, #0a0a14 0%, #121225 70%, #1a1a35 100%);
            background-attachment: fixed;
        }
        a {
            color: #4facfe;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #00d2ff;
            text-shadow: 0 0 8px rgba(0, 210, 255, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
        }
        .site-header {
            background-color: rgba(10, 15, 35, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #1e3a8a;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 50, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ffd166, #ef476f);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .logo a {
            background: none;
        }
        .main-nav {
            display: flex;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-list a {
            color: #b8d4ff;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
            position: relative;
        }
        .nav-list a:hover,
        .nav-list a:focus {
            background-color: rgba(30, 58, 138, 0.4);
            color: #fff;
        }
        .nav-list a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 12px;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #4facfe, #00d2ff);
            transition: width 0.3s ease;
        }
        .nav-list a:hover::after {
            width: calc(100% - 24px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #b8d4ff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: rgba(20, 30, 60, 0.7);
            font-size: 0.9rem;
            margin-bottom: 20px;
            border-bottom: 1px solid #2d3b6b;
        }
        .breadcrumb-list {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb-item:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: #4facfe;
        }
        .search-container {
            max-width: 700px;
            margin: 30px auto 40px;
            padding: 0 20px;
        }
        .search-form {
            display: flex;
            box-shadow: 0 10px 30px rgba(0, 10, 50, 0.4);
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid #2d3b6b;
        }
        .search-input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            background-color: rgba(255, 255, 255, 0.08);
            color: #fff;
            font-size: 1.1rem;
            outline: none;
        }
        .search-input::placeholder {
            color: #a0b0d0;
        }
        .search-input:focus {
            background-color: rgba(255, 255, 255, 0.12);
        }
        .search-button {
            padding: 0 35px;
            background: linear-gradient(90deg, #1e3a8a, #3b82f6);
            border: none;
            color: white;
            font-weight: bold;
            cursor: pointer;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        .search-button:hover {
            background: linear-gradient(90deg, #3b82f6, #60a5fa);
            padding-left: 40px;
            padding-right: 40px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 20px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: rgba(20, 25, 50, 0.7);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0, 5, 20, 0.5);
            border: 1px solid #2d3b6b;
        }
        .article-heading {
            margin-bottom: 30px;
        }
        .article-title {
            font-size: 2.8rem;
            color: #fff;
            margin-bottom: 15px;
            line-height: 1.2;
            background: linear-gradient(90deg, #fff, #4facfe);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .article-meta {
            color: #a0b0d0;
            font-size: 0.95rem;
            display: flex;
            gap: 20px;
            margin-bottom: 10px;
        }
        .article-meta i {
            margin-right: 8px;
            color: #4facfe;
        }
        .article-body {
            font-size: 1.1rem;
        }
        .article-body p {
            margin-bottom: 25px;
            text-align: justify;
        }
        .article-body h2 {
            font-size: 2rem;
            color: #00d2ff;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #1e3a8a;
        }
        .article-body h3 {
            font-size: 1.5rem;
            color: #ffd166;
            margin: 30px 0 15px;
        }
        .article-body strong {
            color: #ffd166;
            font-weight: 700;
        }
        .article-body em {
            color: #a0b0d0;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.3), rgba(59, 130, 246, 0.2));
            border-left: 5px solid #00d2ff;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .inline-img {
            margin: 30px auto;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
            border: 2px solid #3b82f6;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #a0b0d0;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .sidebar {
            background-color: rgba(20, 25, 50, 0.7);
            border-radius: 15px;
            padding: 25px;
            align-self: start;
            border: 1px solid #2d3b6b;
            box-shadow: 0 10px 25px rgba(0, 5, 20, 0.4);
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-title {
            font-size: 1.4rem;
            color: #00d2ff;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2d3b6b;
        }
        .sidebar-list {
            list-style: none;
        }
        .sidebar-list li {
            padding: 12px 0;
            border-bottom: 1px dashed #2d3b6b;
        }
        .sidebar-list li:last-child {
            border-bottom: none;
        }
        .sidebar-list a {
            display: flex;
            align-items: center;
            color: #b8d4ff;
        }
        .sidebar-list a:hover {
            color: #fff;
        }
        .sidebar-list i {
            margin-right: 12px;
            color: #4facfe;
            width: 20px;
            text-align: center;
        }
        .user-interaction {
            margin-top: 50px;
            background-color: rgba(25, 35, 70, 0.8);
            border-radius: 15px;
            padding: 35px;
            border: 1px solid #2d3b6b;
        }
        .interaction-title {
            font-size: 1.8rem;
            color: #ffd166;
            margin-bottom: 30px;
            text-align: center;
        }
        .rating-form, .comment-form {
            margin-bottom: 40px;
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-label {
            display: block;
            margin-bottom: 10px;
            color: #b8d4ff;
            font-weight: 600;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #3b82f6;
            background-color: rgba(255, 255, 255, 0.07);
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .form-input:focus, .form-textarea:focus {
            border-color: #00d2ff;
            box-shadow: 0 0 0 3px rgba(0, 210, 255, 0.2);
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            direction: rtl;
            justify-content: center;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2.5rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #ffd700;
        }
        .star-rating label:active {
            transform: scale(0.9);
        }
        .form-button {
            display: block;
            width: 100%;
            padding: 18px;
            background: linear-gradient(90deg, #1e3a8a, #3b82f6);
            border: none;
            border-radius: 8px;
            color: white;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .form-button:hover {
            background: linear-gradient(90deg, #3b82f6, #60a5fa);
            box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
        }
        .footer-links-section {
            background-color: rgba(15, 20, 45, 0.9);
            padding: 40px 20px;
            margin-top: 60px;
            border-top: 2px solid #1e3a8a;
            border-bottom: 2px solid #1e3a8a;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .web-link {
            background-color: rgba(30, 58, 138, 0.3);
            padding: 18px;
            border-radius: 8px;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: rgba(30, 58, 138, 0.5);
        }
        .web-link a {
            color: #b8d4ff;
            font-weight: 600;
            display: block;
        }
        .site-footer {
            text-align: center;
            padding: 30px 20px;
            color: #a0b0d0;
            font-size: 0.95rem;
            background-color: rgba(10, 15, 30, 0.95);
        }
        .copyright {
            margin-bottom: 10px;
        }
        .footer-nav a {
            color: #a0b0d0;
            margin: 0 15px;
        }
        .footer-nav a:hover {
            color: #4facfe;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
                order: 2;
            }
            .main-nav {
                order: 3;
                width: 100%;
                display: none;
                margin-top: 20px;
            }
            .main-nav.active {
                display: block;
            }
            .nav-list {
                flex-direction: column;
                gap: 10px;
            }
            .nav-list a {
                display: block;
                padding: 15px;
                background-color: rgba(30, 58, 138, 0.3);
            }
            .article-title {
                font-size: 2rem;
            }
            .article-content, .sidebar {
                padding: 25px;
            }
            .main-content {
                padding: 10px;
                gap: 25px;
            }
            .search-input, .search-button {
                padding: 15px;
            }
            .article-meta {
                flex-direction: column;
                gap: 10px;
            }
        }
