        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #f0f0f0;
            background: linear-gradient(135deg, #0a0e17 0%, #1a1f2e 100%);
            background-attachment: fixed;
        }
        a {
            color: #ffcc00;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #fff;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(10, 14, 23, 0.95);
            border-bottom: 2px solid #ffcc00;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2rem;
            font-weight: bold;
            color: #ffcc00;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
        }
        .logo a:hover {
            color: #fff;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-links a:hover {
            background-color: #ffcc00;
            color: #0a0e17;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #ffcc00;
            cursor: pointer;
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: rgba(26, 31, 46, 0.8);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        main {
            padding: 30px 0;
        }
        article {
            background-color: rgba(26, 31, 46, 0.9);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
            margin-bottom: 40px;
        }
        h1, h2, h3 {
            color: #ffcc00;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            border-bottom: 3px solid #ffcc00;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        h2 {
            font-size: 2rem;
            margin-top: 40px;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 30px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #ddd;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.1);
            border-left: 4px solid #ffcc00;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .bold {
            font-weight: bold;
            color: #ffcc00;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            border: 3px solid #ffcc00;
            box-shadow: 0 6px 20px rgba(255, 204, 0, 0.3);
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: #aaa;
            font-size: 0.9rem;
        }
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        .feature-box {
            background-color: rgba(10, 14, 23, 0.8);
            padding: 25px;
            border-radius: 10px;
            border: 1px solid #444;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 204, 0, 0.2);
        }
        .feature-box h3 {
            color: #ffcc00;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feature-box form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .feature-box input, .feature-box textarea, .feature-box select {
            padding: 12px;
            border-radius: 6px;
            border: 1px solid #555;
            background-color: #1a1f2e;
            color: #fff;
            font-size: 1rem;
        }
        .feature-box button {
            padding: 12px;
            background-color: #ffcc00;
            color: #0a0e17;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .feature-box button:hover {
            background-color: #e6b800;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.5rem;
            color: #ffcc00;
            cursor: pointer;
        }
        .stars i:hover {
            color: #fff;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 40px 0;
        }
        .web-link {
            background-color: rgba(10, 14, 23, 0.8);
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #444;
            text-align: center;
        }
        .web-link a {
            color: #ffcc00;
            font-weight: bold;
            display: block;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background-color: #0a0e17;
            padding: 30px 0;
            text-align: center;
            border-top: 2px solid #ffcc00;
        }
        .copyright {
            margin-top: 20px;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(10, 14, 23, 0.98);
                padding: 20px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
                border-top: 1px solid #ffcc00;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
                width: 100%;
            }
            .nav-links a {
                justify-content: center;
                padding: 12px;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .features {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
