        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a1128;
            color: #e6e6e6;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffd43b;
        }
        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, #001f3f 0%, #0a1128 100%);
            padding: 1rem 0;
            border-bottom: 2px solid #1c3b6a;
            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: 800;
            background: linear-gradient(90deg, #ffd43b, #f76707);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a:hover {
            opacity: 0.9;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 212, 59, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ffd43b;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #001f3f;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid #1c3b6a;
            z-index: 999;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 0.8rem;
            border-bottom: 1px solid #1c3b6a;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #0d1b36;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #a5d8ff;
        }
        .breadcrumb span {
            color: #adb5bd;
            margin: 0 5px;
        }
        main {
            padding: 2rem 0;
            background-color: #0a1128;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        h1 {
            font-size: 2.8rem;
            color: #ffd43b;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 5px solid #f76707;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #4dabf7;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #1c3b6a;
        }
        h3 {
            font-size: 1.6rem;
            color: #74c0fc;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #a5d8ff;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.2rem;
            background-color: rgba(29, 78, 216, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            border-left: 4px solid #3b82f6;
        }
        .highlight {
            background-color: rgba(255, 212, 59, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            border-left: 4px solid #ffd43b;
        }
        .highlight p {
            margin-bottom: 0;
        }
        .stats-box {
            background-color: #112240;
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid #1e4a8a;
            margin: 2rem 0;
        }
        .stats-box h4 {
            color: #ffd43b;
        }
        .quote {
            font-style: italic;
            border-left: 4px solid #f76707;
            padding-left: 1.5rem;
            margin: 2rem 0;
            color: #d0ebff;
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            border: 2px solid #1c3b6a;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease;
        }
        .image-container img:hover {
            transform: scale(1.01);
        }
        .image-caption {
            font-size: 0.9rem;
            color: #adb5bd;
            margin-top: 0.5rem;
        }
        ul, ol {
            padding-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        strong {
            color: #ffd43b;
            font-weight: 700;
        }
        em {
            color: #a5d8ff;
        }
        aside {
            background-color: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            padding: 2rem;
            height: fit-content;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            color: #ffd43b;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #1c3b6a;
        }
        .search-box {
            display: flex;
            margin-bottom: 1rem;
        }
        .search-box input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 1px solid #1c3b6a;
            border-radius: 6px 0 0 6px;
            background-color: #112240;
            color: #e6e6e6;
        }
        .search-box button {
            background-color: #1c7ed6;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-box button:hover {
            background-color: #1971c2;
        }
        .rating-widget, .comment-widget {
            background-color: #112240;
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid #1e4a8a;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.5rem;
            color: #ffd43b;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i:hover {
            color: #ffc107;
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #1c3b6a;
            border-radius: 6px;
            background-color: #0d1b36;
            color: #e6e6e6;
        }
        button[type="submit"] {
            background-color: #20c997;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
            width: 100%;
        }
        button[type="submit"]:hover {
            background-color: #12b886;
        }
        footer {
            background: linear-gradient(0deg, #001f3f 0%, #0a1128 100%);
            padding: 3rem 0 1.5rem;
            border-top: 2px solid #1c3b6a;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: #ffd43b;
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .footer-links a {
            display: block;
            margin-bottom: 0.6rem;
            color: #a5d8ff;
        }
        friend-link {
            display: block;
            margin-top: 1rem;
            padding: 1rem;
            background-color: rgba(255, 212, 59, 0.05);
            border-radius: 6px;
            border-left: 4px solid #ffd43b;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #1c3b6a;
            color: #adb5bd;
            font-size: 0.9rem;
        }
