        body {
            font-family: Arial, sans-serif;
            background: #0f0f0f;
            color: white;
            margin: 0;
            padding: 0;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
            background-color: #000;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .options{background-color: #000;}

        .logo {
            font-size: 1.8em;
            font-weight: bold;
        }

        .logo span {
            color: #D82E2F;
        }

        nav a {
            color: #ccc;
            margin: 0 10px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        nav a.active,
        nav a:hover {
            color: #0ff;
        }

        main {
            max-width: 600px;
            margin: 50px auto;
            background: #1a1a1a;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
        }

        main h2 {
            text-align: center;
            color: #D82E2F;
        }

        form {
            display: flex;
            flex-direction: column;
        }

        label {
            margin-top: 10px;
            margin-bottom: 5px;
            font-size: 14px;
            color: #ccc;
        }

        input, textarea {
            padding: 10px;
            border-radius: 5px;
            border: none;
            background: #2a2a2a;
            color: white;
            font-size: 14px;
        }

        input:focus, textarea:focus {
            outline: 2px solid #D82E2F;
        }

        textarea {
            resize: none;
            height: 120px;
        }

        button {
            margin-top: 15px;
            padding: 10px;
            border: none;
            background: #D82E2F;
            color: #000;
            font-size: 16px;
            border-radius: 5px;
            cursor: pointer;
            transition: 0.3s;
        }

        button:hover {
            background: #D82E2F;
        }

        footer {
            text-align: center;
            padding: 15px;
            font-size: 14px;
            color: #888;
        }