        * {
            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;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e293b, #0f172a);
            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;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .logo a {
            background: none;
            -webkit-text-fill-color: inherit;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 6px;
            font-weight: 600;
        }
        .desktop-nav a:hover {
            background-color: #334155;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #fbbf24;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #1e293b;
            padding: 20px;
            border-radius: 10px;
            margin-top: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav a {
            display: block;
            padding: 12px;
            border-bottom: 1px solid #334155;
            font-size: 1.1rem;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #cbd5e1;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 30px 0;
            background-color: #1e293b;
            border-radius: 15px;
            margin: 20px auto;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }
        .article-container {
            padding: 0 25px;
        }
        h1 {
            font-size: 2.8rem;
            color: #fbbf24;
            margin-bottom: 20px;
            text-align: center;
            line-height: 1.3;
        }
        .subtitle {
            font-size: 1.3rem;
            color: #cbd5e1;
            text-align: center;
            margin-bottom: 30px;
            font-style: italic;
        }
        h2 {
            font-size: 2.2rem;
            color: #60a5fa;
            margin: 40px 0 20px;
            border-left: 5px solid #f59e0b;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #38bdf8;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #334155;
            padding: 25px;
            border-radius: 10px;
            border-left: 6px solid #f59e0b;
            margin: 25px 0;
        }
        .bold {
            font-weight: 800;
            color: #fbbf24;
        }
        .emoji {
            font-size: 1.3rem;
            margin-right: 8px;
        }
        .image-container {
            text-align: center;
            margin: 35px 0;
        }
        .image-container img {
            max-width: 800px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
            border: 3px solid #475569;
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: #94a3b8;
        }
        .link-in-text {
            color: #34d399;
            font-weight: 600;
        }
        .link-in-text:hover {
            text-decoration: underline;
        }
        .functional-sections {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .section-box {
            background-color: #0f172a;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            border: 1px solid #334155;
        }
        .section-box h3 {
            color: #fbbf24;
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #cbd5e1;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #475569;
            background-color: #1e293b;
            color: #f1f5f9;
            font-size: 1rem;
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        button {
            background: linear-gradient(90deg, #f59e0b, #fbbf24);
            color: #0f172a;
            border: none;
            padding: 14px 24px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(245, 158, 11, 0.4);
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #475569;
            margin: 15px 0;
        }
        .star-rating .star {
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #fbbf24;
        }
        .footer-links {
            background-color: #0f172a;
            padding: 40px 0 20px;
            border-top: 2px solid #334155;
        }
        .web-link {
            background-color: #1e293b;
            padding: 18px;
            margin-bottom: 15px;
            border-radius: 8px;
            border-left: 4px solid #60a5fa;
            transition: transform 0.3s ease;
        }
        .web-link:hover {
            transform: translateX(10px);
            background-color: #334155;
        }
        .web-link a {
            font-size: 1.1rem;
            color: #cbd5e1;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .web-link a:hover {
            color: #fbbf24;
        }
        .copyright {
            text-align: center;
            padding: 25px;
            background-color: #020617;
            color: #94a3b8;
            font-size: 0.95rem;
            border-top: 1px solid #334155;
        }
        .copyright a {
            color: #60a5fa;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .functional-sections {
                grid-template-columns: 1fr;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .breadcrumb {
                font-size: 0.85rem;
            }
            .article-container {
                padding: 0 15px;
            }
        }
