        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0c1a2d 0%, #152642 100%);
            color: #e0e0e0;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: all 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;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 25, 47, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #1a3a5f;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff9a00, #ff2e00);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .logo a:hover {
            filter: brightness(1.2);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            color: #b0d0ff;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-links a:hover,
        .nav-links a.active {
            background: rgba(26, 58, 95, 0.7);
            color: #fff;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #b0d0ff;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #8fa3c9;
            background: rgba(15, 30, 55, 0.6);
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: #b0d0ff;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        main {
            flex: 1;
            padding: 20px 0 40px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(20, 35, 60, 0.8);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border: 1px solid #2a4466;
        }
        h1 {
            font-size: 2.8rem;
            color: #fff;
            margin-bottom: 20px;
            line-height: 1.2;
            text-align: center;
            background: linear-gradient(90deg, #ff9a00, #ffd166);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            border-bottom: 3px solid #ff9a00;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            color: #4dabf7;
            margin: 35px 0 15px;
            padding-left: 10px;
            border-left: 5px solid #ff9a00;
        }
        h3 {
            font-size: 1.6rem;
            color: #74c0fc;
            margin: 25px 0 10px;
        }
        h4 {
            font-size: 1.3rem;
            color: #a5d8ff;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 154, 0, 0.15);
            border-left: 4px solid #ff9a00;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .featured-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            margin: 25px auto;
            border: 3px solid #2a4466;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .link-list {
            background: rgba(26, 58, 95, 0.5);
            padding: 20px;
            border-radius: 10px;
            margin: 25px 0;
        }
        .link-list h3 {
            margin-top: 0;
        }
        .link-list ul {
            list-style: none;
            columns: 2;
        }
        .link-list li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }
        .link-list li:before {
            content: '🔗';
            position: absolute;
            left: 0;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #1a3a5f, #152642);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid #2a4a70;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: #ff9a00;
            margin-bottom: 15px;
        }
        .stat-card h4 {
            margin: 10px 0;
            color: #fff;
        }
        aside {
            background: rgba(20, 35, 60, 0.8);
            border-radius: 15px;
            padding: 25px;
            height: fit-content;
            border: 1px solid #2a4466;
        }
        .search-box {
            margin-bottom: 30px;
        }
        .search-box h3 {
            margin-top: 0;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #2a4466;
            border-radius: 8px 0 0 8px;
            background: rgba(10, 25, 47, 0.8);
            color: #e0e0e0;
            font-size: 1rem;
        }
        .search-form button {
            background: linear-gradient(90deg, #ff9a00, #ff6b00);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        .search-form button:hover {
            background: linear-gradient(90deg, #ffaa22, #ff7b22);
        }
        .rating-widget, .comment-widget {
            background: rgba(26, 58, 95, 0.5);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 25px;
        }
        .rating-widget h3, .comment-widget h3 {
            margin-top: 0;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 15px 0;
        }
        .stars i {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffcc00;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-form input, .comment-form input, .comment-form textarea {
            padding: 12px;
            border: 1px solid #2a4466;
            border-radius: 8px;
            background: rgba(10, 25, 47, 0.8);
            color: #e0e0e0;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .rating-form button, .comment-form button {
            background: linear-gradient(90deg, #339af0, #228be6);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        .rating-form button:hover, .comment-form button:hover {
            background: linear-gradient(90deg, #4dabf7, #339af0);
        }
        footer {
            background: rgba(10, 25, 47, 0.95);
            border-top: 2px solid #1a3a5f;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #ff9a00;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2a4466;
            color: #8fa3c9;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(10, 25, 47, 0.98);
                flex-direction: column;
                align-items: center;
                padding-top: 40px;
                gap: 25px;
                transition: left 0.5s ease;
            }
            .nav-links.active {
                left: 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .link-list ul {
                columns: 1;
            }
        }
