        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            color: #f0f0f0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #00a8ff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #4cd137;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(90deg, #e74c3c, #c0392b);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
        }
        .btn:hover {
            background: linear-gradient(90deg, #c0392b, #e74c3c);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
        }
        section {
            padding: 60px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .site-header {
            background: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            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, #ff9a00, #ff2c2c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 10px rgba(255, 44, 44, 0.3);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #00a8ff;
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-menu-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #00a8ff;
        }
        .mobile-nav {
            display: none;
            background: rgba(15, 15, 25, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.7);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 15px 0;
        }
        .mobile-nav a {
            font-size: 1.2rem;
            display: block;
            padding: 10px;
            border-left: 4px solid #00a8ff;
        }
        .breadcrumb {
            padding: 15px 20px;
            background: rgba(255,255,255,0.03);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #00a8ff;
        }
        .breadcrumb span {
            color: #777;
            margin: 0 8px;
        }
        .hero {
            text-align: center;
            padding: 100px 20px;
            background: radial-gradient(circle at center, rgba(255, 100, 0, 0.1) 0%, transparent 70%);
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #ff9a00, #ff2c2c, #00a8ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ccc;
        }
        .search-section {
            background: rgba(30, 30, 50, 0.5);
            padding: 40px 20px;
            text-align: center;
        }
        .search-box {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
        }
        .search-box input {
            width: 100%;
            padding: 18px 25px;
            border-radius: 50px;
            border: 2px solid #444;
            background: rgba(255,255,255,0.08);
            color: white;
            font-size: 1.1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-box input:focus {
            border-color: #00a8ff;
        }
        .search-box button {
            position: absolute;
            right: 8px;
            top: 8px;
            background: #00a8ff;
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #0097e6;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 20px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content h2 {
            font-size: 2.5rem;
            margin: 40px 0 20px;
            color: #ff9a00;
            border-left: 5px solid #00a8ff;
            padding-left: 15px;
        }
        .article-content h3 {
            font-size: 2rem;
            margin: 35px 0 15px;
            color: #4cd137;
        }
        .article-content h4 {
            font-size: 1.6rem;
            margin: 30px 0 12px;
            color: #9b59b6;
        }
        .article-content p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            color: #ddd;
            text-align: justify;
        }
        .article-content strong {
            color: #ff9a00;
            font-weight: 700;
        }
        .article-content em {
            color: #4cd137;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(0, 168, 255, 0.1), rgba(155, 89, 182, 0.1));
            border-left: 5px solid #9b59b6;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .link-list {
            background: rgba(255,255,255,0.03);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .link-list h4 {
            margin-top: 0;
            color: #00a8ff;
        }
        .link-list ul {
            list-style: none;
            padding-left: 20px;
        }
        .link-list li {
            margin: 12px 0;
            position: relative;
        }
        .link-list li::before {
            content: '➤';
            color: #ff9a00;
            position: absolute;
            left: -20px;
        }
        .sidebar-widget {
            background: rgba(30, 30, 50, 0.6);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
            border: 1px solid rgba(255,255,255,0.05);
        }
        .sidebar-widget h3 {
            color: #ff9a00;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #00a8ff;
        }
        .rating-section, .comment-section {
            background: rgba(20, 20, 35, 0.8);
            padding: 40px;
            border-radius: 15px;
            margin-top: 40px;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 600px;
            margin: 30px auto;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #444;
            margin: 15px 0;
        }
        .rating-stars .star {
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #ff9a00;
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #555;
            background: rgba(255,255,255,0.07);
            color: white;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .site-footer {
            background: rgba(5, 5, 10, 0.98);
            padding: 50px 20px 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(45deg, #00a8ff, #4cd137);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        friend-link {
            display: block;
            margin: 15px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-menu-toggle { display: block; }
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.1rem; }
            .article-content h2 { font-size: 2rem; }
            .article-content h3 { font-size: 1.7rem; }
            .main-content { padding: 20px 15px; }
            .rating-section, .comment-section { padding: 25px; }
        }
