        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #f1f5f9;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #3b82f6;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e293b, #0f172a);
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: bold;
            color: #fbbf24;
            text-shadow: 2px 2px 4px #000;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: #f59e0b;
        }
        .my-logo:hover {
            color: #fcd34d;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav ul li a {
            color: #cbd5e1;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
            transition: background 0.3s;
        }
        nav ul li a:hover {
            background: #334155;
            color: #ffffff;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #fbbf24;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #cbd5e1;
        }
        main {
            padding: 30px 0;
            background: #1e293b;
            min-height: 100vh;
        }
        article {
            background: #0f172a;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
            margin-bottom: 30px;
        }
        h1 {
            font-size: 3rem;
            color: #fbbf24;
            margin-bottom: 20px;
            text-align: center;
            text-shadow: 2px 2px 5px #000;
        }
        h2 {
            font-size: 2.2rem;
            color: #60a5fa;
            margin-top: 30px;
            margin-bottom: 15px;
            border-left: 5px solid #3b82f6;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #34d399;
            margin-top: 25px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: 1.5rem;
            color: #a78bfa;
            margin-top: 20px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #e2e8f0;
            line-height: 1.9;
        }
        .highlight {
            background: #1e3a8a;
            padding: 20px;
            border-radius: 10px;
            margin: 25px 0;
            border-left: 6px solid #fbbf24;
        }
        .highlight strong {
            color: #fcd34d;
        }
        .feature-img {
            margin: 30px auto;
            max-width: 800px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
        }
        .emoji {
            font-size: 1.3rem;
            margin-right: 8px;
        }
        .form-section {
            background: #1e293b;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 8px;
            color: #cbd5e1;
            font-weight: 600;
        }
        input, textarea, select {
            padding: 12px;
            border: 2px solid #475569;
            border-radius: 8px;
            background: #0f172a;
            color: #f1f5f9;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #60a5fa;
        }
        button {
            padding: 12px 25px;
            background: linear-gradient(90deg, #3b82f6, #1d4ed8);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, background 0.3s;
            align-self: start;
        }
        button:hover {
            background: linear-gradient(90deg, #1d4ed8, #1e40af);
            transform: translateY(-3px);
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .rating i {
            color: #fbbf24;
            cursor: pointer;
            font-size: 1.8rem;
            transition: color 0.3s;
        }
        .rating i:hover {
            color: #f59e0b;
        }
        footer {
            background: #0f172a;
            padding: 40px 0 20px;
            text-align: center;
            border-top: 3px solid #334155;
        }
        friend-link {
            display: block;
            margin: 25px 0;
        }
        .friend-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        .friend-links a {
            background: #1e293b;
            padding: 15px;
            border-radius: 8px;
            color: #cbd5e1;
            transition: background 0.3s;
        }
        .friend-links a:hover {
            background: #334155;
            color: #ffffff;
        }
        .copyright {
            margin-top: 30px;
            color: #94a3b8;
            font-size: 0.9rem;
            border-top: 1px solid #475569;
            padding-top: 20px;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1e293b;
                position: absolute;
                top: 70px;
                left: 0;
                padding: 20px;
                border-radius: 0 0 10px 10px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.3);
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            h4 {
                font-size: 1.3rem;
            }
            .form-section {
                grid-template-columns: 1fr;
            }
            .friend-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .friend-links {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.6rem;
            }
        }
        .text-center {
            text-align: center;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .mt-30 {
            margin-top: 30px;
        }
        .updated-time {
            color: #94a3b8;
            font-style: italic;
            font-size: 0.9rem;
            margin-top: 10px;
        }
