        * {
            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, #0a0a2a 0%, #1a1a3a 100%);
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: #4fc3f7;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffeb3b;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 10, 40, 0.95);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            color: #ff5722;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(to right, #ff5722, #ffeb3b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .logo span {
            color: #4fc3f7;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav ul li a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        nav ul li a:hover {
            background: rgba(79, 195, 247, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #ff5722;
            cursor: pointer;
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 10px 0;
            background: rgba(20, 20, 50, 0.8);
            margin-bottom: 20px;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 10px;
            color: #888;
        }
        main {
            padding: 30px 0;
        }
        article {
            background: rgba(30, 30, 60, 0.85);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
            margin-bottom: 40px;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffeb3b;
            margin-bottom: 20px;
            text-align: center;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #4fc3f7;
            margin: 30px 0 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #ff5722;
        }
        h3 {
            font-size: 1.5rem;
            color: #ff9800;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 235, 59, 0.15);
            padding: 15px;
            border-left: 5px solid #ffeb3b;
            margin: 20px 0;
            font-weight: 600;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .image-container {
            margin: 30px auto;
            text-align: center;
            max-width: 800px;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
            transition: transform 0.3s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .functionality {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .card {
            background: rgba(40, 40, 70, 0.9);
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        .card h3 {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #ff5722;
        }
        .card form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 15px;
        }
        .card input, .card textarea, .card select {
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #555;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 1rem;
        }
        .card input:focus, .card textarea:focus, .card select:focus {
            outline: none;
            border-color: #4fc3f7;
        }
        .card button {
            padding: 12px;
            background: linear-gradient(to right, #ff5722, #ff9800);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .card button:hover {
            background: linear-gradient(to right, #ff9800, #ff5722);
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 10px 0;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 1.8rem;
            color: #666;
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars label:hover,
        .stars input:checked ~ label {
            color: #ffeb3b;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .web-link {
            background: rgba(50, 50, 80, 0.9);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: background 0.3s ease;
        }
        .web-link:hover {
            background: rgba(79, 195, 247, 0.3);
        }
        .web-link a {
            font-weight: 600;
            font-size: 1.05rem;
        }
        footer {
            background: rgba(10, 10, 30, 0.95);
            padding: 30px 0;
            text-align: center;
            margin-top: 40px;
        }
        .copyright {
            color: #aaa;
            font-size: 0.9rem;
            margin-top: 20px;
            border-top: 1px solid #444;
            padding-top: 20px;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(20, 20, 50, 0.95);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                border-radius: 0 0 15px 15px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .functionality {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }
