        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a1128;
            color: #e8e8e8;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #74c0fc;
            text-shadow: 0 0 8px rgba(116, 192, 252, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .site-header {
            background: linear-gradient(135deg, #001233 0%, #023e8a 100%);
            padding: 1rem 0;
            border-bottom: 3px solid #ff6b35;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff6b35, #ffd166);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .nav-primary {
            display: flex;
            gap: 2rem;
        }
        .nav-primary a {
            color: #ffffff;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-primary a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #ff6b35;
            transition: width 0.3s ease;
        }
        .nav-primary a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #001845;
            font-size: 0.9rem;
            border-bottom: 1px solid #023e8a;
        }
        .breadcrumb a {
            color: #a5d8ff;
        }
        .breadcrumb span {
            color: #adb5bd;
            margin: 0 0.5rem;
        }
        .search-module {
            background: #001845;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 5px 15px rgba(0, 20, 68, 0.5);
            text-align: center;
        }
        .search-module h2 {
            color: #ffd166;
            margin-bottom: 1rem;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem;
            border: 2px solid #023e8a;
            border-radius: 8px 0 0 8px;
            background: #0a1128;
            color: #fff;
            font-size: 1rem;
        }
        .search-btn {
            padding: 1rem 1.5rem;
            background: linear-gradient(90deg, #ff6b35, #ff9e6d);
            color: #001233;
            border: none;
            border-radius: 0 8px 8px 0;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s ease;
        }
        .search-btn:hover {
            transform: scale(1.05);
        }
        .main-content {
            flex-grow: 1;
            padding: 2rem 0;
        }
        .article-header {
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid #ff6b35;
        }
        .article-header h1 {
            font-size: 3.5rem;
            background: linear-gradient(90deg, #ff9e6d, #ffd166);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            color: #adb5bd;
            font-style: italic;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .article-body {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .article-body {
                grid-template-columns: 1fr;
            }
        }
        .article-text {
            font-size: 1.1rem;
        }
        .article-text p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-text h2 {
            color: #4dabf7;
            font-size: 2.2rem;
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #33415c;
        }
        .article-text h3 {
            color: #74c0fc;
            font-size: 1.7rem;
            margin: 2.5rem 0 1rem;
        }
        .article-text h4 {
            color: #a5d8ff;
            font-size: 1.4rem;
            margin: 2rem 0 1rem;
        }
        .article-text strong {
            color: #ffd166;
            font-weight: 700;
        }
        .article-text em {
            color: #ff9e6d;
            font-style: italic;
        }
        .inline-link {
            font-weight: 700;
            border-bottom: 1px dashed #4dabf7;
        }
        .highlight-box {
            background: linear-gradient(145deg, #001845, #002855);
            border-left: 5px solid #ff6b35;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .feature-img {
            margin: 2.5rem auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            border: 3px solid #023e8a;
        }
        .feature-img figcaption {
            text-align: center;
            padding: 1rem;
            background: #001845;
            color: #adb5bd;
            font-style: italic;
        }
        .sidebar {
            background: #001845;
            border-radius: 12px;
            padding: 1.5rem;
            align-self: start;
            position: sticky;
            top: 140px;
        }
        .sidebar h3 {
            color: #ffd166;
            margin-bottom: 1.5rem;
            text-align: center;
            font-size: 1.5rem;
        }
        .quick-links {
            list-style: none;
        }
        .quick-links li {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #33415c;
        }
        .quick-links a {
            display: block;
            padding: 0.8rem;
            background: #002855;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .quick-links a:hover {
            background: #023e8a;
            transform: translateX(5px);
        }
        .interactive-module {
            background: #001845;
            padding: 2rem;
            border-radius: 12px;
            margin: 3rem 0;
            box-shadow: 0 8px 20px rgba(0, 20, 68, 0.4);
        }
        .interactive-module h2 {
            color: #ffd166;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .interactive-module h2 i {
            color: #ff6b35;
        }
        .rating-form, .comment-form {
            display: grid;
            gap: 1.5rem;
            max-width: 600px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #a5d8ff;
        }
        .form-control {
            padding: 0.9rem;
            border-radius: 8px;
            border: 2px solid #33415c;
            background: #0a1128;
            color: #fff;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        .form-control:focus {
            outline: none;
            border-color: #4dabf7;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            cursor: pointer;
            justify-content: center;
            margin: 1rem 0;
        }
        .star-rating .star {
            color: #495057;
            transition: color 0.2s ease;
        }
        .star-rating .star.active,
        .star-rating .star:hover,
        .star-rating .star:hover ~ .star {
            color: #ffd166;
        }
        .submit-btn {
            padding: 1rem 2rem;
            background: linear-gradient(90deg, #ff6b35, #ff9e6d);
            color: #001233;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            justify-self: start;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 107, 53, 0.4);
        }
        .site-footer {
            background: #000814;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 3px solid #ff6b35;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: #ffd166;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            padding: 0.8rem 1rem;
            background: #001233;
            margin-bottom: 0.8rem;
            border-radius: 6px;
            border-left: 4px solid #4dabf7;
            transition: all 0.3s ease;
        }
        friend-link:hover {
            background: #001845;
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #33415c;
            color: #adb5bd;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-primary {
                position: fixed;
                top: 85px;
                left: -100%;
                width: 100%;
                background: #001233ee;
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                transition: left 0.4s ease;
                z-index: 999;
            }
            .nav-primary.active {
                left: 0;
            }
            .article-header h1 {
                font-size: 2.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input, .search-btn {
                border-radius: 8px;
                width: 100%;
            }
            .search-btn {
                margin-top: 1rem;
            }
            .sidebar {
                position: static;
            }
        }
