        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0a1a;
            color: #e0e0ff;
            line-height: 1.7;
            overflow-x: hidden;
            background-image: radial-gradient(circle at 10% 20%, rgba(28, 10, 58, 0.7) 0%, transparent 20%), radial-gradient(circle at 90% 80%, rgba(58, 10, 30, 0.5) 0%, transparent 20%);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #6ea1ff;
            text-decoration: none;
            transition: color 0.3s, transform 0.2s;
        }
        a:hover {
            color: #ff9a6e;
            transform: translateY(-2px);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(90deg, #ff6b6b, #ffa36c);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
        }
        .btn:hover {
            background: linear-gradient(90deg, #ff5252, #ff8a50);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(255, 107, 107, 0.5);
        }
        section {
            padding: 60px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        header {
            background-color: rgba(10, 10, 26, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #ff6b6b;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #ff6b6b, #6a11cb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 15px rgba(106, 17, 203, 0.3);
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: #b0b0ff;
            font-weight: 600;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .desktop-nav a:hover {
            color: #ff6b6b;
            border-bottom-color: #ff6b6b;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ff6b6b;
        }
        .mobile-nav {
            display: none;
            background-color: #151530;
            padding: 20px;
            border-top: 1px solid #333;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 15px 0;
        }
        .mobile-nav a {
            color: #b0b0ff;
            font-size: 1.2rem;
            display: block;
            padding: 10px;
            border-left: 4px solid transparent;
        }
        .mobile-nav a:hover {
            color: #ff6b6b;
            border-left-color: #ff6b6b;
            background-color: rgba(255, 107, 107, 0.1);
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: rgba(20, 20, 40, 0.8);
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ff6b6b;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .hero {
            text-align: center;
            padding: 80px 20px;
            background: linear-gradient(135deg, rgba(20, 10, 40, 0.9) 0%, rgba(40, 10, 60, 0.7) 100%);
            border-bottom: 3px solid #ff6b6b;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
            z-index: -1;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            background: linear-gradient(to right, #ff9a6e, #ff6b6b, #6a11cb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #d0d0ff;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 30px;
        }
        .search-section {
            background-color: rgba(15, 15, 35, 0.8);
            padding: 40px 20px;
            text-align: center;
        }
        .search-box {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }
        .search-box input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid #444;
            border-radius: 4px;
            background-color: #1a1a3a;
            color: white;
            font-size: 1rem;
        }
        .search-box input:focus {
            outline: none;
            border-color: #ff6b6b;
        }
        .search-box button {
            padding: 15px 30px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 40px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        main article h2 {
            font-size: 2.5rem;
            margin: 40px 0 20px;
            color: #ff9a6e;
            border-left: 5px solid #ff6b6b;
            padding-left: 15px;
        }
        main article h3 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: #6ea1ff;
        }
        main article h4 {
            font-size: 1.4rem;
            margin: 25px 0 10px;
            color: #b0b0ff;
        }
        main article p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
            color: #ccccff;
        }
        .highlight {
            background-color: rgba(255, 107, 107, 0.1);
            border-left: 4px solid #ff6b6b;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight p {
            margin-bottom: 0;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 8px;
            border: 2px solid #444;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s, box-shadow 0.5s;
            max-width: 100%;
            height: auto;
        }
        .image-container img:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3);
        }
        .caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
            justify-content: center;
        }
        .link-list a {
            background-color: rgba(30, 30, 60, 0.8);
            padding: 10px 20px;
            border-radius: 30px;
            border: 1px solid #444;
        }
        .link-list a:hover {
            background-color: rgba(255, 107, 107, 0.2);
            border-color: #ff6b6b;
        }
        aside {
            background-color: rgba(20, 20, 40, 0.8);
            padding: 25px;
            border-radius: 8px;
            border: 1px solid #333;
            align-self: start;
            position: sticky;
            top: 140px;
        }
        aside h3 {
            color: #ff9a6e;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #444;
        }
        .sidebar-links ul {
            list-style: none;
        }
        .sidebar-links li {
            margin: 12px 0;
        }
        .sidebar-links a {
            display: block;
            padding: 10px;
            background-color: rgba(40, 40, 80, 0.5);
            border-radius: 4px;
        }
        .sidebar-links a:hover {
            background-color: rgba(255, 107, 107, 0.2);
        }
        .rating-section, .comment-section {
            background-color: rgba(15, 15, 35, 0.8);
            padding: 40px;
            border-radius: 8px;
            margin-top: 40px;
        }
        .rating-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 2.5rem;
            cursor: pointer;
        }
        .stars i {
            color: #444;
            transition: color 0.3s;
        }
        .stars i.active {
            color: #ffcc00;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 8px;
            color: #b0b0ff;
            font-weight: bold;
        }
        .form-group input,
        .form-group textarea {
            padding: 15px;
            background-color: #1a1a3a;
            border: 2px solid #444;
            border-radius: 4px;
            color: white;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        footer {
            background-color: #050510;
            padding: 50px 20px 30px;
            margin-top: 60px;
            border-top: 2px solid #ff6b6b;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #ff6b6b, #6a11cb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }
        .footer-links h4, .footer-contact h4 {
            color: #ff9a6e;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin: 12px 0;
        }
        friend-link {
            display: block;
            margin: 10px 0;
            padding: 8px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 4px;
        }
        friend-link a:hover {
            color: #ff9a6e;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            main article h2 {
                font-size: 2rem;
            }
            main article h3 {
                font-size: 1.5rem;
            }
            .content-wrapper {
                gap: 30px;
            }
            aside {
                position: static;
            }
            .rating-section, .comment-section {
                padding: 25px;
            }
        }
