        * {
            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, #1a1a2e 0%, #16213e 100%);
            color: #e0e0ff;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #64b5f6;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ffcc80;
            text-shadow: 0 0 8px rgba(255, 204, 128, 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;
        }
        section {
            padding: 40px 0;
        }
        header {
            background: rgba(10, 15, 35, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #304ffe;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff9a9e, #fad0c4, #fad0c4, #a1c4fd);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .breadcrumb {
            padding: 10px 0;
            font-size: 0.9rem;
            color: #aaa;
            border-bottom: 1px solid #333;
        }
        .breadcrumb a { color: #aaa; }
        .breadcrumb a:hover { color: #64b5f6; }
        .breadcrumb .separator { margin: 0 8px; }
        .desktop-nav {
            display: flex;
            gap: 25px;
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background: rgba(100, 181, 246, 0.15);
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: #64b5f6;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .mobile-toggle { display: block; }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: rgba(10, 15, 35, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #304ffe;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 15px;
            border-bottom: 1px solid #222;
            font-weight: 600;
        }
        .mobile-nav a:last-child { border-bottom: none; }
        .hero {
            background: radial-gradient(circle at 30% 20%, rgba(67, 97, 238, 0.2) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255, 154, 158, 0.15) 0%, transparent 50%);
            padding: 60px 0;
            text-align: center;
            border-bottom: 2px solid #304ffe;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, #ffcc80, #64b5f6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
        }
        .search-box {
            max-width: 600px;
            margin: 30px auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }
        .search-box input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            background: rgba(255, 255, 255, 0.95);
            font-size: 1.1rem;
            color: #222;
        }
        .search-box button {
            background: linear-gradient(90deg, #304ffe, #3d5afe);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: linear-gradient(90deg, #3d5afe, #536dfe);
        }
        main {
            flex-grow: 1;
            padding: 30px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
        }
        .article-content {
            background: rgba(25, 30, 60, 0.7);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border: 1px solid #444;
        }
        .article-content h2 {
            color: #ffcc80;
            font-size: 2.2rem;
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #64b5f6;
        }
        .article-content h3 {
            color: #64b5f6;
            font-size: 1.8rem;
            margin: 30px 0 15px;
        }
        .article-content h4 {
            color: #90caf9;
            font-size: 1.4rem;
            margin: 25px 0 10px;
        }
        .article-content p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 204, 128, 0.1);
            border-left: 4px solid #ffcc80;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: #aaa;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #444;
        }
        .featured-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            margin: 30px 0;
            border: 3px solid #304ffe;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .widget {
            background: rgba(25, 30, 60, 0.7);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid #444;
        }
        .widget h3 {
            color: #ffcc80;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 2rem;
            color: #ffcc80;
            margin: 20px 0;
        }
        .rating-stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            min-height: 120px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid #555;
            border-radius: 8px;
            padding: 15px;
            color: #fff;
            margin-bottom: 15px;
            resize: vertical;
        }
        .btn-submit {
            background: linear-gradient(90deg, #ff6b6b, #ff8e53);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            width: 100%;
            transition: transform 0.3s;
        }
        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #444;
        }
        .related-links li:last-child {
            border-bottom: none;
        }
        footer {
            background: rgba(5, 10, 30, 0.98);
            border-top: 2px solid #304ffe;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        friend-link {
            display: block;
            background: rgba(100, 181, 246, 0.1);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 10px;
            border-left: 4px solid #64b5f6;
        }
        friend-link:hover {
            background: rgba(100, 181, 246, 0.2);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        .float-emoji {
            font-size: 1.5rem;
            margin: 0 5px;
            vertical-align: middle;
            animation: float 3s ease-in-out infinite;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        .pulse {
            display: inline-block;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
