        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #e2e8f0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #38bdf8;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            padding: 1rem 0;
            border-bottom: 2px solid #334155;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #fbbf24, #10b981);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0.8rem;
            border-radius: 6px;
        }
        .nav-links a:hover {
            background-color: rgba(96, 165, 250, 0.15);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #fbbf24;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.95rem;
            color: #94a3b8;
            border-bottom: 1px solid #334155;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #cbd5e1;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .content-area {
            background: rgba(30, 41, 59, 0.7);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        h1 {
            font-size: 2.8rem;
            color: #fbbf24;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2rem;
            color: #60a5fa;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #475569;
        }
        h3 {
            font-size: 1.6rem;
            color: #34d399;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #a78bfa;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(245, 158, 11, 0.15);
            border-left: 4px solid #f59e0b;
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            background: #1e293b;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .stat-item {
            text-align: center;
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: #10b981;
        }
        .featured-img {
            width: 100%;
            border-radius: 12px;
            border: 3px solid #475569;
            margin: 2rem auto;
            box-shadow: 0 8px 20px rgba(0,0,0,0.4);
        }
        .sidebar {
            background: rgba(30, 41, 59, 0.7);
            border-radius: 12px;
            padding: 1.8rem;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .search-box {
            margin-bottom: 2rem;
        }
        .search-box input {
            width: 100%;
            padding: 0.9rem;
            border-radius: 8px;
            border: 1px solid #475569;
            background: #1e293b;
            color: #e2e8f0;
            font-size: 1rem;
        }
        .search-box button {
            width: 100%;
            padding: 0.9rem;
            margin-top: 0.8rem;
            background: linear-gradient(90deg, #3b82f6, #1d4ed8);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .search-box button:hover {
            transform: scale(1.03);
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.9rem;
            padding-bottom: 0.9rem;
            border-bottom: 1px dashed #475569;
        }
        .comment-form, .rating-form {
            background: #1e293b;
            padding: 2rem;
            border-radius: 12px;
            margin-top: 3rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.9rem;
            border-radius: 8px;
            border: 1px solid #475569;
            background: #0f172a;
            color: #e2e8f0;
            font-size: 1rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #94a3b8;
            cursor: pointer;
        }
        .stars .active {
            color: #fbbf24;
        }
        .submit-btn {
            background: linear-gradient(90deg, #10b981, #059669);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #34d399, #10b981);
            box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
        }
        footer {
            background: #1e293b;
            margin-top: 4rem;
            padding: 3rem 0 2rem;
            border-top: 3px solid #334155;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        friend-link {
            display: block;
            padding: 0.8rem 1.5rem;
            background: rgba(96, 165, 250, 0.1);
            border-radius: 6px;
            transition: all 0.3s;
        }
        friend-link:hover {
            background: rgba(96, 165, 250, 0.25);
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            color: #94a3b8;
            font-size: 0.95rem;
            padding-top: 2rem;
            border-top: 1px solid #475569;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 20px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
                gap: 0;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                width: 100%;
            }
            .nav-links a {
                display: block;
                padding: 1rem;
                border-bottom: 1px solid #334155;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-area, .sidebar {
                padding: 1.5rem;
            }
        }
