        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            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;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #ff6b6b;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #ff6b6b, #00a8ff);
            border-radius: 2px;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255,107,107,0.2), rgba(0,168,255,0.2));
            padding: 3px 8px;
            border-radius: 4px;
            font-weight: bold;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(135deg, #00a8ff, #4cd137);
            color: white;
            border: none;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 168, 255, 0.3);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 168, 255, 0.5);
        }
        header {
            background: rgba(15, 20, 25, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #1a222d;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff6b6b, #00a8ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .my-logo a {
            background: none;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: #bdc3c7;
            font-weight: 600;
            font-size: 1.1rem;
        }
        .desktop-nav a:hover {
            color: #00a8ff;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #00a8ff;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(20, 26, 34, 0.98);
            flex-direction: column;
            padding: 20px;
            border-top: 1px solid #2c3e50;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 15px 0;
        }
        .mobile-nav a {
            color: #ecf0f1;
            font-size: 1.2rem;
            display: block;
            padding: 10px;
            border-radius: 5px;
        }
        .mobile-nav a:hover {
            background: rgba(0, 168, 255, 0.1);
        }
        .breadcrumb {
            padding: 15px 20px;
            background: #1a222d;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #7f8c8d;
        }
        .breadcrumb a:hover {
            color: #00a8ff;
        }
        .breadcrumb span {
            color: #bdc3c7;
            margin: 0 8px;
        }
        .hero {
            background: linear-gradient(rgba(15, 20, 25, 0.9), rgba(15, 20, 25, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            text-align: center;
            padding: 100px 20px;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #ff6b6b, #00a8ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #bdc3c7;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 40px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        article h2 {
            font-size: 2rem;
            color: #4cd137;
            margin: 50px 0 20px;
            border-left: 5px solid #00a8ff;
            padding-left: 15px;
        }
        article h3 {
            font-size: 1.7rem;
            color: #ff9f43;
            margin: 40px 0 15px;
        }
        article h4 {
            font-size: 1.4rem;
            color: #00a8ff;
            margin: 30px 0 10px;
        }
        article ul, article ol {
            margin-left: 30px;
            margin-bottom: 25px;
        }
        article li {
            margin-bottom: 10px;
        }
        .article-img {
            margin: 30px auto;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            transition: transform 0.5s ease;
        }
        .article-img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #95a5a6;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .sidebar {
            background: #1a222d;
            border-radius: 10px;
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-title {
            font-size: 1.5rem;
            color: #ff6b6b;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2c3e50;
        }
        .search-form {
            display: flex;
            margin-bottom: 30px;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid #2c3e50;
            background: #0f1419;
            color: white;
            border-radius: 30px 0 0 30px;
            outline: none;
        }
        .search-form button {
            padding: 0 25px;
            background: linear-gradient(135deg, #00a8ff, #4cd137);
            color: white;
            border: none;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            font-weight: bold;
        }
        .comment-section, .rating-section {
            background: #1a222d;
            border-radius: 10px;
            padding: 30px;
            margin-top: 50px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #bdc3c7;
            font-weight: bold;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px;
            background: #0f1419;
            border: 1px solid #2c3e50;
            border-radius: 8px;
            color: white;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #f1c40f;
            margin: 15px 0;
        }
        .stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }
        .link-list a {
            background: #2c3e50;
            padding: 10px 20px;
            border-radius: 30px;
            color: #ecf0f1;
        }
        .link-list a:hover {
            background: #00a8ff;
            color: white;
        }
        footer {
            background: #0a0e13;
            padding: 60px 0 30px;
            margin-top: 80px;
            border-top: 3px solid #00a8ff;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ff6b6b;
            margin-bottom: 25px;
            font-size: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .friend-links {
            background: #1a222d;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .friend-links h4 {
            color: #4cd137;
            margin-bottom: 15px;
        }
        friend-link {
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 10px;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2c3e50;
            color: #7f8c8d;
            font-size: 0.9rem;
        }
        .update-time {
            color: #ff9f43;
            font-weight: bold;
            margin-top: 20px;
            padding: 10px;
            background: rgba(255, 159, 67, 0.1);
            border-radius: 5px;
            display: inline-block;
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .section-title { font-size: 2rem; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .header-container { padding: 15px; }
            .content-wrapper { gap: 30px; }
            article h2 { font-size: 1.8rem; }
            article h3 { font-size: 1.5rem; }
        }
