        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0a0f2b 0%, #1a1f3c 100%);
            color: #e0e0ff;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #4fc3f7;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
            text-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 15, 43, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ffcc00;
            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: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ffcc00, #ff3366);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
        }
        .logo a:hover {
            text-shadow: 0 0 15px rgba(255, 51, 102, 0.7);
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            position: relative;
        }
        .nav-desktop a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #ffcc00;
            transition: width 0.3s;
        }
        .nav-desktop a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffcc00;
        }
        .nav-mobile {
            display: none;
            background: rgba(20, 25, 60, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .nav-mobile.active {
            display: block;
        }
        .nav-mobile ul {
            list-style: none;
        }
        .nav-mobile li {
            margin: 15px 0;
        }
        .nav-mobile a {
            font-size: 1.2rem;
            display: block;
            padding: 10px;
            border-left: 4px solid transparent;
        }
        .nav-mobile a:hover {
            border-left-color: #ffcc00;
            background: rgba(255, 204, 0, 0.1);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .search-container {
            background: rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: 15px;
            margin: 25px 0;
            border: 1px solid #333;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #444;
            border-radius: 50px 0 0 50px;
            background: rgba(255, 255, 255, 0.08);
            color: white;
            font-size: 1rem;
            outline: none;
        }
        .search-form input:focus {
            border-color: #ffcc00;
        }
        .search-form button {
            background: linear-gradient(90deg, #ff3366, #ffcc00);
            color: black;
            border: none;
            padding: 0 30px;
            border-radius: 0 50px 50px 0;
            font-weight: bold;
            cursor: pointer;
            font-size: 1rem;
            transition: transform 0.3s;
        }
        .search-form button:hover {
            transform: scale(1.05);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px 0;
        }
        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(25, 30, 60, 0.7);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid #333;
        }
        article h1 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            color: #ffcc00;
            line-height: 1.2;
            text-align: center;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }
        article h2 {
            font-size: 2rem;
            color: #4fc3f7;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #333;
        }
        article h3 {
            font-size: 1.6rem;
            color: #ff8a65;
            margin: 30px 0 15px;
        }
        article h4 {
            font-size: 1.3rem;
            color: #a5d6a7;
            margin: 25px 0 10px;
        }
        article p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
        }
        article strong {
            color: #ffcc00;
            font-weight: 700;
        }
        article em {
            color: #ff8a65;
            font-style: italic;
        }
        .highlight-box {
            background: rgba(255, 204, 0, 0.1);
            border-left: 5px solid #ffcc00;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .image-container img {
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            border: 3px solid #444;
            transition: transform 0.5s;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            margin-top: 10px;
            font-style: italic;
            color: #aaa;
            font-size: 0.95rem;
        }
        .sidebar {
            background: rgba(20, 25, 50, 0.7);
            border-radius: 20px;
            padding: 25px;
            align-self: start;
            border: 1px solid #333;
        }
        .sidebar h3 {
            color: #ffcc00;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #444;
            font-size: 1.5rem;
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 15px;
            padding-left: 20px;
            position: relative;
        }
        .related-links li:before {
            content: '🔥';
            position: absolute;
            left: 0;
            top: 2px;
        }
        .related-links a {
            display: block;
            padding: 8px 0;
            border-bottom: 1px dashed #444;
        }
        .related-links a:hover {
            border-bottom-color: #ffcc00;
        }
        .interaction-container {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            margin-top: 40px;
            border: 1px solid #333;
        }
        .interaction-container h2 {
            color: #ffcc00;
            margin-bottom: 25px;
        }
        .rating-form, .comment-form {
            margin-bottom: 30px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0 25px;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border-radius: 10px;
            border: 2px solid #444;
            background: rgba(255, 255, 255, 0.08);
            color: white;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #ffcc00;
            outline: none;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #00c853, #4fc3f7);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(79, 195, 247, 0.4);
        }
        .site-footer {
            background: rgba(10, 15, 43, 0.95);
            border-top: 2px solid #ff3366;
            margin-top: 60px;
            padding: 40px 0 20px;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #ffcc00;
            margin-bottom: 25px;
            font-size: 1.4rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .friend-link {
            display: inline-block;
            background: rgba(255, 51, 102, 0.1);
            padding: 10px 20px;
            border-radius: 8px;
            margin: 5px;
            border: 1px solid #ff3366;
            transition: all 0.3s;
        }
        .friend-link:hover {
            background: rgba(255, 51, 102, 0.3);
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            article h1 { font-size: 2.4rem; }
            article h2 { font-size: 1.8rem; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
        }
        @media (max-width: 576px) {
            article { padding: 25px; }
            article h1 { font-size: 2rem; }
            article h2 { font-size: 1.6rem; }
            .search-form { flex-direction: column; }
            .search-form input { border-radius: 50px; margin-bottom: 10px; }
            .search-form button { border-radius: 50px; padding: 15px; }
        }
