        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #e0e0e0;
            background: linear-gradient(135deg, #0c1a2d 0%, #152642 50%, #0f1b2f 100%);
            min-height: 100vh;
            padding: 0;
            margin: 0;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #74c0fc;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(12, 26, 45, 0.95);
            border-bottom: 2px solid #1e3a5c;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff6b6b, #4dabf7, #51cf66);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-shadow: 0 4px 15px rgba(77, 171, 247, 0.4);
        }
        .desktop-nav {
            display: flex;
            gap: 25px;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 6px;
            background: rgba(30, 58, 92, 0.6);
        }
        .desktop-nav a:hover {
            background: rgba(77, 171, 247, 0.2);
            text-decoration: none;
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #4dabf7;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: rgba(12, 26, 45, 0.98);
            padding: 20px;
            border-top: 1px solid #1e3a5c;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            z-index: 999;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 15px;
            border-bottom: 1px solid #1e3a5c;
            font-weight: 600;
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #94a3b8;
            background: rgba(15, 27, 47, 0.8);
            border-bottom: 1px solid #1e3a5c;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        main {
            padding: 30px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .content-area {
            background: rgba(18, 33, 56, 0.7);
            border-radius: 12px;
            padding: 30px;
            border: 1px solid #2d3f5c;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        h1 {
            font-size: 2.8rem;
            color: #ffd43b;
            margin-bottom: 25px;
            line-height: 1.3;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
            border-bottom: 3px solid #4dabf7;
            padding-bottom: 15px;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
        }
        h2 {
            font-size: 2rem;
            color: #74c0fc;
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 5px solid #ff6b6b;
        }
        h3 {
            font-size: 1.6rem;
            color: #51cf66;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: #ffa94d;
            margin: 25px 0 12px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: rgba(255, 107, 107, 0.15);
            border-left: 4px solid #ff6b6b;
            padding: 15px 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        strong {
            color: #ffd43b;
            font-weight: 700;
        }
        .search-section, .comment-section, .rating-section {
            background: rgba(30, 58, 92, 0.5);
            border-radius: 10px;
            padding: 25px;
            margin: 40px 0;
            border: 1px solid #3a5a7a;
        }
        .section-title {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #74c0fc;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        .section-title i {
            font-size: 1.8rem;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        input, textarea, select {
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #3a5a7a;
            background: rgba(12, 26, 45, 0.8);
            color: #e0e0e0;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #4dabf7;
            box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.3);
        }
        button {
            padding: 15px 25px;
            background: linear-gradient(90deg, #4dabf7, #339af0);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
        }
        button:hover {
            background: linear-gradient(90deg, #339af0, #228be6);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(51, 154, 240, 0.4);
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 2rem;
            color: #495057;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: #ffd43b;
        }
        .rating-stars input:checked ~ label {
            color: #ffd43b;
        }
        .featured-image {
            width: 100%;
            border-radius: 12px;
            margin: 30px auto;
            border: 2px solid #4dabf7;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s ease;
        }
        .featured-image:hover {
            transform: scale(1.02);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #94a3b8;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .sidebar {
            background: rgba(18, 33, 56, 0.7);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid #2d3f5c;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: #ffa94d;
            margin-top: 0;
            padding-bottom: 15px;
            border-bottom: 2px solid #ffa94d;
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 15px;
            padding: 15px;
            background: rgba(30, 58, 92, 0.5);
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .related-links li:hover {
            background: rgba(77, 171, 247, 0.2);
            transform: translateX(5px);
        }
        .related-links a {
            display: block;
            font-weight: 600;
        }
        footer {
            background: rgba(12, 26, 45, 0.95);
            border-top: 2px solid #1e3a5c;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            color: #74c0fc;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            padding: 12px 15px;
            margin-bottom: 10px;
            background: rgba(30, 58, 92, 0.6);
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        friend-link:hover {
            background: rgba(77, 171, 247, 0.2);
            transform: translateX(8px);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #1e3a5c;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        .update-time {
            display: inline-block;
            background: rgba(255, 107, 107, 0.15);
            color: #ffa94d;
            padding: 8px 15px;
            border-radius: 6px;
            font-size: 0.9rem;
            margin: 20px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: rgba(30, 58, 92, 0.6);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            border: 1px solid #3a5a7a;
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            border-color: #4dabf7;
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: #ffd43b;
            margin: 10px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            background: rgba(18, 33, 56, 0.8);
            border-radius: 10px;
            overflow: hidden;
        }
        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #2d3f5c;
        }
        th {
            background: rgba(30, 58, 92, 0.9);
            color: #74c0fc;
            font-weight: 700;
        }
        tr:hover {
            background: rgba(77, 171, 247, 0.1);
        }
