* {
            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: #38bdf8;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #fbbf24;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(90deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav ul li a {
            font-weight: 600;
            padding: 10px 15px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        nav ul li a:hover {
            background-color: #475569;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #fbbf24;
        }
        .breadcrumb {
            margin-top: 20px;
            font-size: 0.9rem;
            color: #cbd5e1;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        main {
            padding: 40px 0;
        }
        article {
            background: #1e293b;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            margin-bottom: 40px;
        }
        h1 {
            font-size: 3.2rem;
            color: #fbbf24;
            margin-bottom: 25px;
            line-height: 1.3;
            text-align: center;
        }
        h2 {
            font-size: 2.4rem;
            color: #60a5fa;
            margin-top: 40px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #475569;
        }
        h3 {
            font-size: 1.8rem;
            color: #38bdf8;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #7dd3fc;
            margin-top: 25px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        strong {
            color: #fbbf24;
            font-weight: 700;
        }
        .highlight {
            background-color: #475569;
            padding: 20px;
            border-left: 5px solid #fbbf24;
            border-radius: 10px;
            margin: 25px 0;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
            transition: transform 0.5s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .links-in-content {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
            justify-content: center;
        }
        .links-in-content a {
            background: #334155;
            padding: 12px 20px;
            border-radius: 10px;
            display: inline-block;
            transition: background 0.3s ease, transform 0.3s ease;
        }
        .links-in-content a:hover {
            background: #475569;
            transform: translateY(-5px);
        }
        .form-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        .form-box {
            background: #334155;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }
        .form-box h3 {
            color: #fbbf24;
            margin-top: 0;
        }
        .form-box input, .form-box textarea, .form-box select {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 2px solid #475569;
            border-radius: 8px;
            background: #1e293b;
            color: #f1f5f9;
            font-size: 1rem;
        }
        .form-box button {
            background: linear-gradient(90deg, #f59e0b, #fbbf24);
            color: #0f172a;
            border: none;
            padding: 14px 25px;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: 100%;
        }
        .form-box button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(245, 158, 11, 0.4);
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }
        .rating-stars i {
            color: #94a3b8;
            font-size: 1.8rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .rating-stars i:hover, .rating-stars i.active {
            color: #fbbf24;
        }
        .update-time {
            text-align: center;
            margin-top: 40px;
            font-style: italic;
            color: #94a3b8;
            font-size: 0.95rem;
        }
        footer {
            background: #1e293b;
            padding: 40px 0;
            margin-top: 50px;
            border-top: 3px solid #475569;
        }
        friend-link {
            display: block;
            margin-bottom: 30px;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .friend-links a {
            background: #334155;
            padding: 15px 25px;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .friend-links a:hover {
            background: #475569;
            transform: scale(1.05);
        }
        .copyright {
            text-align: center;
            margin-top: 30px;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
            }
            nav ul {
                flex-direction: column;
                gap: 15px;
                display: none;
                width: 100%;
                text-align: center;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            article {
                padding: 25px;
            }
            .form-section {
                grid-template-columns: 1fr;
            }
        }
